// Copyright 2022 Signal Messenger, LLC // SPDX-License-Identifier: AGPL-3.0-only import React from 'react'; import { v4 as uuid } from 'uuid'; import { action } from '@storybook/addon-actions'; import type { PropsType } from './StoryImage'; import { StoryImage } from './StoryImage'; import enMessages from '../../_locales/en/messages.json'; import { setupI18n } from '../util/setupI18n'; import { fakeAttachment, fakeThumbnail, } from '../test-both/helpers/fakeAttachment'; import { VIDEO_MP4 } from '../types/MIME'; const i18n = setupI18n('en', enMessages); export default { title: 'Components/StoryImage', }; function getDefaultProps(): PropsType { return { attachment: fakeAttachment({ url: '/fixtures/nathan-anderson-316188-unsplash.jpg', thumbnail: fakeThumbnail('/fixtures/nathan-anderson-316188-unsplash.jpg'), }), i18n, label: 'A story', queueStoryDownload: action('queueStoryDownload'), storyId: uuid(), }; } export const GoodStory = (): JSX.Element => ( ); GoodStory.story = { name: 'Good story', }; export const GoodStoryThumbnail = (): JSX.Element => ( ); GoodStoryThumbnail.story = { name: 'Good story (thumbnail)', }; export const NotDownloaded = (): JSX.Element => ( ); NotDownloaded.story = { name: 'Not downloaded', }; export const NotDownloadedThumbnail = (): JSX.Element => ( ); NotDownloadedThumbnail.story = { name: 'Not downloaded (thumbnail)', }; export const PendingDownload = (): JSX.Element => ( ); PendingDownload.story = { name: 'Pending download', }; export const PendingDownloadThumbnail = (): JSX.Element => ( ); PendingDownloadThumbnail.story = { name: 'Pending download (thumbnail)', }; export const BrokenImage = (): JSX.Element => ( ); export const BrokenImageThumbnail = (): JSX.Element => ( ); BrokenImageThumbnail.story = { name: 'Broken Image (thumbnail)', }; export const Video = (): JSX.Element => ( );