Migrate MediaGridItem to Storybook

This commit is contained in:
Sidney Keese 2020-08-21 10:27:09 -07:00 committed by Josh Perez
parent ac28f9f13c
commit 88dce16b32
3 changed files with 135 additions and 95 deletions

View file

@ -1,94 +0,0 @@
#### With image
```jsx
const mediaItem = {
thumbnailObjectUrl: 'https://placekitten.com/76/67',
contentType: 'image/jpeg',
attachment: {
fileName: 'foo.jpg',
contentType: 'image/jpeg',
},
};
<MediaGridItem i18n={util.i18n} mediaItem={mediaItem} />;
```
#### With video
```jsx
const mediaItem = {
thumbnailObjectUrl: 'https://placekitten.com/76/67',
contentType: 'video/mp4',
attachment: {
fileName: 'foo.jpg',
contentType: 'video/mp4',
},
};
<MediaGridItem i18n={util.i18n} mediaItem={mediaItem} />;
```
#### Missing image
```jsx
const mediaItem = {
contentType: 'image/jpeg',
attachment: {
fileName: 'foo.jpg',
contentType: 'image/jpeg',
},
};
<MediaGridItem i18n={util.i18n} mediaItem={mediaItem} />;
```
#### Missing video
```jsx
const mediaItem = {
contentType: 'video/mp4',
attachment: {
fileName: 'foo.jpg',
contentType: 'video/mp4',
},
};
<MediaGridItem i18n={util.i18n} mediaItem={mediaItem} />;
```
#### Image thumbnail failed to load
```jsx
const mediaItem = {
thumbnailObjectUrl: 'nonexistent',
contentType: 'image/jpeg',
attachment: {
fileName: 'foo.jpg',
contentType: 'image/jpeg',
},
};
<MediaGridItem i18n={util.i18n} mediaItem={mediaItem} />;
```
#### Video thumbnail failed to load
```jsx
const mediaItem = {
thumbnailObjectUrl: 'nonexistent',
contentType: 'video/mp4',
attachment: {
fileName: 'foo.jpg',
contentType: 'video/mp4',
},
};
<MediaGridItem i18n={util.i18n} mediaItem={mediaItem} />;
```
#### Other contentType
```jsx
const mediaItem = {
contentType: 'application/json',
attachment: {
fileName: 'foo.jpg',
contentType: 'application/json',
},
};
<MediaGridItem i18n={util.i18n} mediaItem={mediaItem} />;
```

View file

@ -0,0 +1,134 @@
import * as React from 'react';
import { storiesOf } from '@storybook/react';
import { text, withKnobs } from '@storybook/addon-knobs';
import { action } from '@storybook/addon-actions';
// @ts-ignore
import { setup as setupI18n } from '../../../../js/modules/i18n';
// @ts-ignore
import enMessages from '../../../../_locales/en/messages.json';
import { MediaItemType } from '../../LightboxGallery';
import { AttachmentType } from '../../../types/Attachment';
import { MIMEType } from '../../../types/MIME';
import { MediaGridItem, Props } from './MediaGridItem';
import { Message } from './types/Message';
const i18n = setupI18n('en', enMessages);
const story = storiesOf(
'Components/Conversation/MediaGallery/MediaGridItem',
module
);
story.addDecorator((withKnobs as any)({ escapeHTML: false }));
const createProps = (
overrideProps: Partial<Props> & { mediaItem: MediaItemType }
): Props => ({
i18n,
mediaItem: overrideProps.mediaItem,
onClick: action('onClick'),
});
const createMediaItem = (
overrideProps: Partial<MediaItemType> = {}
): MediaItemType => ({
thumbnailObjectUrl: text(
'thumbnailObjectUrl',
overrideProps.thumbnailObjectUrl || ''
),
contentType: text('contentType', overrideProps.contentType || '') as MIMEType,
index: 0,
attachment: {} as AttachmentType, // attachment not useful in the component
message: {} as Message, // message not used in the component
});
story.add('Image', () => {
const mediaItem = createMediaItem({
thumbnailObjectUrl: '/fixtures/kitten-1-64-64.jpg',
contentType: 'image/jpeg' as MIMEType,
});
const props = createProps({
mediaItem,
});
return <MediaGridItem {...props} />;
});
story.add('Video', () => {
const mediaItem = createMediaItem({
thumbnailObjectUrl: '/fixtures/kitten-2-64-64.jpg',
contentType: 'video/mp4' as MIMEType,
});
const props = createProps({
mediaItem,
});
return <MediaGridItem {...props} />;
});
story.add('Missing Image', () => {
const mediaItem = createMediaItem({
contentType: 'image/jpeg' as MIMEType,
});
const props = createProps({
mediaItem,
});
return <MediaGridItem {...props} />;
});
story.add('Missing Video', () => {
const mediaItem = createMediaItem({
contentType: 'video/mp4' as MIMEType,
});
const props = createProps({
mediaItem,
});
return <MediaGridItem {...props} />;
});
story.add('Broken Image', () => {
const mediaItem = createMediaItem({
thumbnailObjectUrl: '/missing-fixtures/nope.jpg',
contentType: 'image/jpeg' as MIMEType,
});
const props = createProps({
mediaItem,
});
return <MediaGridItem {...props} />;
});
story.add('Broken Video', () => {
const mediaItem = createMediaItem({
thumbnailObjectUrl: '/missing-fixtures/nope.mp4',
contentType: 'video/mp4' as MIMEType,
});
const props = createProps({
mediaItem,
});
return <MediaGridItem {...props} />;
});
story.add('Other ContentType', () => {
const mediaItem = createMediaItem({
contentType: 'application/text' as MIMEType,
});
const props = createProps({
mediaItem,
});
return <MediaGridItem {...props} />;
});

View file

@ -8,7 +8,7 @@ import {
import { LocalizerType } from '../../../types/Util';
import { MediaItemType } from '../../LightboxGallery';
interface Props {
export interface Props {
mediaItem: MediaItemType;
onClick?: () => void;
i18n: LocalizerType;