mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
Merge pull request #20803 from storybookjs/jeppe/fix-blocks
Doc Blocks: Fix styling and parameter bugs
This commit is contained in:
commit
dd1ca7f951
@ -60,10 +60,11 @@ test.describe('addon-docs', () => {
|
||||
// The `<Primary>` block should render the "Basic" story, and the `<Stories/>` block should
|
||||
// render both the "Basic" and "Another" story
|
||||
const root = sbPage.previewRoot();
|
||||
const stories = root.locator('.sbdocs-h3');
|
||||
const stories = root.locator('.sb-story button');
|
||||
|
||||
await expect(await stories.count()).toBe(2);
|
||||
await expect(await stories.count()).toBe(3);
|
||||
await expect(stories.first()).toHaveText('Basic');
|
||||
await expect(stories.nth(1)).toHaveText('Basic');
|
||||
await expect(stories.last()).toHaveText('Another');
|
||||
});
|
||||
});
|
||||
|
@ -3,6 +3,9 @@ import { Anchor } from './Anchor';
|
||||
|
||||
const meta = {
|
||||
component: Anchor,
|
||||
parameters: {
|
||||
docsStyles: true,
|
||||
},
|
||||
} as Meta<typeof Anchor>;
|
||||
|
||||
export default meta;
|
||||
|
@ -8,6 +8,7 @@ const meta: Meta<typeof ArgTypes> = {
|
||||
component: ArgTypes,
|
||||
parameters: {
|
||||
relativeCsfPaths: ['../examples/ArgTypesParameters.stories'],
|
||||
docsStyles: true,
|
||||
},
|
||||
};
|
||||
export default meta;
|
||||
|
@ -25,6 +25,7 @@ const meta: Meta<typeof Canvas> = {
|
||||
/>`,
|
||||
},
|
||||
},
|
||||
docsStyles: true,
|
||||
},
|
||||
decorators: SourceStoriesMeta.decorators,
|
||||
};
|
||||
|
@ -7,6 +7,7 @@ const meta: Meta<typeof Controls> = {
|
||||
component: Controls,
|
||||
parameters: {
|
||||
relativeCsfPaths: ['../examples/ControlsParameters.stories'],
|
||||
docsStyles: true,
|
||||
},
|
||||
};
|
||||
export default meta;
|
||||
|
@ -16,6 +16,7 @@ const meta: Meta<typeof Description> = {
|
||||
// workaround for https://github.com/storybookjs/storybook/issues/20505
|
||||
docs: { source: { type: 'code' } },
|
||||
attached: false,
|
||||
docsStyles: true,
|
||||
},
|
||||
};
|
||||
export default meta;
|
||||
|
@ -10,12 +10,15 @@ import { useOf } from './useOf';
|
||||
export const DocsStory: FC<DocsStoryProps> = ({
|
||||
of,
|
||||
expanded = true,
|
||||
withToolbar = false,
|
||||
withToolbar: withToolbarProp = false,
|
||||
__forceInitialArgs = false,
|
||||
__primary = false,
|
||||
}) => {
|
||||
const { story } = useOf(of || 'story', ['story']);
|
||||
|
||||
// use withToolbar from parameters or default to true in autodocs
|
||||
const withToolbar = story.parameters.docs?.canvas?.withToolbar ?? withToolbarProp;
|
||||
|
||||
return (
|
||||
<Anchor storyId={story.id}>
|
||||
{expanded && (
|
||||
|
@ -5,6 +5,7 @@ import mdContent from '../examples/Markdown-content.md?raw';
|
||||
|
||||
export default {
|
||||
component: MarkdownComponent,
|
||||
parameters: { docsStyles: true },
|
||||
};
|
||||
|
||||
export const Markdown = {
|
||||
|
24
code/ui/blocks/src/blocks/Primary.stories.tsx
Normal file
24
code/ui/blocks/src/blocks/Primary.stories.tsx
Normal file
@ -0,0 +1,24 @@
|
||||
import type { Meta, StoryObj } from '@storybook/react';
|
||||
import { Primary } from './Primary';
|
||||
|
||||
const meta = {
|
||||
component: Primary,
|
||||
parameters: {
|
||||
docsStyles: true,
|
||||
},
|
||||
} satisfies Meta<typeof Primary>;
|
||||
|
||||
export default meta;
|
||||
|
||||
type Story = StoryObj<typeof meta>;
|
||||
|
||||
export const Default: Story = {
|
||||
parameters: {
|
||||
relativeCsfPaths: ['../examples/Button.stories'],
|
||||
},
|
||||
};
|
||||
export const WithoutToolbar: Story = {
|
||||
parameters: {
|
||||
relativeCsfPaths: ['../examples/StoriesParameters.stories'],
|
||||
},
|
||||
};
|
@ -23,6 +23,6 @@ export const Primary: FC<PrimaryProps> = ({ name }) => {
|
||||
const storyId = name && docsContext.storyIdByName(name);
|
||||
const story = docsContext.storyById(storyId);
|
||||
return story ? (
|
||||
<DocsStory of={story.moduleExport} expanded={false} withToolbar __primary />
|
||||
<DocsStory of={story.moduleExport} expanded={false} __primary withToolbar />
|
||||
) : null;
|
||||
};
|
||||
|
@ -18,6 +18,7 @@ const meta: Meta<typeof Source> = {
|
||||
code: `const emitted = 'source';`,
|
||||
},
|
||||
},
|
||||
docsStyles: true,
|
||||
},
|
||||
decorators: [
|
||||
(Story, { parameters: { snippets = {} } }) => (
|
||||
@ -83,6 +84,10 @@ export const CodeUnattached: Story = {
|
||||
parameters: { attached: false },
|
||||
};
|
||||
|
||||
export const EmptyUnattached: Story = {
|
||||
parameters: { attached: false },
|
||||
};
|
||||
|
||||
export const CodeParameters: Story = {
|
||||
args: { of: ParametersStories.Code },
|
||||
};
|
||||
|
@ -118,8 +118,7 @@ export const useSourceProps = (
|
||||
// Always fall back to the primary story for source parameters, even if code is set.
|
||||
stories = [docsContext.storyById()];
|
||||
} catch (err) {
|
||||
// You are allowed to use <Story code="..." /> unattached.
|
||||
if (!props.code) throw err;
|
||||
// You are allowed to use <Source code="..." /> and <Canvas /> unattached.
|
||||
}
|
||||
}
|
||||
|
||||
|
28
code/ui/blocks/src/blocks/Stories.stories.tsx
Normal file
28
code/ui/blocks/src/blocks/Stories.stories.tsx
Normal file
@ -0,0 +1,28 @@
|
||||
import type { Meta, StoryObj } from '@storybook/react';
|
||||
import { Stories } from './Stories';
|
||||
|
||||
const meta = {
|
||||
component: Stories,
|
||||
parameters: { docsStyles: true },
|
||||
} satisfies Meta<typeof Stories>;
|
||||
|
||||
export default meta;
|
||||
|
||||
type Story = StoryObj<typeof meta>;
|
||||
|
||||
export const Default: Story = {
|
||||
parameters: {
|
||||
relativeCsfPaths: ['../examples/Button.stories'],
|
||||
},
|
||||
};
|
||||
export const WithoutPrimary: Story = {
|
||||
args: { includePrimary: false },
|
||||
parameters: {
|
||||
relativeCsfPaths: ['../examples/Button.stories'],
|
||||
},
|
||||
};
|
||||
export const DifferentToolbars: Story = {
|
||||
parameters: {
|
||||
relativeCsfPaths: ['../examples/StoriesParameters.stories'],
|
||||
},
|
||||
};
|
@ -9,6 +9,7 @@ const meta: Meta<typeof StoryBlock> = {
|
||||
component: StoryBlock,
|
||||
parameters: {
|
||||
relativeCsfPaths: ['../examples/Button.stories', '../examples/StoryParameters.stories'],
|
||||
docsStyles: true,
|
||||
},
|
||||
};
|
||||
export default meta;
|
||||
|
@ -8,11 +8,19 @@ However sometimes you might want some of your content to not have these styles a
|
||||
```md
|
||||
import { Unstyled } from '@storybook/blocks';
|
||||
|
||||
# This heading will be styled
|
||||
|
||||
<h2>So will this subheading</h2>
|
||||
|
||||
> This block quote will be styled
|
||||
|
||||
... and so will this paragraph.
|
||||
|
||||
<Unstyled>
|
||||
# This heading will not be styled
|
||||
|
||||
<h2>Neither will this subheading</h2>
|
||||
|
||||
> This block quote will not be styled
|
||||
|
||||
... neither will this paragraph, nor the following component:
|
||||
@ -22,11 +30,19 @@ import { Unstyled } from '@storybook/blocks';
|
||||
|
||||
Yields:
|
||||
|
||||
# This heading will be styled
|
||||
|
||||
<h2>So will this subheading</h2>
|
||||
|
||||
> This block quote will be styled
|
||||
|
||||
... and so will this paragraph.
|
||||
|
||||
<Unstyled>
|
||||
# This heading will not be styled
|
||||
|
||||
<h2>Neither will this subheading</h2>
|
||||
|
||||
> This block quote will not be styled
|
||||
|
||||
... neither will this paragraph, nor the following component:
|
||||
|
@ -14,6 +14,7 @@ const meta: Meta<typeof Canvas> = {
|
||||
parameters: {
|
||||
theme: 'light',
|
||||
relativeCsfPaths: ['../examples/Button.stories', '../examples/CanvasParameters.stories'],
|
||||
docsStyles: true,
|
||||
},
|
||||
render: (args) => {
|
||||
return (
|
||||
@ -50,6 +51,23 @@ export const BasicStoryChildUnattached: Story = {
|
||||
parameters: { attached: false },
|
||||
};
|
||||
|
||||
export const NoStoryChildrenUnattached: Story = {
|
||||
parameters: { attached: false },
|
||||
render: (args) => {
|
||||
return (
|
||||
<Canvas {...args}>
|
||||
<p>This is a plain paragraph, no stories</p>
|
||||
</Canvas>
|
||||
);
|
||||
},
|
||||
};
|
||||
export const NoStoryChildrenUnattachedWithMDXSource: Story = {
|
||||
...NoStoryChildrenUnattached,
|
||||
args: {
|
||||
mdxSource: `const customStaticSource = true;`,
|
||||
},
|
||||
};
|
||||
|
||||
export const WithSourceOpen: Story = {
|
||||
args: {
|
||||
withSource: SourceState.OPEN,
|
||||
|
@ -7,6 +7,7 @@ const meta: Meta<typeof Description> = {
|
||||
component: Description,
|
||||
parameters: {
|
||||
relativeCsfPaths: ['../examples/Button.stories'],
|
||||
docsStyles: true,
|
||||
},
|
||||
args: {
|
||||
of: Button,
|
||||
|
@ -7,6 +7,7 @@ const meta: Meta<typeof Source> = {
|
||||
parameters: {
|
||||
relativeCsfPaths: ['../examples/Button.stories'],
|
||||
attached: false,
|
||||
docsStyles: true,
|
||||
},
|
||||
};
|
||||
|
||||
|
@ -8,6 +8,7 @@ const meta: Meta<typeof StoryBlock> = {
|
||||
component: StoryBlock,
|
||||
parameters: {
|
||||
relativeCsfPaths: ['../examples/Button.stories'],
|
||||
docsStyles: true,
|
||||
},
|
||||
};
|
||||
export default meta;
|
||||
|
@ -1,7 +1,7 @@
|
||||
import type { FC, SyntheticEvent } from 'react';
|
||||
import React, { useContext } from 'react';
|
||||
import { NAVIGATE_URL } from '@storybook/core-events';
|
||||
import { Code, components } from '@storybook/components';
|
||||
import { Code, components, nameSpaceClassNames } from '@storybook/components';
|
||||
import { global } from '@storybook/global';
|
||||
import { styled } from '@storybook/theming';
|
||||
import { Source } from '../components';
|
||||
@ -120,13 +120,12 @@ export const AnchorMdx: FC<AnchorMdxProps> = (props) => {
|
||||
return <A {...props} />;
|
||||
};
|
||||
|
||||
const SUPPORTED_MDX_HEADERS = ['h1', 'h2', 'h3', 'h4', 'h5', 'h6'];
|
||||
const SUPPORTED_MDX_HEADERS = ['h1', 'h2', 'h3', 'h4', 'h5', 'h6'] as const;
|
||||
|
||||
const OcticonHeaders = SUPPORTED_MDX_HEADERS.reduce(
|
||||
(acc, headerType) => ({
|
||||
...acc,
|
||||
// @ts-expect-error (Converted from ts-ignore)
|
||||
[headerType]: styled(components[headerType])({
|
||||
[headerType]: styled(headerType)({
|
||||
'& svg': {
|
||||
visibility: 'hidden',
|
||||
},
|
||||
@ -213,12 +212,10 @@ export const HeaderMdx: FC<HeaderMdxProps> = (props) => {
|
||||
</HeaderWithOcticonAnchor>
|
||||
);
|
||||
}
|
||||
|
||||
// @ts-expect-error (Converted from ts-ignore)
|
||||
const Header = components[as];
|
||||
|
||||
// Make sure it still work if "remark-slug" plugin is not present.
|
||||
return <Header {...props} />;
|
||||
const Component = as as React.ElementType;
|
||||
const { as: omittedAs, ...withoutAs } = props;
|
||||
return <Component {...nameSpaceClassNames(withoutAs, as)} />;
|
||||
};
|
||||
|
||||
export const HeadersMdx = SUPPORTED_MDX_HEADERS.reduce(
|
||||
|
@ -70,6 +70,7 @@ export const Subtitle = styled.h2(withReset, ({ theme }) => ({
|
||||
color: transparentize(0.25, theme.color.defaultText),
|
||||
}));
|
||||
|
||||
// @ts-expect-error don't know why it doesn't accept our returned styles. if we add `...{}` anywhere to the returned object it stops erroring
|
||||
export const DocsContent = styled.div(({ theme }) => {
|
||||
const reset = {
|
||||
fontFamily: theme.typography.fonts.base,
|
||||
@ -121,8 +122,6 @@ export const DocsContent = styled.div(({ theme }) => {
|
||||
return {
|
||||
maxWidth: 1000,
|
||||
width: '100%',
|
||||
|
||||
...reset,
|
||||
[toGlobalSelector('a')]: {
|
||||
...reset,
|
||||
fontSize: 'inherit',
|
||||
|
20
code/ui/blocks/src/examples/StoriesParameters.stories.tsx
Normal file
20
code/ui/blocks/src/examples/StoriesParameters.stories.tsx
Normal file
@ -0,0 +1,20 @@
|
||||
import type { Meta, StoryObj } from '@storybook/react';
|
||||
|
||||
import { EmptyExample } from './EmptyExample';
|
||||
|
||||
const meta = {
|
||||
title: 'examples/Stories for the Stories and Primary Block',
|
||||
component: EmptyExample,
|
||||
} satisfies Meta<typeof EmptyExample>;
|
||||
export default meta;
|
||||
|
||||
type Story = StoryObj<typeof meta>;
|
||||
|
||||
export const WithoutToolbar: Story = {
|
||||
parameters: { docs: { canvas: { withToolbar: false } } },
|
||||
};
|
||||
|
||||
export const WithToolbar: Story = {
|
||||
parameters: { docs: { canvas: { withToolbar: true } } },
|
||||
};
|
||||
export const ThirdStory: Story = {};
|
Loading…
x
Reference in New Issue
Block a user