Migrate DocumentListItem to Storybook

This commit is contained in:
Sidney Keese 2020-08-20 14:42:49 -07:00 committed by Josh Perez
parent 8975b3473c
commit 3416818e01
2 changed files with 52 additions and 23 deletions

View file

@ -1,23 +0,0 @@
```jsx
<div>
<DocumentListItem
fileName="meow.jpg"
fileSize={1024 * 1000 * 2}
timestamp={Date.now()}
i18n={util.i18n}
/>
<DocumentListItem
fileName="rickroll.wmv"
fileSize={1024 * 1000 * 8}
timestamp={Date.now() - 24 * 60 * 1000}
i18n={util.i18n}
/>
<DocumentListItem
fileName="kitten.gif"
fileSize={1024 * 1000 * 1.2}
timestamp={Date.now() - 14 * 24 * 60 * 1000}
shouldShowSeparator={false}
i18n={util.i18n}
/>
</div>
```

View file

@ -0,0 +1,52 @@
import * as React from 'react';
import { storiesOf } from '@storybook/react';
import { boolean, date, number, text, withKnobs } from '@storybook/addon-knobs';
import { action } from '@storybook/addon-actions';
import { DocumentListItem } from './DocumentListItem';
const story = storiesOf(
'Components/Conversation/MediaGallery/DocumentListItem',
module
);
story.addDecorator((withKnobs as any)({ escapeHTML: false }));
story.add('Single', () => (
<DocumentListItem
timestamp={date('timestamp', new Date())}
fileName={text('fileName', 'meow.jpg')}
fileSize={number('fileSize', 1024 * 1000 * 2)}
shouldShowSeparator={boolean('shouldShowSeparator', false)}
onClick={action('onClick')}
/>
));
story.add('Multiple', () => {
const items = [
{
fileName: 'meow.jpg',
fileSize: 1024 * 1000 * 2,
timestamp: Date.now(),
},
{
fileName: 'rickroll.mp4',
fileSize: 1024 * 1000 * 8,
timestamp: Date.now() - 24 * 60 * 60 * 1000,
},
{
fileName: 'kitten.gif',
fileSize: 1024 * 1000 * 1.2,
timestamp: Date.now() - 14 * 24 * 60 * 60 * 1000,
shouldShowSeparator: false,
},
];
return items.map(item => (
<DocumentListItem
key={item.fileName}
onClick={action('onClick')}
{...item}
/>
));
});