mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
Merge pull request #14836 from storybookjs/minor-fixes
Chore: (Docs snippets) Minor fixes and tweaks to the snippets
This commit is contained in:
commit
f3744e29a2
@ -38,4 +38,4 @@ const ExampleToolbar = () => {
|
|||||||
</IconButton>
|
</IconButton>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
```
|
```
|
@ -22,4 +22,4 @@ const ThemePanel = props => {
|
|||||||
</AddonPanel>
|
</AddonPanel>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
```
|
```
|
@ -13,4 +13,4 @@ resetArgs((argNames: ['key']));
|
|||||||
|
|
||||||
// To reset all args
|
// To reset all args
|
||||||
resetArgs();
|
resetArgs();
|
||||||
```
|
```
|
@ -43,5 +43,4 @@ export default {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
```
|
```
|
@ -54,4 +54,4 @@ Let's define a story for our `Badge` component
|
|||||||
<ArgsTable of={Badge} />
|
<ArgsTable of={Badge} />
|
||||||
|
|
||||||
<!-- remainder story implementation -->
|
<!-- remainder story implementation -->
|
||||||
```
|
```
|
@ -46,4 +46,4 @@ with unique URLs and isolated snapshot tests.
|
|||||||
</Badge>
|
</Badge>
|
||||||
</Story>
|
</Story>
|
||||||
</Canvas>
|
</Canvas>
|
||||||
```
|
```
|
@ -35,8 +35,8 @@ We can drop it in a `Canvas` to get a code snippet:
|
|||||||
</Canvas>
|
</Canvas>
|
||||||
|
|
||||||
We can even preview multiple Stories in a block. This
|
We can even preview multiple Stories in a block. This
|
||||||
gets rendered as a group, but defines individual stories
|
gets rendered as a group but defines individual stories
|
||||||
with unique URLs which is great for review and testing.
|
with unique URLs, which is great for review and testing.
|
||||||
|
|
||||||
<Canvas>
|
<Canvas>
|
||||||
<Story name="warning" args={{
|
<Story name="warning" args={{
|
||||||
@ -64,4 +64,4 @@ with unique URLs which is great for review and testing.
|
|||||||
{Template.bind({})}
|
{Template.bind({})}
|
||||||
</Story>
|
</Story>
|
||||||
</Canvas>
|
</Canvas>
|
||||||
```
|
```
|
@ -8,4 +8,4 @@ export default {
|
|||||||
component: ButtonGroup,
|
component: ButtonGroup,
|
||||||
subcomponents: { Button },
|
subcomponents: { Button },
|
||||||
};
|
};
|
||||||
```
|
```
|
@ -10,4 +10,4 @@ export default {
|
|||||||
component: ButtonGroup,
|
component: ButtonGroup,
|
||||||
subcomponents: { Button },
|
subcomponents: { Button },
|
||||||
} as Meta;
|
} as Meta;
|
||||||
```
|
```
|
@ -9,4 +9,4 @@ export default {
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
```
|
```
|
@ -6,4 +6,4 @@
|
|||||||
handles: ['mouseover', 'click .btn'],
|
handles: ['mouseover', 'click .btn'],
|
||||||
},
|
},
|
||||||
}} />
|
}} />
|
||||||
```
|
```
|
@ -5,7 +5,7 @@ export default {
|
|||||||
title: 'Button',
|
title: 'Button',
|
||||||
component: Button,
|
component: Button,
|
||||||
argTypes: {
|
argTypes: {
|
||||||
// assigns the argTypes to the Colors category
|
// Assigns the argTypes to the Colors category
|
||||||
backgroundColor: {
|
backgroundColor: {
|
||||||
control: 'color',
|
control: 'color',
|
||||||
table: {
|
table: {
|
||||||
@ -17,19 +17,19 @@ export default {
|
|||||||
category: 'Colors'
|
category: 'Colors'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
// assigns the argType to the Text category
|
// Assigns the argType to the Text category
|
||||||
label: {
|
label: {
|
||||||
table: {
|
table: {
|
||||||
category: 'Text'
|
category: 'Text'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
// assigns the argType to the Events category
|
// Assigns the argType to the Events category
|
||||||
onClick: {
|
onClick: {
|
||||||
table: {
|
table: {
|
||||||
category: 'Events'
|
category: 'Events'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
// assigns the argType to the Sizes category
|
// Assigns the argType to the Sizes category
|
||||||
size: {
|
size: {
|
||||||
table: {
|
table: {
|
||||||
category: 'Sizes'
|
category: 'Sizes'
|
||||||
@ -37,4 +37,4 @@ export default {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
```
|
```
|
@ -5,12 +5,12 @@ export default {
|
|||||||
title: 'Button',
|
title: 'Button',
|
||||||
component: Button,
|
component: Button,
|
||||||
argTypes: {
|
argTypes: {
|
||||||
// assigns the argTypes to the Colors category
|
// Assigns the argTypes to the Colors category
|
||||||
backgroundColor: {
|
backgroundColor: {
|
||||||
control: 'color',
|
control: 'color',
|
||||||
table: {
|
table: {
|
||||||
category: 'Colors',
|
category: 'Colors',
|
||||||
// assigns the argTypes to a specific subcategory
|
// Assigns the argTypes to a specific subcategory
|
||||||
subcategory: 'Button colors'
|
subcategory: 'Button colors'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -26,14 +26,14 @@ export default {
|
|||||||
subcategory: 'Button contents'
|
subcategory: 'Button contents'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
// assigns the argType to the Events category
|
// Assigns the argType to the Events category
|
||||||
onClick: {
|
onClick: {
|
||||||
table: {
|
table: {
|
||||||
category: 'Events',
|
category: 'Events',
|
||||||
subcategory: 'Button Events'
|
subcategory: 'Button Events'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
// assigns the argType to the Sizes category
|
// Assigns the argType to the Sizes category
|
||||||
size: {
|
size: {
|
||||||
table: {
|
table: {
|
||||||
category: 'Sizes'
|
category: 'Sizes'
|
||||||
@ -41,4 +41,4 @@ export default {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
```
|
```
|
@ -4,4 +4,4 @@
|
|||||||
<Story name="Primary" args={{ variant: 'primary' }}>
|
<Story name="Primary" args={{ variant: 'primary' }}>
|
||||||
{Template.bind({})}
|
{Template.bind({})}
|
||||||
</Story>
|
</Story>
|
||||||
```
|
```
|
@ -13,4 +13,4 @@
|
|||||||
}
|
}
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
```
|
```
|
@ -15,4 +15,4 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
```
|
```
|
@ -16,6 +16,5 @@ export default {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// remainder story implementation
|
// Remainder story implementation
|
||||||
|
|
||||||
```
|
```
|
@ -6,4 +6,4 @@ export const Large = Template.bind({});
|
|||||||
Large.parameters = {
|
Large.parameters = {
|
||||||
controls: { hideNoControlsWarning: true },
|
controls: { hideNoControlsWarning: true },
|
||||||
};
|
};
|
||||||
```
|
```
|
@ -10,4 +10,4 @@ export default {
|
|||||||
|
|
||||||
// This is the only named export in the file, and it matches the component name
|
// This is the only named export in the file, and it matches the component name
|
||||||
export const Button = (args) => <ButtonComponent {...args} />;
|
export const Button = (args) => <ButtonComponent {...args} />;
|
||||||
```
|
```
|
@ -2,4 +2,4 @@
|
|||||||
<!-- Button.stories.mdx -->
|
<!-- Button.stories.mdx -->
|
||||||
|
|
||||||
<Meta title='Button' component={Button} parameters={{ actions: { argTypesRegex: '^on.\*' } }} />
|
<Meta title='Button' component={Button} parameters={{ actions: { argTypesRegex: '^on.\*' } }} />
|
||||||
```
|
```
|
@ -2,4 +2,4 @@
|
|||||||
<!-- Button.stories.mdx -->
|
<!-- Button.stories.mdx -->
|
||||||
|
|
||||||
<Meta title='Button' argTypes={{ onClick: { action: 'clicked' } }} />
|
<Meta title='Button' argTypes={{ onClick: { action: 'clicked' } }} />
|
||||||
```
|
```
|
@ -33,4 +33,4 @@ export default {
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
```
|
```
|
@ -35,4 +35,4 @@ export default {
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
} as Meta;
|
} as Meta;
|
||||||
```
|
```
|
@ -4,7 +4,7 @@
|
|||||||
import { Checkbox } from './Checkbox';
|
import { Checkbox } from './Checkbox';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
title: "MDX/Checkbox",
|
title: 'MDX/Checkbox',
|
||||||
component: Checkbox
|
component: Checkbox
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -10,7 +10,7 @@ import { Checkbox } from './Checkbox';
|
|||||||
|
|
||||||
# Checkbox
|
# Checkbox
|
||||||
|
|
||||||
With `MDX` we can define a story for `Checkbox` right in the middle of our Markdown documentation.
|
With `MDX`, we can define a story for `Checkbox` right in the middle of our Markdown documentation.
|
||||||
|
|
||||||
<Canvas>
|
<Canvas>
|
||||||
<Story name="all checkboxes">
|
<Story name="all checkboxes">
|
||||||
|
@ -8,7 +8,7 @@ import { Checkbox } from './Checkbox';
|
|||||||
|
|
||||||
# Checkbox
|
# Checkbox
|
||||||
|
|
||||||
With `MDX` we can define a story for `Checkbox` right in the middle of our
|
With `MDX`, we can define a story for `Checkbox` right in the middle of our
|
||||||
Markdown documentation.
|
Markdown documentation.
|
||||||
|
|
||||||
<!--- This is your Story template function, shown here in React -->
|
<!--- This is your Story template function, shown here in React -->
|
||||||
@ -35,5 +35,4 @@ export const Template = (args) => <Checkbox {...args} />
|
|||||||
{Template.bind({})}
|
{Template.bind({})}
|
||||||
</Story>
|
</Story>
|
||||||
</Canvas>
|
</Canvas>
|
||||||
|
|
||||||
```
|
```
|
@ -6,11 +6,11 @@ export default {
|
|||||||
component: Button,
|
component: Button,
|
||||||
argTypes: {
|
argTypes: {
|
||||||
label: {
|
label: {
|
||||||
description: 'overwritten description',
|
description: 'Overwritten description',
|
||||||
table: {
|
table: {
|
||||||
type: {
|
type: {
|
||||||
summary: 'something short',
|
summary: 'Something short',
|
||||||
detail: 'something really really long'
|
detail: 'Something really really long'
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
control: {
|
control: {
|
||||||
|
@ -6,7 +6,7 @@ export default {
|
|||||||
parameters: {
|
parameters: {
|
||||||
docs: {
|
docs: {
|
||||||
description: {
|
description: {
|
||||||
component: 'some component _markdown_',
|
component: 'Some component _markdown_',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
@ -16,8 +16,8 @@ export const WithStoryDescription = Template.bind({});
|
|||||||
WithStoryDescription.parameters = {
|
WithStoryDescription.parameters = {
|
||||||
docs: {
|
docs: {
|
||||||
description: {
|
description: {
|
||||||
story: 'some story **markdown**',
|
story: 'Some story **markdown**',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
```
|
```
|
@ -11,10 +11,10 @@ export default {
|
|||||||
title: 'Button',
|
title: 'Button',
|
||||||
argTypes: {
|
argTypes: {
|
||||||
arrow: {
|
arrow: {
|
||||||
options: Object.keys(arrows), // an array of serializable values
|
options: Object.keys(arrows), // An array of serializable values
|
||||||
mapping: arrows, // maps serializable option values to complex arg values
|
mapping: arrows, // Maps serializable option values to complex arg values
|
||||||
control: {
|
control: {
|
||||||
type: 'select', // type 'select' is automatically inferred when 'options' is defined
|
type: 'select', // Type 'select' is automatically inferred when 'options' is defined
|
||||||
labels: {
|
labels: {
|
||||||
// 'labels' maps option values to string labels
|
// 'labels' maps option values to string labels
|
||||||
ArrowUp: 'Up',
|
ArrowUp: 'Up',
|
||||||
@ -26,4 +26,4 @@ export default {
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
```
|
```
|
@ -10,4 +10,4 @@ CustomSource.parameters = {
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
```
|
```
|
@ -12,4 +12,4 @@ ArrayExclude.parameters = { controls: { exclude: ['foo', 'bar'] } };
|
|||||||
|
|
||||||
RegexExclude = Template.bind({})
|
RegexExclude = Template.bind({})
|
||||||
RegexExclude.parameters = { controls: { exclude: /^hello*/ } };
|
RegexExclude.parameters = { controls: { exclude: /^hello*/ } };
|
||||||
```
|
```
|
@ -1,5 +1,6 @@
|
|||||||
```md
|
```md
|
||||||
<!--- YourComponent.stories.mdx -->
|
<!--- YourComponent.stories.mdx -->
|
||||||
|
|
||||||
<Story name="Array Include" parameters={{ controls: { include: ['foo', 'bar'] } }}>
|
<Story name="Array Include" parameters={{ controls: { include: ['foo', 'bar'] } }}>
|
||||||
{Template.bind({})}
|
{Template.bind({})}
|
||||||
</Story>
|
</Story>
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
// MyComponent.stories.js | MyComponent.stories.ts
|
// MyComponent.stories.js | MyComponent.stories.ts
|
||||||
|
|
||||||
import base from 'paths.macro';
|
import base from 'paths.macro';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
title: `${base}/Component`
|
title: `${base}/Component`
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
<!--- MyComponent.stories.mdx -->
|
<!--- MyComponent.stories.mdx -->
|
||||||
|
|
||||||
import { ArgsTable } from '@storybook/addon-docs/blocks';
|
import { ArgsTable } from '@storybook/addon-docs/blocks';
|
||||||
|
|
||||||
import { MyComponent } from './MyComponent';
|
import { MyComponent } from './MyComponent';
|
||||||
|
|
||||||
# My Component!
|
# My Component!
|
||||||
|
@ -20,5 +20,4 @@
|
|||||||
}}>
|
}}>
|
||||||
<!--- story contents --->
|
<!--- story contents --->
|
||||||
</Story>
|
</Story>
|
||||||
|
```
|
||||||
```
|
|
@ -10,5 +10,4 @@
|
|||||||
<Story name="story" decorators={[ ... ]} parameters={{ ... }} >
|
<Story name="story" decorators={[ ... ]} parameters={{ ... }} >
|
||||||
...
|
...
|
||||||
</Story>
|
</Story>
|
||||||
|
|
||||||
```
|
```
|
@ -2,6 +2,7 @@
|
|||||||
<!--- MyComponent.stories.mdx -->
|
<!--- MyComponent.stories.mdx -->
|
||||||
|
|
||||||
import { Source } from '@storybook/addon-docs/blocks';
|
import { Source } from '@storybook/addon-docs/blocks';
|
||||||
|
|
||||||
import dedent from 'ts-dedent';
|
import dedent from 'ts-dedent';
|
||||||
|
|
||||||
<Source
|
<Source
|
||||||
@ -12,5 +13,4 @@ import dedent from 'ts-dedent';
|
|||||||
}
|
}
|
||||||
`}
|
`}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
```
|
```
|
@ -2,7 +2,9 @@
|
|||||||
<!--- Button.stories.mdx -->
|
<!--- Button.stories.mdx -->
|
||||||
|
|
||||||
import { Description } from '@storybook/addon-docs/blocks';
|
import { Description } from '@storybook/addon-docs/blocks';
|
||||||
|
|
||||||
import dedent from 'ts-dedent';
|
import dedent from 'ts-dedent';
|
||||||
|
|
||||||
import { Button } from './Button';
|
import { Button } from './Button';
|
||||||
|
|
||||||
<Description of={Button} />
|
<Description of={Button} />
|
||||||
|
@ -8,5 +8,4 @@ import { Story } from "@storybook/addon-docs/blocks";
|
|||||||
And Markdown here
|
And Markdown here
|
||||||
|
|
||||||
<Story id="some--id" />
|
<Story id="some--id" />
|
||||||
|
|
||||||
```
|
```
|
@ -2,6 +2,7 @@
|
|||||||
<!-- Button.stories.mdx --->
|
<!-- Button.stories.mdx --->
|
||||||
|
|
||||||
import { Story } from '@storybook/addon-docs/blocks';
|
import { Story } from '@storybook/addon-docs/blocks';
|
||||||
|
|
||||||
import { Button } from './Button';
|
import { Button } from './Button';
|
||||||
|
|
||||||
<!--- This is your Story template function, shown here in React -->
|
<!--- This is your Story template function, shown here in React -->
|
||||||
@ -11,5 +12,4 @@ export const Template = (args) => <Button {...args} />;
|
|||||||
<Story name="Basic" args={{ label: ‘hello’ }}>
|
<Story name="Basic" args={{ label: ‘hello’ }}>
|
||||||
{Template.bind({})}
|
{Template.bind({})}
|
||||||
</Story>
|
</Story>
|
||||||
|
```
|
||||||
```
|
|
@ -2,6 +2,7 @@
|
|||||||
<!--- YourComponent.stories.mdx -->
|
<!--- YourComponent.stories.mdx -->
|
||||||
|
|
||||||
import { Meta } from '@storybook/addon-docs/blocks';
|
import { Meta } from '@storybook/addon-docs/blocks';
|
||||||
|
|
||||||
import { YourComponent } from './your-component'
|
import { YourComponent } from './your-component'
|
||||||
|
|
||||||
<Meta
|
<Meta
|
||||||
|
@ -10,4 +10,4 @@ export default {
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
```
|
```
|
@ -10,4 +10,4 @@
|
|||||||
},
|
},
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
```
|
```
|
@ -14,7 +14,7 @@ export default async function fetch() {
|
|||||||
nextJson = null;
|
nextJson = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
// the decorator to be used in ./storybook/preview to apply the mock to all stories
|
// The decorator to be used in ./storybook/preview to apply the mock to all stories
|
||||||
|
|
||||||
export function decorator(story, { parameters }) {
|
export function decorator(story, { parameters }) {
|
||||||
if (parameters && parameters.fetch) {
|
if (parameters && parameters.fetch) {
|
||||||
|
@ -18,4 +18,4 @@ export const Template = (args) => <Badge {...args } />;
|
|||||||
{Template.bind({})}
|
{Template.bind({})}
|
||||||
</Story>
|
</Story>
|
||||||
</Canvas>
|
</Canvas>
|
||||||
```
|
```
|
@ -2,7 +2,9 @@
|
|||||||
// /my-addon/src/register.js
|
// /my-addon/src/register.js
|
||||||
|
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
|
|
||||||
import { addons, types } from '@storybook/addons';
|
import { addons, types } from '@storybook/addons';
|
||||||
|
|
||||||
import { AddonPanel } from '@storybook/components';
|
import { AddonPanel } from '@storybook/components';
|
||||||
|
|
||||||
const ADDON_ID = 'myaddon';
|
const ADDON_ID = 'myaddon';
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
// /my-addon/src/preset.js
|
// /my-addon/src/preset.js
|
||||||
|
|
||||||
function managerEntries(entry = []) {
|
function managerEntries(entry = []) {
|
||||||
return [...entry, require.resolve("./register")]; //👈 addon implementation
|
return [...entry, require.resolve("./register")]; //👈 Addon implementation
|
||||||
}
|
}
|
||||||
|
|
||||||
module.exports = { managerEntries }
|
module.exports = { managerEntries }
|
||||||
|
@ -10,4 +10,4 @@ module.exports = {
|
|||||||
"../src/preset.js" //👈 Our addon registered here
|
"../src/preset.js" //👈 Our addon registered here
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
```
|
```
|
@ -2,6 +2,7 @@
|
|||||||
<!--- MyComponent.stories.mdx --->
|
<!--- MyComponent.stories.mdx --->
|
||||||
|
|
||||||
<!--- This is your Story template function, shown here in React -->
|
<!--- This is your Story template function, shown here in React -->
|
||||||
|
|
||||||
<Meta
|
<Meta
|
||||||
title='MyComponent'
|
title='MyComponent'
|
||||||
decorators={[ ... ]}
|
decorators={[ ... ]}
|
||||||
|
@ -16,4 +16,4 @@ export const StoryWithLocale = (args, { globals: { locale } }) => {
|
|||||||
const caption = getCaptionForLocale(locale);
|
const caption = getCaptionForLocale(locale);
|
||||||
return <>{caption}</>;
|
return <>{caption}</>;
|
||||||
};
|
};
|
||||||
```
|
```
|
@ -18,4 +18,4 @@ export const getCaptionForLocale = (locale) => {
|
|||||||
return <>{caption}</>;
|
return <>{caption}</>;
|
||||||
}}
|
}}
|
||||||
</Story>
|
</Story>
|
||||||
```
|
```
|
@ -2,10 +2,11 @@
|
|||||||
<!-- MyComponent.stories.mdx --->
|
<!-- MyComponent.stories.mdx --->
|
||||||
|
|
||||||
import { Canvas } from '@storybook/addon-docs/blocks';
|
import { Canvas } from '@storybook/addon-docs/blocks';
|
||||||
|
|
||||||
import { MyComponent } from './MyComponent';
|
import { MyComponent } from './MyComponent';
|
||||||
|
|
||||||
<Canvas>
|
<Canvas>
|
||||||
<h2>Some here</h2>
|
<h2>Some here</h2>
|
||||||
<MyComponent />
|
<MyComponent />
|
||||||
</Canvas>
|
</Canvas>
|
||||||
```
|
```
|
@ -3,7 +3,7 @@
|
|||||||
|
|
||||||
export default {
|
export default {
|
||||||
title: 'OtherFoo/Bar',
|
title: 'OtherFoo/Bar',
|
||||||
id: 'Foo/Bar', // or 'foo-bar' if you prefer
|
id: 'Foo/Bar', // Or 'foo-bar' if you prefer
|
||||||
};
|
};
|
||||||
|
|
||||||
export const Baz = () => BarStory.bind({});
|
export const Baz = () => BarStory.bind({});
|
||||||
|
@ -16,4 +16,4 @@ export default {
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
```
|
```
|
@ -9,4 +9,4 @@ Large.parameters = {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
```
|
```
|
@ -2,8 +2,11 @@
|
|||||||
// addon-panel/register.js
|
// addon-panel/register.js
|
||||||
|
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
|
|
||||||
import { AddonPanel } from '@storybook/components';
|
import { AddonPanel } from '@storybook/components';
|
||||||
|
|
||||||
import { addons, types } from '@storybook/addons';
|
import { addons, types } from '@storybook/addons';
|
||||||
|
|
||||||
import { useGlobals } from '@storybook/api';
|
import { useGlobals } from '@storybook/api';
|
||||||
|
|
||||||
addons.register('my/panel', () => {
|
addons.register('my/panel', () => {
|
||||||
@ -18,4 +21,4 @@ addons.register('my/panel', () => {
|
|||||||
),
|
),
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
```
|
```
|
@ -2,7 +2,9 @@
|
|||||||
// .storybook/my-addon/register.js
|
// .storybook/my-addon/register.js
|
||||||
|
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
|
|
||||||
import { addons, types } from '@storybook/addons';
|
import { addons, types } from '@storybook/addons';
|
||||||
|
|
||||||
import { AddonPanel } from '@storybook/components';
|
import { AddonPanel } from '@storybook/components';
|
||||||
|
|
||||||
const ADDON_ID = 'myaddon';
|
const ADDON_ID = 'myaddon';
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
// addon-tab/register.js
|
// addon-tab/register.js
|
||||||
|
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
|
|
||||||
import addons, { types } from '@storybook/addons';
|
import addons, { types } from '@storybook/addons';
|
||||||
|
|
||||||
addons.register('my/tab', () => {
|
addons.register('my/tab', () => {
|
||||||
@ -19,4 +20,4 @@ addons.register('my/tab', () => {
|
|||||||
),
|
),
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
```
|
```
|
@ -2,7 +2,9 @@
|
|||||||
// addon-toolbar/register.js
|
// addon-toolbar/register.js
|
||||||
|
|
||||||
import React from "react";
|
import React from "react";
|
||||||
|
|
||||||
import addons, { types } from "@storybook/addons";
|
import addons, { types } from "@storybook/addons";
|
||||||
|
|
||||||
import { Icons, IconButton } from '@storybook/components';
|
import { Icons, IconButton } from '@storybook/components';
|
||||||
|
|
||||||
addons.register("my/toolbar", () => {
|
addons.register("my/toolbar", () => {
|
||||||
@ -22,4 +24,4 @@ addons.register("my/toolbar", () => {
|
|||||||
),
|
),
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
```
|
```
|
@ -2,6 +2,7 @@
|
|||||||
// /my-addon/register.js
|
// /my-addon/register.js
|
||||||
|
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
|
|
||||||
import { STORY_CHANGED } from '@storybook/core-events';
|
import { STORY_CHANGED } from '@storybook/core-events';
|
||||||
|
|
||||||
export const Panel = () => {
|
export const Panel = () => {
|
||||||
|
@ -2,8 +2,11 @@
|
|||||||
// your-framework/src/client/preview/index.ts
|
// your-framework/src/client/preview/index.ts
|
||||||
|
|
||||||
import { start } from '@storybook/core/client';
|
import { start } from '@storybook/core/client';
|
||||||
|
|
||||||
import './globals';
|
import './globals';
|
||||||
|
|
||||||
import render from './render';
|
import render from './render';
|
||||||
|
|
||||||
const api = start(render);
|
const api = start(render);
|
||||||
|
|
||||||
// the boilerplate code
|
// the boilerplate code
|
||||||
|
@ -18,4 +18,4 @@ addons.setConfig({
|
|||||||
collapsedRoots: ['other'],
|
collapsedRoots: ['other'],
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
```
|
```
|
@ -14,4 +14,4 @@ const argTypes = {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
```
|
```
|
@ -5,7 +5,7 @@ module.exports = {
|
|||||||
stories: [],
|
stories: [],
|
||||||
addons: [
|
addons: [
|
||||||
// Other Storybook addons
|
// Other Storybook addons
|
||||||
'@storybook/addon-a11y', //👈 the addon registered here
|
'@storybook/addon-a11y', //👈 The addon registered here
|
||||||
],
|
],
|
||||||
};
|
};
|
||||||
```
|
```
|
@ -5,4 +5,4 @@ module.exports = {
|
|||||||
stories: ['../src/**/*.stories.@(js|mdx)'],
|
stories: ['../src/**/*.stories.@(js|mdx)'],
|
||||||
addons: ['@storybook/addon-essentials']
|
addons: ['@storybook/addon-essentials']
|
||||||
}
|
}
|
||||||
```
|
```
|
@ -4,5 +4,4 @@
|
|||||||
module.exports = {
|
module.exports = {
|
||||||
stories: ['../my-project/src/components/*.@(js|md)'],
|
stories: ['../my-project/src/components/*.@(js|md)'],
|
||||||
};
|
};
|
||||||
|
|
||||||
```
|
```
|
@ -11,4 +11,4 @@ module.exports = {
|
|||||||
</style>
|
</style>
|
||||||
`);
|
`);
|
||||||
};
|
};
|
||||||
```
|
```
|
@ -29,4 +29,4 @@ module.exports = {
|
|||||||
};
|
};
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
```
|
```
|
@ -10,4 +10,4 @@ module.exports={
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
```
|
```
|
@ -3,8 +3,8 @@
|
|||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
addons: [
|
addons: [
|
||||||
'@storybook/addon-storysource/register', // a managerEntry
|
'@storybook/addon-storysource/register', // A managerEntry registered here, in this case from the storysource addon.
|
||||||
'@storybook/addon-docs/preset', // a preset
|
'@storybook/addon-docs/preset', // A preset registered here, in this case from the addon-docs addon.
|
||||||
],
|
],
|
||||||
};
|
};
|
||||||
```
|
```
|
@ -2,9 +2,9 @@
|
|||||||
// .storybook/main.js
|
// .storybook/main.js
|
||||||
|
|
||||||
export async function webpack(baseConfig, options) {
|
export async function webpack(baseConfig, options) {
|
||||||
//Modify or replace config.
|
// Modify or replace config.
|
||||||
//Mutating the original reference object can cause unexpected bugs,
|
// Mutating the original reference object can cause unexpected bugs,
|
||||||
//so in this example we replace.
|
// so in this example we replace.
|
||||||
const { module = {} } = baseConfig;
|
const { module = {} } = baseConfig;
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
// .storybook/main.js
|
// .storybook/main.js
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
// your Storybook configuration
|
// Your Storybook configuration
|
||||||
|
|
||||||
webpackFinal: (config) => {
|
webpackFinal: (config) => {
|
||||||
config.resolve.alias['isomorphic-fetch'] = require.resolve('../__mocks__/isomorphic-fetch.js');
|
config.resolve.alias['isomorphic-fetch'] = require.resolve('../__mocks__/isomorphic-fetch.js');
|
||||||
|
@ -7,4 +7,4 @@ import yourTheme from './YourTheme';
|
|||||||
addons.setConfig({
|
addons.setConfig({
|
||||||
theme: yourTheme,
|
theme: yourTheme,
|
||||||
});
|
});
|
||||||
```
|
```
|
@ -2,9 +2,10 @@
|
|||||||
// ./storybook/manager.js
|
// ./storybook/manager.js
|
||||||
|
|
||||||
import { addons } from '@storybook/addons';
|
import { addons } from '@storybook/addons';
|
||||||
|
|
||||||
addons.setConfig({
|
addons.setConfig({
|
||||||
sidebar: {
|
sidebar: {
|
||||||
showRoots: false,
|
showRoots: false,
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
```
|
```
|
@ -17,4 +17,4 @@ const argTypes = {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
```
|
```
|
@ -3,11 +3,11 @@
|
|||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
managerWebpack: async (config, options) => {
|
managerWebpack: async (config, options) => {
|
||||||
// update config here
|
// Update config here
|
||||||
return config;
|
return config;
|
||||||
},
|
},
|
||||||
managerBabel: async (config, options) => {
|
managerBabel: async (config, options) => {
|
||||||
// update config here
|
// Update config here
|
||||||
return config;
|
return config;
|
||||||
},
|
},
|
||||||
webpackFinal: async (config, options) => {
|
webpackFinal: async (config, options) => {
|
||||||
|
@ -7,4 +7,4 @@ export const parameters = {
|
|||||||
defaultViewport: 'someDefault',
|
defaultViewport: 'someDefault',
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
```
|
```
|
@ -16,4 +16,4 @@ export const parameters = {
|
|||||||
],
|
],
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
```
|
```
|
@ -8,11 +8,11 @@ export const globalTypes = {
|
|||||||
defaultValue: 'light',
|
defaultValue: 'light',
|
||||||
toolbar: {
|
toolbar: {
|
||||||
icon: 'circlehollow',
|
icon: 'circlehollow',
|
||||||
// array of plain string values or MenuItem shape (see below)
|
// Array of plain string values or MenuItem shape (see below)
|
||||||
items: ['light', 'dark'],
|
items: ['light', 'dark'],
|
||||||
// property that specifies if the name of the item will be displayed
|
// Property that specifies if the name of the item will be displayed
|
||||||
showName: True,
|
showName: True,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
```
|
```
|
@ -2,4 +2,4 @@
|
|||||||
// .storybook/preview.js
|
// .storybook/preview.js
|
||||||
|
|
||||||
export const parameters = { docs: { page: null } };
|
export const parameters = { docs: { page: null } };
|
||||||
```
|
```
|
@ -2,9 +2,11 @@
|
|||||||
<!-- .storybook/preview-head.html -->
|
<!-- .storybook/preview-head.html -->
|
||||||
|
|
||||||
<!-- Pull in static files served from your Static directory or the internet -->
|
<!-- Pull in static files served from your Static directory or the internet -->
|
||||||
|
|
||||||
<link rel=”preload” href=”your/font” />
|
<link rel=”preload” href=”your/font” />
|
||||||
|
|
||||||
<!-- Or you can load custom head-tag JavaScript: -->
|
<!-- Or you can load custom head-tag JavaScript: -->
|
||||||
|
|
||||||
<script src="https://use.typekit.net/xxxyyy.js"></script>
|
<script src="https://use.typekit.net/xxxyyy.js"></script>
|
||||||
<script>try{ Typekit.load(); } catch(e){ }</script>
|
<script>try{ Typekit.load(); } catch(e){ }</script>
|
||||||
|
```
|
||||||
```
|
|
@ -19,4 +19,4 @@ const withThemeProvider=(Story,context)=>{
|
|||||||
)
|
)
|
||||||
}
|
}
|
||||||
export const decorators = [withThemeProvider];
|
export const decorators = [withThemeProvider];
|
||||||
```
|
```
|
@ -4,5 +4,4 @@
|
|||||||
export const parameters = {
|
export const parameters = {
|
||||||
viewport: { viewports: customViewports },
|
viewport: { viewports: customViewports },
|
||||||
};
|
};
|
||||||
|
|
||||||
```
|
```
|
@ -8,4 +8,4 @@ export const parameters = {
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
```
|
```
|
@ -8,4 +8,4 @@ export const parameters = {
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
```
|
```
|
@ -2,6 +2,7 @@
|
|||||||
// your-framework/src/server/index.ts
|
// your-framework/src/server/index.ts
|
||||||
|
|
||||||
import { buildDev } from '@storybook/core/server';
|
import { buildDev } from '@storybook/core/server';
|
||||||
|
|
||||||
import options from './options';
|
import options from './options';
|
||||||
|
|
||||||
buildDev(options);
|
buildDev(options);
|
||||||
|
@ -3,4 +3,4 @@
|
|||||||
|
|
||||||
import initStoryshots from '@storybook/addon-storyshots';
|
import initStoryshots from '@storybook/addon-storyshots';
|
||||||
initStoryshots();
|
initStoryshots();
|
||||||
```
|
```
|
@ -5,10 +5,10 @@ import path from 'path';
|
|||||||
|
|
||||||
import initStoryshots from '@storybook/addon-storyshots';
|
import initStoryshots from '@storybook/addon-storyshots';
|
||||||
|
|
||||||
// the required import from the @storybook/addon-storyshots-puppeteer addon
|
// The required import from the @storybook/addon-storyshots-puppeteer addon
|
||||||
import { imageSnapshot } from '@storybook/addon-storyshots-puppeteer';
|
import { imageSnapshot } from '@storybook/addon-storyshots-puppeteer';
|
||||||
|
|
||||||
// function to customize the snapshot location
|
// Function to customize the snapshot location
|
||||||
const getMatchOptions = ({ context: { fileName } }) => {
|
const getMatchOptions = ({ context: { fileName } }) => {
|
||||||
// Generates a custom path based on the file name and the custom directory.
|
// Generates a custom path based on the file name and the custom directory.
|
||||||
const snapshotPath = path.join(path.dirname(fileName), 'your-custom-directory');
|
const snapshotPath = path.join(path.dirname(fileName), 'your-custom-directory');
|
||||||
|
@ -9,4 +9,4 @@ export default create({
|
|||||||
brandUrl: 'https://example.com',
|
brandUrl: 'https://example.com',
|
||||||
brandImage: 'https://place-hold.it/350x150',
|
brandImage: 'https://place-hold.it/350x150',
|
||||||
});
|
});
|
||||||
```
|
```
|
@ -38,4 +38,4 @@ export default create({
|
|||||||
brandUrl: 'https://example.com',
|
brandUrl: 'https://example.com',
|
||||||
brandImage: 'https://place-hold.it/350x150',
|
brandImage: 'https://place-hold.it/350x150',
|
||||||
});
|
});
|
||||||
```
|
```
|
@ -29,4 +29,4 @@ Success.parameters = {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
```
|
```
|
@ -17,7 +17,7 @@ export default {
|
|||||||
argTypes: {
|
argTypes: {
|
||||||
propertyA: {
|
propertyA: {
|
||||||
options: ['Item One', 'Item Two', 'Item Three'],
|
options: ['Item One', 'Item Two', 'Item Three'],
|
||||||
control: { type: 'select' } // automatically inferred when 'options' is defined
|
control: { type: 'select' } // Automatically inferred when 'options' is defined
|
||||||
},
|
},
|
||||||
propertyB: {
|
propertyB: {
|
||||||
options: ['Another Item One', 'Another Item Two', 'Another Item Three'],
|
options: ['Another Item One', 'Another Item Two', 'Another Item Three'],
|
||||||
@ -31,4 +31,4 @@ const Template = ({ propertyA, propertyB, ...rest }) => {
|
|||||||
|
|
||||||
return <YourComponent someProperty={someFunctionResult} {...rest} />;
|
return <YourComponent someProperty={someFunctionResult} {...rest} />;
|
||||||
};
|
};
|
||||||
```
|
```
|
@ -9,7 +9,7 @@ import { YourComponent } from './your-component';
|
|||||||
|
|
||||||
<!---👇 A function to apply some computations -->
|
<!---👇 A function to apply some computations -->
|
||||||
export const someFunction = (valuePropertyA, valuePropertyB) => {
|
export const someFunction = (valuePropertyA, valuePropertyB) => {
|
||||||
<!--- makes some computations and returns something -->
|
<!--- Makes some computations and returns something -->
|
||||||
};
|
};
|
||||||
|
|
||||||
export const Template = ({propertyA,propertyB,...rest})=>{
|
export const Template = ({propertyA,propertyB,...rest})=>{
|
||||||
@ -44,4 +44,4 @@ export const Template = ({propertyA,propertyB,...rest})=>{
|
|||||||
{Template.bind({})}
|
{Template.bind({})}
|
||||||
</Story>
|
</Story>
|
||||||
</Canvas>
|
</Canvas>
|
||||||
```
|
```
|
@ -19,7 +19,7 @@ export default {
|
|||||||
argTypes: {
|
argTypes: {
|
||||||
propertyA: {
|
propertyA: {
|
||||||
options: ['Item One', 'Item Two', 'Item Three'],
|
options: ['Item One', 'Item Two', 'Item Three'],
|
||||||
control: { type: 'select' } // automatically inferred when 'options' is defined
|
control: { type: 'select' } // Automatically inferred when 'options' is defined
|
||||||
},
|
},
|
||||||
propertyB: {
|
propertyB: {
|
||||||
options: ['Another Item One', 'Another Item Two', 'Another Item Three'],
|
options: ['Another Item One', 'Another Item Two', 'Another Item Three'],
|
||||||
@ -33,4 +33,4 @@ const Template: Story<YourComponentProps> = ({ propertyA, propertyB, ...rest })
|
|||||||
|
|
||||||
return <YourComponent someProperty={someFunctionResult} {...rest} />;
|
return <YourComponent someProperty={someFunctionResult} {...rest} />;
|
||||||
};
|
};
|
||||||
```
|
```
|
@ -10,4 +10,4 @@ export default {
|
|||||||
export const withAnImage = () => (
|
export const withAnImage = () => (
|
||||||
<img src="https://place-hold.it/350x150" alt="My CDN placeholder" />
|
<img src="https://place-hold.it/350x150" alt="My CDN placeholder" />
|
||||||
);
|
);
|
||||||
```
|
```
|
@ -15,7 +15,7 @@ export default {
|
|||||||
//👇 Your own default viewport
|
//👇 Your own default viewport
|
||||||
defaultViewport: 'iphone6'
|
defaultViewport: 'iphone6'
|
||||||
},
|
},
|
||||||
};
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
export const MyStory = () => <div />;
|
export const MyStory = () => <div />;
|
||||||
|
@ -18,4 +18,4 @@ export const Template = (args) => <MyOtherComponent {...args} />
|
|||||||
{Template.bind({})}
|
{Template.bind({})}
|
||||||
</Story>
|
</Story>
|
||||||
</Canvas>
|
</Canvas>
|
||||||
```
|
```
|
@ -19,4 +19,4 @@ export const CustomFooter = Template.bind({});
|
|||||||
CustomFooter.args = {
|
CustomFooter.args = {
|
||||||
footer: 'Built with Storybook',
|
footer: 'Built with Storybook',
|
||||||
};
|
};
|
||||||
```
|
```
|
@ -19,8 +19,8 @@ const Template = (args) => <DocumentScreen {...args} />;
|
|||||||
|
|
||||||
export const Simple = Template.bind({});
|
export const Simple = Template.bind({});
|
||||||
Simple.args = {
|
Simple.args = {
|
||||||
user: PageLayout.Simple.user,
|
user: PageLayout.Simple.args.user,
|
||||||
document: DocumentHeader.Simple.document,
|
document: DocumentHeader.Simple.args.document,
|
||||||
subdocuments: DocumentList.Simple.documents,
|
subdocuments: DocumentList.Simple.args.documents,
|
||||||
};
|
};
|
||||||
```
|
```
|
@ -19,8 +19,8 @@ const Template: Story<DocumentScreenProps> = (args) => <DocumentScreen {...args}
|
|||||||
|
|
||||||
export const Simple = Template.bind({});
|
export const Simple = Template.bind({});
|
||||||
Simple.args = {
|
Simple.args = {
|
||||||
user: PageLayout.Simple.user,
|
user: PageLayout.Simple.args.user,
|
||||||
document: DocumentHeader.Simple.document,
|
document: DocumentHeader.Simple.args.document,
|
||||||
subdocuments: DocumentList.Simple.documents,
|
subdocuments: DocumentList.Simple.args.documents,
|
||||||
};
|
};
|
||||||
```
|
```
|
Loading…
x
Reference in New Issue
Block a user