storybook/examples/official-storybook/stories/addon-docs.stories.mdx
2019-07-04 17:14:19 +08:00

107 lines
2.3 KiB
Plaintext

import {
Story,
Preview,
Props,
Source,
Description,
ColorPalette,
ColorItem,
Meta,
} from '@storybook/addon-docs/blocks';
import { action } from '@storybook/addon-actions';
import { Button } from '@storybook/react/demo';
import FlowTypeButton from '../components/FlowTypeButton';
import DocgenButton from '../components/DocgenButton';
<Meta
title="Addons|Docs/mdx"
decorators={[storyFn => <div style={{ backgroundColor: 'yellow' }}>{storyFn()}</div>]}
parameters={{ component: Button, notes: 'component notes' }}
/>
# Selected
<Story id="." />
<Source id="." />
<Props of="." />
## A random color ColorPalette
<ColorPalette>
<ColorItem
title="theme.color.greyscale"
subtitle="Some of the greys"
colors={['#FFFFFF', '#F8F8F8', '#F3F3F3']}
/>
<ColorItem title="theme.color.primary" subtitle="Coral" colors={['#FF4785']} />
<ColorItem title="theme.color.secondary" subtitle="Ocean" colors={['#1EA7FD']} />
<ColorItem
title="theme.color.positive"
subtitle="Green"
colors={[
'rgba(102,191,60,1)',
'rgba(102,191,60,.8)',
'rgba(102,191,60,.6)',
'rgba(102,191,60,.3)',
]}
/>
</ColorPalette>
## Getting into details
<Button>just a button, not a story</Button>
export const nonStory1 = 'foo'; // a non-story export
export const nonStory2 = () => <Button>Not a story</Button>; // another one
<Preview>
<Story name="hello story">
<Button onClick={action('clicked')}>hello world</Button>
</Story>
<Story name="goodbye">
<Button onClick={action('clicked')}>goodbye world</Button>
</Story>
<Story name="with icons">
<Button onClick={action('clicked')}>🤘🚀💯</Button>
</Story>
<Story name="notes" parameters={{ notes: 'story notes' }}>
<Button onClick={action('clicked')}>goodbye world</Button>
</Story>
<Story name="plaintext">Plain text</Story>
</Preview>
<Story name="solo story">
<Button onClick={action('clicked')}>solo</Button>
</Story>
<Story name="iframe story" inline={false} height="100px">
<>This is an iframe!</>
</Story>
<Source name="hello story" />
## Configurable height
<Story id="basics-button--all-buttons" height="400px" />
## Description
<Description markdown="this is _markdown_" />
<Description of={Button} />
## Props
### Docgen
<Props of={DocgenButton} />
### Flow
Flow types are not officially supported
<Props of={FlowTypeButton} />