324 lines
7.2 KiB
TypeScript
324 lines
7.2 KiB
TypeScript
// Copyright 2020 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
import * as React from 'react';
|
|
|
|
import { action } from '@storybook/addon-actions';
|
|
import { boolean, number } from '@storybook/addon-knobs';
|
|
import { storiesOf } from '@storybook/react';
|
|
|
|
import { ImageGrid, Props } from './ImageGrid';
|
|
import {
|
|
AUDIO_MP3,
|
|
IMAGE_JPEG,
|
|
IMAGE_PNG,
|
|
IMAGE_WEBP,
|
|
MIMEType,
|
|
VIDEO_MP4,
|
|
} from '../../types/MIME';
|
|
import { setup as setupI18n } from '../../../js/modules/i18n';
|
|
import enMessages from '../../../_locales/en/messages.json';
|
|
import { pngUrl, squareStickerUrl } from '../../storybook/Fixtures';
|
|
|
|
const i18n = setupI18n('en', enMessages);
|
|
|
|
const story = storiesOf('Components/Conversation/ImageGrid', module);
|
|
|
|
const createProps = (overrideProps: Partial<Props> = {}): Props => ({
|
|
attachments: overrideProps.attachments || [
|
|
{
|
|
contentType: IMAGE_PNG,
|
|
fileName: 'sax.png',
|
|
height: 1200,
|
|
url: pngUrl,
|
|
width: 800,
|
|
},
|
|
],
|
|
bottomOverlay: boolean('bottomOverlay', overrideProps.bottomOverlay || false),
|
|
i18n,
|
|
isSticker: boolean('isSticker', overrideProps.isSticker || false),
|
|
onClick: action('onClick'),
|
|
onError: action('onError'),
|
|
stickerSize: number('stickerSize', overrideProps.stickerSize || 0),
|
|
tabIndex: number('tabIndex', overrideProps.tabIndex || 0),
|
|
withContentAbove: boolean(
|
|
'withContentAbove',
|
|
overrideProps.withContentAbove || false
|
|
),
|
|
withContentBelow: boolean(
|
|
'withContentBelow',
|
|
overrideProps.withContentBelow || false
|
|
),
|
|
});
|
|
|
|
story.add('One Image', () => {
|
|
const props = createProps();
|
|
|
|
return <ImageGrid {...props} />;
|
|
});
|
|
|
|
story.add('Two Images', () => {
|
|
const props = createProps({
|
|
attachments: [
|
|
{
|
|
contentType: IMAGE_PNG,
|
|
fileName: 'sax.png',
|
|
height: 1200,
|
|
url: pngUrl,
|
|
width: 800,
|
|
},
|
|
{
|
|
contentType: IMAGE_JPEG,
|
|
fileName: 'tina-rolf-269345-unsplash.jpg',
|
|
height: 1680,
|
|
url: '/fixtures/tina-rolf-269345-unsplash.jpg',
|
|
width: 3000,
|
|
},
|
|
],
|
|
});
|
|
|
|
return <ImageGrid {...props} />;
|
|
});
|
|
|
|
story.add('Three Images', () => {
|
|
const props = createProps({
|
|
attachments: [
|
|
{
|
|
contentType: IMAGE_PNG,
|
|
fileName: 'sax.png',
|
|
height: 1200,
|
|
url: pngUrl,
|
|
width: 800,
|
|
},
|
|
{
|
|
contentType: IMAGE_JPEG,
|
|
fileName: 'tina-rolf-269345-unsplash.jpg',
|
|
height: 1680,
|
|
url: '/fixtures/tina-rolf-269345-unsplash.jpg',
|
|
width: 3000,
|
|
},
|
|
{
|
|
contentType: IMAGE_PNG,
|
|
fileName: 'sax.png',
|
|
height: 1200,
|
|
url: pngUrl,
|
|
width: 800,
|
|
},
|
|
],
|
|
});
|
|
|
|
return <ImageGrid {...props} />;
|
|
});
|
|
|
|
story.add('Four Images', () => {
|
|
const props = createProps({
|
|
attachments: [
|
|
{
|
|
contentType: IMAGE_PNG,
|
|
fileName: 'sax.png',
|
|
height: 1200,
|
|
url: pngUrl,
|
|
width: 800,
|
|
},
|
|
{
|
|
contentType: IMAGE_JPEG,
|
|
fileName: 'tina-rolf-269345-unsplash.jpg',
|
|
height: 1680,
|
|
url: '/fixtures/tina-rolf-269345-unsplash.jpg',
|
|
width: 3000,
|
|
},
|
|
{
|
|
contentType: IMAGE_PNG,
|
|
fileName: 'sax.png',
|
|
height: 1200,
|
|
url: pngUrl,
|
|
width: 800,
|
|
},
|
|
{
|
|
contentType: IMAGE_JPEG,
|
|
fileName: 'tina-rolf-269345-unsplash.jpg',
|
|
height: 1680,
|
|
url: '/fixtures/tina-rolf-269345-unsplash.jpg',
|
|
width: 3000,
|
|
},
|
|
],
|
|
});
|
|
|
|
return <ImageGrid {...props} />;
|
|
});
|
|
|
|
story.add('Five Images', () => {
|
|
const props = createProps({
|
|
attachments: [
|
|
{
|
|
contentType: IMAGE_PNG,
|
|
fileName: 'sax.png',
|
|
height: 1200,
|
|
url: pngUrl,
|
|
width: 800,
|
|
},
|
|
{
|
|
contentType: IMAGE_JPEG,
|
|
fileName: 'tina-rolf-269345-unsplash.jpg',
|
|
height: 1680,
|
|
url: '/fixtures/tina-rolf-269345-unsplash.jpg',
|
|
width: 3000,
|
|
},
|
|
{
|
|
contentType: IMAGE_PNG,
|
|
fileName: 'sax.png',
|
|
height: 1200,
|
|
url: pngUrl,
|
|
width: 800,
|
|
},
|
|
{
|
|
contentType: IMAGE_JPEG,
|
|
fileName: 'tina-rolf-269345-unsplash.jpg',
|
|
height: 1680,
|
|
url: '/fixtures/tina-rolf-269345-unsplash.jpg',
|
|
width: 3000,
|
|
},
|
|
{
|
|
contentType: IMAGE_PNG,
|
|
fileName: 'sax.png',
|
|
height: 1200,
|
|
url: pngUrl,
|
|
width: 800,
|
|
},
|
|
],
|
|
});
|
|
|
|
return <ImageGrid {...props} />;
|
|
});
|
|
|
|
story.add('6+ Images', () => {
|
|
const props = createProps({
|
|
attachments: [
|
|
{
|
|
contentType: IMAGE_PNG,
|
|
fileName: 'sax.png',
|
|
height: 1200,
|
|
url: pngUrl,
|
|
width: 800,
|
|
},
|
|
{
|
|
contentType: IMAGE_JPEG,
|
|
fileName: 'tina-rolf-269345-unsplash.jpg',
|
|
height: 1680,
|
|
url: '/fixtures/tina-rolf-269345-unsplash.jpg',
|
|
width: 3000,
|
|
},
|
|
{
|
|
contentType: IMAGE_PNG,
|
|
fileName: 'sax.png',
|
|
height: 1200,
|
|
url: pngUrl,
|
|
width: 800,
|
|
},
|
|
{
|
|
contentType: IMAGE_JPEG,
|
|
fileName: 'tina-rolf-269345-unsplash.jpg',
|
|
height: 1680,
|
|
url: '/fixtures/tina-rolf-269345-unsplash.jpg',
|
|
width: 3000,
|
|
},
|
|
{
|
|
contentType: IMAGE_PNG,
|
|
fileName: 'sax.png',
|
|
height: 1200,
|
|
url: pngUrl,
|
|
width: 800,
|
|
},
|
|
{
|
|
contentType: IMAGE_PNG,
|
|
fileName: 'sax.png',
|
|
height: 1200,
|
|
url: pngUrl,
|
|
width: 800,
|
|
},
|
|
{
|
|
contentType: IMAGE_PNG,
|
|
fileName: 'sax.png',
|
|
height: 1200,
|
|
url: pngUrl,
|
|
width: 800,
|
|
},
|
|
],
|
|
});
|
|
|
|
return <ImageGrid {...props} />;
|
|
});
|
|
story.add('Mixed Content Types', () => {
|
|
const props = createProps({
|
|
attachments: [
|
|
{
|
|
contentType: VIDEO_MP4,
|
|
fileName: 'pixabay-Soap-Bubble-7141.mp4',
|
|
height: 112,
|
|
screenshot: {
|
|
height: 112,
|
|
width: 112,
|
|
url: '/fixtures/kitten-4-112-112.jpg',
|
|
contentType: IMAGE_JPEG,
|
|
path: 'originalpath',
|
|
},
|
|
url: '/fixtures/pixabay-Soap-Bubble-7141.mp4',
|
|
width: 112,
|
|
},
|
|
{
|
|
contentType: IMAGE_PNG,
|
|
fileName: 'sax.png',
|
|
height: 1200,
|
|
url: pngUrl,
|
|
width: 800,
|
|
},
|
|
{
|
|
contentType: 'text/plain' as MIMEType,
|
|
fileName: 'lorem-ipsum.txt',
|
|
url: '/fixtures/lorem-ipsum.txt',
|
|
},
|
|
{
|
|
contentType: AUDIO_MP3,
|
|
fileName: 'incompetech-com-Agnus-Dei-X.mp3',
|
|
url: '/fixtures/incompetech-com-Agnus-Dei-X.mp3',
|
|
},
|
|
],
|
|
});
|
|
|
|
return <ImageGrid {...props} />;
|
|
});
|
|
|
|
story.add('Sticker', () => {
|
|
const props = createProps({
|
|
attachments: [
|
|
{
|
|
contentType: IMAGE_WEBP,
|
|
fileName: 'sticker.webp',
|
|
height: 512,
|
|
url: squareStickerUrl,
|
|
width: 512,
|
|
},
|
|
],
|
|
isSticker: true,
|
|
stickerSize: 128,
|
|
});
|
|
|
|
return <ImageGrid {...props} />;
|
|
});
|
|
|
|
story.add('Content Above and Below', () => {
|
|
const props = createProps({
|
|
withContentAbove: true,
|
|
withContentBelow: true,
|
|
});
|
|
|
|
return <ImageGrid {...props} />;
|
|
});
|
|
|
|
story.add('Bottom Overlay', () => {
|
|
const props = createProps({
|
|
bottomOverlay: true,
|
|
});
|
|
|
|
return <ImageGrid {...props} />;
|
|
});
|