// Copyright 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 { text } from '@storybook/addon-knobs'; import enMessages from '../../_locales/en/messages.json'; import type { AttachmentType } from '../types/Attachment'; import type { PropsType } from './ForwardMessageModal'; import { ForwardMessageModal } from './ForwardMessageModal'; import { IMAGE_JPEG, VIDEO_MP4, stringToMIMEType } from '../types/MIME'; import { getDefaultConversation } from '../test-both/helpers/getDefaultConversation'; import { setupI18n } from '../util/setupI18n'; import { StorybookThemeContext } from '../../.storybook/StorybookThemeContext'; const createAttachment = ( props: Partial = {} ): AttachmentType => ({ contentType: stringToMIMEType( text('attachment contentType', props.contentType || '') ), fileName: text('attachment fileName', props.fileName || ''), screenshot: props.screenshot, url: text('attachment url', props.url || ''), size: 3433, }); const story = storiesOf('Components/ForwardMessageModal', module); const i18n = setupI18n('en', enMessages); const LONG_TITLE = "This is a super-sweet site. And it's got some really amazing content in store for you if you just click that link. Can you click that link for me?"; const LONG_DESCRIPTION = "You're gonna love this description. Not only does it have a lot of characters, but it will also be truncated in the UI. How cool is that??"; const candidateConversations = Array.from(Array(100), () => getDefaultConversation() ); const useProps = (overrideProps: Partial = {}): PropsType => ({ attachments: overrideProps.attachments, candidateConversations, doForwardMessage: action('doForwardMessage'), i18n, isSticker: Boolean(overrideProps.isSticker), linkPreview: overrideProps.linkPreview, messageBody: text('messageBody', overrideProps.messageBody || ''), onClose: action('onClose'), onEditorStateChange: action('onEditorStateChange'), onPickEmoji: action('onPickEmoji'), onTextTooLong: action('onTextTooLong'), onSetSkinTone: action('onSetSkinTone'), recentEmojis: [], removeLinkPreview: action('removeLinkPreview'), skinTone: 0, theme: React.useContext(StorybookThemeContext), }); story.add('Modal', () => { return ; }); story.add('with text', () => { return ; }); story.add('a sticker', () => { return ; }); story.add('link preview', () => { return ( ); }); story.add('media attachments', () => { return ( ); }); story.add('announcement only groups non-admin', () => ( ));