// Copyright 2020-2021 Signal Messenger, LLC // SPDX-License-Identifier: AGPL-3.0-only import * as React from 'react'; import { storiesOf } from '@storybook/react'; import { action } from '@storybook/addon-actions'; import { number } from '@storybook/addon-knobs'; import enMessages from '../../_locales/en/messages.json'; import { Lightbox, PropsType } from './Lightbox'; import { MediaItemType } from '../types/MediaItem'; import { setupI18n } from '../util/setupI18n'; import { AUDIO_MP3, IMAGE_JPEG, VIDEO_MP4, VIDEO_QUICKTIME, stringToMIMEType, } from '../types/MIME'; import { fakeAttachment } from '../test-both/helpers/fakeAttachment'; const i18n = setupI18n('en', enMessages); const story = storiesOf('Components/Lightbox', module); type OverridePropsMediaItemType = Partial & { caption?: string }; function createMediaItem( overrideProps: OverridePropsMediaItemType ): MediaItemType { return { attachment: fakeAttachment({ caption: overrideProps.caption || '', contentType: IMAGE_JPEG, fileName: overrideProps.objectURL, url: overrideProps.objectURL, }), contentType: IMAGE_JPEG, index: 0, message: { attachments: [], conversationId: '1234', id: 'image-msg', received_at: 0, received_at_ms: Date.now(), sent_at: Date.now(), }, objectURL: '', ...overrideProps, }; } const createProps = (overrideProps: Partial = {}): PropsType => ({ close: action('close'), i18n, isViewOnce: Boolean(overrideProps.isViewOnce), media: overrideProps.media || [], onSave: action('onSave'), selectedIndex: number('selectedIndex', overrideProps.selectedIndex || 0), }); story.add('Multimedia', () => { const props = createProps({ media: [ { attachment: fakeAttachment({ contentType: IMAGE_JPEG, fileName: 'tina-rolf-269345-unsplash.jpg', url: '/fixtures/tina-rolf-269345-unsplash.jpg', caption: 'Still from The Lighthouse, starring Robert Pattinson and Willem Defoe.', }), contentType: IMAGE_JPEG, index: 0, message: { attachments: [], conversationId: '1234', id: 'image-msg', received_at: 1, received_at_ms: Date.now(), sent_at: Date.now(), }, objectURL: '/fixtures/tina-rolf-269345-unsplash.jpg', }, { attachment: fakeAttachment({ contentType: VIDEO_MP4, fileName: 'pixabay-Soap-Bubble-7141.mp4', url: '/fixtures/pixabay-Soap-Bubble-7141.mp4', }), contentType: VIDEO_MP4, index: 1, message: { attachments: [], conversationId: '1234', id: 'video-msg', received_at: 2, received_at_ms: Date.now(), sent_at: Date.now(), }, objectURL: '/fixtures/pixabay-Soap-Bubble-7141.mp4', }, createMediaItem({ contentType: IMAGE_JPEG, index: 2, thumbnailObjectUrl: '/fixtures/kitten-1-64-64.jpg', objectURL: '/fixtures/kitten-1-64-64.jpg', }), createMediaItem({ contentType: IMAGE_JPEG, index: 3, thumbnailObjectUrl: '/fixtures/kitten-2-64-64.jpg', objectURL: '/fixtures/kitten-2-64-64.jpg', }), ], }); return ; }); story.add('Missing Media', () => { const props = createProps({ media: [ { attachment: fakeAttachment({ contentType: IMAGE_JPEG, fileName: 'tina-rolf-269345-unsplash.jpg', url: '/fixtures/tina-rolf-269345-unsplash.jpg', }), contentType: IMAGE_JPEG, index: 0, message: { attachments: [], conversationId: '1234', id: 'image-msg', received_at: 3, received_at_ms: Date.now(), sent_at: Date.now(), }, objectURL: undefined, }, ], }); return ; }); story.add('Single Image', () => ( )); story.add('Image with Caption (normal image)', () => ( )); story.add('Image with Caption (all-white image)', () => ( )); story.add('Single Video', () => ( )); story.add('Single Video w/caption', () => ( )); story.add('Unsupported Image Type', () => ( )); story.add('Unsupported Video Type', () => ( )); story.add('Unsupported Content', () => ( )); story.add('Custom children', () => (
I am middle child
)); story.add('Forwarding', () => ( )); story.add('Conversation Header', () => ( ({ acceptedMessageRequest: true, avatarPath: '/fixtures/kitten-1-64-64.jpg', id: '1234', isMe: false, name: 'Test', profileName: 'Test', sharedGroupNames: [], title: 'Test', type: 'direct', })} media={[ createMediaItem({ contentType: VIDEO_MP4, objectURL: '/fixtures/pixabay-Soap-Bubble-7141.mp4', }), ]} /> )); story.add('View Once Video', () => ( ));