// 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 { noop } from 'lodash'; import type { Meta } from '@storybook/react'; 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', } satisfies Meta; function getDefaultProps(): PropsType { return { attachment: fakeAttachment({ url: '/fixtures/nathan-anderson-316188-unsplash.jpg', thumbnail: fakeThumbnail('/fixtures/nathan-anderson-316188-unsplash.jpg'), }), firstName: 'Charlie', i18n, label: 'A story', queueStoryDownload: action('queueStoryDownload'), storyId: uuid(), onMediaPlaybackStart: noop, }; } export function GoodStory(): JSX.Element { return ; } export function GoodStoryThumbnail(): JSX.Element { return ; } export function NotDownloaded(): JSX.Element { return ; } export function NotDownloadedThumbnail(): JSX.Element { return ( ); } export function PendingDownload(): JSX.Element { return ( ); } export function PendingDownloadThumbnail(): JSX.Element { return ( ); } export function BrokenImage(): JSX.Element { return ( ); } export function BrokenImageThumbnail(): JSX.Element { return ( ); } export function Video(): JSX.Element { return ( ); } export function ErrorImage(): JSX.Element { return ( ); } export function ErrorImageThumbnail(): JSX.Element { return ( ); } export function ErrorImageYou(): JSX.Element { return ( ); }