2021-01-27 21:15:43 +00:00
|
|
|
// Copyright 2020-2021 Signal Messenger, LLC
|
2020-10-30 20:34:04 +00:00
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2020-02-07 19:07:22 +00:00
|
|
|
import * as React from 'react';
|
2021-02-02 17:09:53 +00:00
|
|
|
import { isBoolean } from 'lodash';
|
2021-03-10 20:36:58 +00:00
|
|
|
import LRU from 'lru-cache';
|
2020-02-07 19:07:22 +00:00
|
|
|
|
|
|
|
import { action } from '@storybook/addon-actions';
|
2021-03-10 20:36:58 +00:00
|
|
|
import { boolean, number, text, select } from '@storybook/addon-knobs';
|
2020-08-27 16:57:12 +00:00
|
|
|
import { storiesOf } from '@storybook/react';
|
|
|
|
|
|
|
|
import { Colors } from '../../types/Colors';
|
2021-03-10 20:36:58 +00:00
|
|
|
import { WaveformCache } from '../../types/Audio';
|
2020-08-27 16:57:12 +00:00
|
|
|
import { EmojiPicker } from '../emoji/EmojiPicker';
|
2021-03-10 20:36:58 +00:00
|
|
|
import { Message, Props, AudioAttachmentProps } from './Message';
|
2020-08-27 16:57:12 +00:00
|
|
|
import {
|
|
|
|
AUDIO_MP3,
|
|
|
|
IMAGE_JPEG,
|
|
|
|
IMAGE_PNG,
|
|
|
|
IMAGE_WEBP,
|
|
|
|
MIMEType,
|
|
|
|
VIDEO_MP4,
|
|
|
|
} from '../../types/MIME';
|
2021-03-10 20:36:58 +00:00
|
|
|
import { MessageAudio } from './MessageAudio';
|
2020-02-07 19:07:22 +00:00
|
|
|
import { setup as setupI18n } from '../../../js/modules/i18n';
|
|
|
|
import enMessages from '../../../_locales/en/messages.json';
|
2020-08-27 16:57:12 +00:00
|
|
|
import { pngUrl } from '../../storybook/Fixtures';
|
2020-09-14 19:51:27 +00:00
|
|
|
|
2020-08-27 16:57:12 +00:00
|
|
|
const i18n = setupI18n('en', enMessages);
|
2020-02-07 19:07:22 +00:00
|
|
|
|
2020-08-27 16:57:12 +00:00
|
|
|
const story = storiesOf('Components/Conversation/Message', module);
|
|
|
|
|
|
|
|
const renderEmojiPicker: Props['renderEmojiPicker'] = ({
|
|
|
|
onClose,
|
|
|
|
onPickEmoji,
|
|
|
|
ref,
|
|
|
|
}) => (
|
|
|
|
<EmojiPicker
|
|
|
|
i18n={setupI18n('en', enMessages)}
|
|
|
|
skinTone={0}
|
|
|
|
onSetSkinTone={action('EmojiPicker::onSetSkinTone')}
|
|
|
|
ref={ref}
|
|
|
|
onClose={onClose}
|
|
|
|
onPickEmoji={onPickEmoji}
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
|
2021-03-10 20:36:58 +00:00
|
|
|
const MessageAudioContainer: React.FC<AudioAttachmentProps> = props => {
|
|
|
|
const [activeAudioID, setActiveAudioID] = React.useState<string | undefined>(
|
|
|
|
undefined
|
|
|
|
);
|
|
|
|
const audio = React.useMemo(() => new Audio(), []);
|
|
|
|
const audioContext = React.useMemo(() => new AudioContext(), []);
|
|
|
|
const waveformCache: WaveformCache = React.useMemo(() => new LRU(), []);
|
|
|
|
|
|
|
|
return (
|
|
|
|
<MessageAudio
|
|
|
|
{...props}
|
|
|
|
id="storybook"
|
|
|
|
audio={audio}
|
|
|
|
audioContext={audioContext}
|
|
|
|
waveformCache={waveformCache}
|
|
|
|
setActiveAudioID={setActiveAudioID}
|
|
|
|
activeAudioID={activeAudioID}
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
const renderAudioAttachment: Props['renderAudioAttachment'] = props => (
|
|
|
|
<MessageAudioContainer {...props} />
|
|
|
|
);
|
|
|
|
|
2020-08-27 16:57:12 +00:00
|
|
|
const createProps = (overrideProps: Partial<Props> = {}): Props => ({
|
|
|
|
attachments: overrideProps.attachments,
|
2020-11-11 17:36:05 +00:00
|
|
|
authorId: overrideProps.authorId || 'some-id',
|
2021-03-10 20:36:58 +00:00
|
|
|
authorColor: select('authorColor', Colors, Colors[0]),
|
2020-08-27 16:57:12 +00:00
|
|
|
authorAvatarPath: overrideProps.authorAvatarPath,
|
|
|
|
authorTitle: text('authorTitle', overrideProps.authorTitle || ''),
|
2020-09-16 22:42:48 +00:00
|
|
|
bodyRanges: overrideProps.bodyRanges,
|
2020-02-07 23:13:46 +00:00
|
|
|
canReply: true,
|
2020-10-16 18:31:57 +00:00
|
|
|
canDownload: true,
|
2020-09-29 22:55:56 +00:00
|
|
|
canDeleteForEveryone: overrideProps.canDeleteForEveryone || false,
|
2020-02-07 19:07:22 +00:00
|
|
|
clearSelectedMessage: action('clearSelectedMessage'),
|
2020-08-27 16:57:12 +00:00
|
|
|
collapseMetadata: overrideProps.collapseMetadata,
|
|
|
|
conversationId: text('conversationId', overrideProps.conversationId || ''),
|
|
|
|
conversationType: overrideProps.conversationType || 'direct',
|
|
|
|
deletedForEveryone: overrideProps.deletedForEveryone,
|
2020-02-07 19:07:22 +00:00
|
|
|
deleteMessage: action('deleteMessage'),
|
2020-09-29 22:55:56 +00:00
|
|
|
deleteMessageForEveryone: action('deleteMessageForEveryone'),
|
2020-08-27 16:57:12 +00:00
|
|
|
disableMenu: overrideProps.disableMenu,
|
|
|
|
disableScroll: overrideProps.disableScroll,
|
|
|
|
direction: overrideProps.direction || 'incoming',
|
2020-02-07 19:07:22 +00:00
|
|
|
displayTapToViewMessage: action('displayTapToViewMessage'),
|
2020-08-27 16:57:12 +00:00
|
|
|
downloadAttachment: action('downloadAttachment'),
|
|
|
|
expirationLength:
|
|
|
|
number('expirationLength', overrideProps.expirationLength || 0) ||
|
|
|
|
undefined,
|
|
|
|
expirationTimestamp:
|
|
|
|
number('expirationTimestamp', overrideProps.expirationTimestamp || 0) ||
|
|
|
|
undefined,
|
|
|
|
i18n,
|
|
|
|
id: text('id', overrideProps.id || ''),
|
|
|
|
interactionMode: overrideProps.interactionMode || 'keyboard',
|
2021-02-02 17:09:53 +00:00
|
|
|
isBlocked: isBoolean(overrideProps.isBlocked)
|
|
|
|
? overrideProps.isBlocked
|
|
|
|
: false,
|
|
|
|
isMessageRequestAccepted: isBoolean(overrideProps.isMessageRequestAccepted)
|
|
|
|
? overrideProps.isMessageRequestAccepted
|
|
|
|
: true,
|
2020-08-27 16:57:12 +00:00
|
|
|
isTapToView: overrideProps.isTapToView,
|
|
|
|
isTapToViewError: overrideProps.isTapToViewError,
|
|
|
|
isTapToViewExpired: overrideProps.isTapToViewExpired,
|
2021-01-29 22:58:28 +00:00
|
|
|
kickOffAttachmentDownload: action('kickOffAttachmentDownload'),
|
2020-08-27 16:57:12 +00:00
|
|
|
openConversation: action('openConversation'),
|
2020-02-07 19:07:22 +00:00
|
|
|
openLink: action('openLink'),
|
2020-08-27 16:57:12 +00:00
|
|
|
previews: overrideProps.previews || [],
|
|
|
|
reactions: overrideProps.reactions,
|
|
|
|
reactToMessage: action('reactToMessage'),
|
2020-09-14 19:51:27 +00:00
|
|
|
renderEmojiPicker,
|
2021-03-10 20:36:58 +00:00
|
|
|
renderAudioAttachment,
|
2020-08-27 16:57:12 +00:00
|
|
|
replyToMessage: action('replyToMessage'),
|
|
|
|
retrySend: action('retrySend'),
|
2020-02-07 19:07:22 +00:00
|
|
|
scrollToQuotedMessage: action('scrollToQuotedMessage'),
|
|
|
|
selectMessage: action('selectMessage'),
|
2020-08-27 16:57:12 +00:00
|
|
|
showContactDetail: action('showContactDetail'),
|
2020-11-11 17:36:05 +00:00
|
|
|
showContactModal: action('showContactModal'),
|
2020-02-07 19:07:22 +00:00
|
|
|
showExpiredIncomingTapToViewToast: action(
|
|
|
|
'showExpiredIncomingTapToViewToast'
|
|
|
|
),
|
|
|
|
showExpiredOutgoingTapToViewToast: action(
|
|
|
|
'showExpiredOutgoingTapToViewToast'
|
|
|
|
),
|
2020-08-27 16:57:12 +00:00
|
|
|
showMessageDetail: action('showMessageDetail'),
|
|
|
|
showVisualAttachment: action('showVisualAttachment'),
|
|
|
|
status: overrideProps.status || 'sent',
|
|
|
|
text: text('text', overrideProps.text || ''),
|
|
|
|
textPending: boolean('textPending', overrideProps.textPending || false),
|
|
|
|
timestamp: number('timestamp', overrideProps.timestamp || Date.now()),
|
2020-02-07 19:07:22 +00:00
|
|
|
});
|
|
|
|
|
2020-08-27 16:57:12 +00:00
|
|
|
const renderBothDirections = (props: Props) => (
|
|
|
|
<>
|
|
|
|
<Message {...props} />
|
|
|
|
<br />
|
|
|
|
<Message {...props} direction="outgoing" />
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
|
|
|
|
story.add('Plain Message', () => {
|
|
|
|
const props = createProps({
|
|
|
|
text:
|
|
|
|
'Hello there from a pal! I am sending a long message so that it will wrap a bit, since I like that look.',
|
|
|
|
});
|
|
|
|
|
|
|
|
return renderBothDirections(props);
|
|
|
|
});
|
|
|
|
|
|
|
|
story.add('Delivered', () => {
|
|
|
|
const props = createProps({
|
|
|
|
direction: 'outgoing',
|
|
|
|
status: 'delivered',
|
|
|
|
text:
|
|
|
|
'Hello there from a pal! I am sending a long message so that it will wrap a bit, since I like that look.',
|
|
|
|
});
|
|
|
|
|
|
|
|
return <Message {...props} />;
|
|
|
|
});
|
|
|
|
|
|
|
|
story.add('Read', () => {
|
|
|
|
const props = createProps({
|
|
|
|
direction: 'outgoing',
|
|
|
|
status: 'read',
|
|
|
|
text:
|
|
|
|
'Hello there from a pal! I am sending a long message so that it will wrap a bit, since I like that look.',
|
|
|
|
});
|
|
|
|
|
|
|
|
return <Message {...props} />;
|
|
|
|
});
|
|
|
|
|
|
|
|
story.add('Sending', () => {
|
|
|
|
const props = createProps({
|
|
|
|
direction: 'outgoing',
|
|
|
|
status: 'sending',
|
|
|
|
text:
|
|
|
|
'Hello there from a pal! I am sending a long message so that it will wrap a bit, since I like that look.',
|
|
|
|
});
|
|
|
|
|
|
|
|
return <Message {...props} />;
|
2020-02-07 19:07:22 +00:00
|
|
|
});
|
|
|
|
|
2020-08-27 16:57:12 +00:00
|
|
|
story.add('Expiring', () => {
|
|
|
|
const props = createProps({
|
|
|
|
expirationLength: 30 * 1000,
|
|
|
|
expirationTimestamp: Date.now() + 30 * 1000,
|
|
|
|
text:
|
|
|
|
'Hello there from a pal! I am sending a long message so that it will wrap a bit, since I like that look.',
|
|
|
|
});
|
|
|
|
|
|
|
|
return renderBothDirections(props);
|
|
|
|
});
|
|
|
|
|
|
|
|
story.add('Pending', () => {
|
|
|
|
const props = createProps({
|
|
|
|
text:
|
|
|
|
'Hello there from a pal! I am sending a long message so that it will wrap a bit, since I like that look.',
|
|
|
|
textPending: true,
|
|
|
|
});
|
|
|
|
|
|
|
|
return renderBothDirections(props);
|
|
|
|
});
|
|
|
|
|
|
|
|
story.add('Collapsed Metadata', () => {
|
|
|
|
const props = createProps({
|
|
|
|
authorTitle: 'Fred Willard',
|
|
|
|
collapseMetadata: true,
|
|
|
|
conversationType: 'group',
|
|
|
|
text: 'Hello there from a pal!',
|
|
|
|
});
|
|
|
|
|
|
|
|
return renderBothDirections(props);
|
|
|
|
});
|
|
|
|
|
|
|
|
story.add('Recent', () => {
|
|
|
|
const props = createProps({
|
|
|
|
text: 'Hello there from a pal!',
|
|
|
|
timestamp: Date.now() - 30 * 60 * 1000,
|
|
|
|
});
|
|
|
|
|
|
|
|
return renderBothDirections(props);
|
|
|
|
});
|
|
|
|
|
|
|
|
story.add('Older', () => {
|
|
|
|
const props = createProps({
|
|
|
|
text: 'Hello there from a pal!',
|
|
|
|
timestamp: Date.now() - 180 * 24 * 60 * 60 * 1000,
|
|
|
|
});
|
|
|
|
|
|
|
|
return renderBothDirections(props);
|
|
|
|
});
|
|
|
|
|
2021-01-27 21:15:43 +00:00
|
|
|
story.add('Reactions (wider message)', () => {
|
2020-08-27 16:57:12 +00:00
|
|
|
const props = createProps({
|
|
|
|
text: 'Hello there from a pal!',
|
|
|
|
timestamp: Date.now() - 180 * 24 * 60 * 60 * 1000,
|
|
|
|
reactions: [
|
2020-02-07 19:07:22 +00:00
|
|
|
{
|
2020-08-27 16:57:12 +00:00
|
|
|
emoji: '👍',
|
|
|
|
from: {
|
|
|
|
isMe: true,
|
|
|
|
id: '+14155552672',
|
|
|
|
phoneNumber: '+14155552672',
|
|
|
|
name: 'Me',
|
|
|
|
title: 'Me',
|
|
|
|
},
|
|
|
|
timestamp: Date.now() - 10,
|
2020-02-07 19:07:22 +00:00
|
|
|
},
|
|
|
|
{
|
2020-08-27 16:57:12 +00:00
|
|
|
emoji: '👍',
|
|
|
|
from: {
|
|
|
|
id: '+14155552672',
|
|
|
|
phoneNumber: '+14155552672',
|
|
|
|
name: 'Amelia Briggs',
|
|
|
|
title: 'Amelia',
|
|
|
|
},
|
|
|
|
timestamp: Date.now() - 10,
|
2020-02-07 19:07:22 +00:00
|
|
|
},
|
|
|
|
{
|
2020-08-27 16:57:12 +00:00
|
|
|
emoji: '👍',
|
|
|
|
from: {
|
|
|
|
id: '+14155552673',
|
|
|
|
phoneNumber: '+14155552673',
|
|
|
|
name: 'Amelia Briggs',
|
|
|
|
title: 'Amelia',
|
|
|
|
},
|
|
|
|
timestamp: Date.now() - 10,
|
2020-02-07 19:07:22 +00:00
|
|
|
},
|
|
|
|
{
|
2020-08-27 16:57:12 +00:00
|
|
|
emoji: '😂',
|
|
|
|
from: {
|
|
|
|
id: '+14155552674',
|
|
|
|
phoneNumber: '+14155552674',
|
|
|
|
name: 'Amelia Briggs',
|
|
|
|
title: 'Amelia',
|
|
|
|
},
|
|
|
|
timestamp: Date.now() - 10,
|
2020-02-07 19:07:22 +00:00
|
|
|
},
|
|
|
|
{
|
2020-08-27 16:57:12 +00:00
|
|
|
emoji: '😂',
|
|
|
|
from: {
|
|
|
|
id: '+14155552676',
|
|
|
|
phoneNumber: '+14155552676',
|
|
|
|
name: 'Amelia Briggs',
|
|
|
|
title: 'Amelia',
|
|
|
|
},
|
|
|
|
timestamp: Date.now() - 10,
|
2020-02-07 19:07:22 +00:00
|
|
|
},
|
|
|
|
{
|
2020-08-27 16:57:12 +00:00
|
|
|
emoji: '😡',
|
|
|
|
from: {
|
|
|
|
id: '+14155552677',
|
|
|
|
phoneNumber: '+14155552677',
|
|
|
|
name: 'Amelia Briggs',
|
|
|
|
title: 'Amelia',
|
|
|
|
},
|
|
|
|
timestamp: Date.now() - 10,
|
2020-02-07 19:07:22 +00:00
|
|
|
},
|
|
|
|
{
|
2020-08-27 16:57:12 +00:00
|
|
|
emoji: '👎',
|
|
|
|
from: {
|
|
|
|
id: '+14155552678',
|
|
|
|
phoneNumber: '+14155552678',
|
|
|
|
name: 'Amelia Briggs',
|
|
|
|
title: 'Amelia',
|
|
|
|
},
|
|
|
|
timestamp: Date.now() - 10,
|
2020-02-07 19:07:22 +00:00
|
|
|
},
|
|
|
|
{
|
2020-08-27 16:57:12 +00:00
|
|
|
emoji: '❤️',
|
|
|
|
from: {
|
|
|
|
id: '+14155552679',
|
|
|
|
phoneNumber: '+14155552679',
|
|
|
|
name: 'Amelia Briggs',
|
|
|
|
title: 'Amelia',
|
|
|
|
},
|
|
|
|
timestamp: Date.now() - 10,
|
2020-02-07 19:07:22 +00:00
|
|
|
},
|
2020-08-27 16:57:12 +00:00
|
|
|
],
|
|
|
|
});
|
|
|
|
|
|
|
|
return renderBothDirections(props);
|
|
|
|
});
|
|
|
|
|
2021-01-27 21:15:43 +00:00
|
|
|
story.add('Reactions (short message)', () => {
|
|
|
|
const props = createProps({
|
|
|
|
text: 'h',
|
|
|
|
timestamp: Date.now(),
|
|
|
|
reactions: [
|
|
|
|
{
|
|
|
|
emoji: '👍',
|
|
|
|
from: {
|
|
|
|
isMe: true,
|
|
|
|
id: '+14155552672',
|
|
|
|
phoneNumber: '+14155552672',
|
|
|
|
name: 'Me',
|
|
|
|
title: 'Me',
|
|
|
|
},
|
|
|
|
timestamp: Date.now(),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
emoji: '👍',
|
|
|
|
from: {
|
|
|
|
id: '+14155552672',
|
|
|
|
phoneNumber: '+14155552672',
|
|
|
|
name: 'Amelia Briggs',
|
|
|
|
title: 'Amelia',
|
|
|
|
},
|
|
|
|
timestamp: Date.now(),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
emoji: '👍',
|
|
|
|
from: {
|
|
|
|
id: '+14155552673',
|
|
|
|
phoneNumber: '+14155552673',
|
|
|
|
name: 'Amelia Briggs',
|
|
|
|
title: 'Amelia',
|
|
|
|
},
|
|
|
|
timestamp: Date.now(),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
emoji: '😂',
|
|
|
|
from: {
|
|
|
|
id: '+14155552674',
|
|
|
|
phoneNumber: '+14155552674',
|
|
|
|
name: 'Amelia Briggs',
|
|
|
|
title: 'Amelia',
|
|
|
|
},
|
|
|
|
timestamp: Date.now(),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
emoji: '😂',
|
|
|
|
from: {
|
|
|
|
id: '+14155552676',
|
|
|
|
phoneNumber: '+14155552676',
|
|
|
|
name: 'Amelia Briggs',
|
|
|
|
title: 'Amelia',
|
|
|
|
},
|
|
|
|
timestamp: Date.now(),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
emoji: '😡',
|
|
|
|
from: {
|
|
|
|
id: '+14155552677',
|
|
|
|
phoneNumber: '+14155552677',
|
|
|
|
name: 'Amelia Briggs',
|
|
|
|
title: 'Amelia',
|
|
|
|
},
|
|
|
|
timestamp: Date.now(),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
emoji: '👎',
|
|
|
|
from: {
|
|
|
|
id: '+14155552678',
|
|
|
|
phoneNumber: '+14155552678',
|
|
|
|
name: 'Amelia Briggs',
|
|
|
|
title: 'Amelia',
|
|
|
|
},
|
|
|
|
timestamp: Date.now(),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
emoji: '❤️',
|
|
|
|
from: {
|
|
|
|
id: '+14155552679',
|
|
|
|
phoneNumber: '+14155552679',
|
|
|
|
name: 'Amelia Briggs',
|
|
|
|
title: 'Amelia',
|
|
|
|
},
|
|
|
|
timestamp: Date.now(),
|
|
|
|
},
|
|
|
|
],
|
|
|
|
});
|
|
|
|
|
|
|
|
return renderBothDirections(props);
|
|
|
|
});
|
|
|
|
|
2020-08-27 16:57:12 +00:00
|
|
|
story.add('Avatar in Group', () => {
|
|
|
|
const props = createProps({
|
|
|
|
authorAvatarPath: pngUrl,
|
|
|
|
conversationType: 'group',
|
|
|
|
status: 'sent',
|
|
|
|
text: 'Hello it is me, the saxophone.',
|
|
|
|
});
|
|
|
|
|
|
|
|
return <Message {...props} />;
|
|
|
|
});
|
|
|
|
|
|
|
|
story.add('Sticker', () => {
|
|
|
|
const props = createProps({
|
|
|
|
attachments: [
|
2020-02-07 19:07:22 +00:00
|
|
|
{
|
2020-08-27 16:57:12 +00:00
|
|
|
url: '/fixtures/512x515-thumbs-up-lincoln.webp',
|
|
|
|
fileName: '512x515-thumbs-up-lincoln.webp',
|
|
|
|
contentType: IMAGE_WEBP,
|
|
|
|
width: 128,
|
|
|
|
height: 128,
|
2020-02-07 19:07:22 +00:00
|
|
|
},
|
|
|
|
],
|
2020-08-27 16:57:12 +00:00
|
|
|
isSticker: true,
|
|
|
|
status: 'sent',
|
|
|
|
});
|
|
|
|
|
|
|
|
return renderBothDirections(props);
|
|
|
|
});
|
|
|
|
|
|
|
|
story.add('Deleted', () => {
|
|
|
|
const props = createProps({
|
|
|
|
conversationType: 'group',
|
|
|
|
deletedForEveryone: true,
|
|
|
|
status: 'sent',
|
|
|
|
});
|
|
|
|
|
|
|
|
return renderBothDirections(props);
|
|
|
|
});
|
|
|
|
|
2020-09-29 22:55:56 +00:00
|
|
|
story.add('Can delete for everyone', () => {
|
|
|
|
const props = createProps({
|
|
|
|
status: 'read',
|
|
|
|
text: 'I hope you get this.',
|
|
|
|
canDeleteForEveryone: true,
|
|
|
|
});
|
|
|
|
|
|
|
|
return <Message {...props} direction="outgoing" />;
|
|
|
|
});
|
|
|
|
|
2020-08-27 16:57:12 +00:00
|
|
|
story.add('Error', () => {
|
|
|
|
const props = createProps({
|
|
|
|
status: 'error',
|
|
|
|
text: 'I hope you get this.',
|
|
|
|
});
|
|
|
|
|
|
|
|
return renderBothDirections(props);
|
|
|
|
});
|
|
|
|
|
|
|
|
story.add('Partial Send', () => {
|
|
|
|
const props = createProps({
|
|
|
|
status: 'partial-sent',
|
|
|
|
text: 'I hope you get this.',
|
|
|
|
});
|
|
|
|
|
|
|
|
return renderBothDirections(props);
|
|
|
|
});
|
|
|
|
|
|
|
|
story.add('Link Preview', () => {
|
|
|
|
const props = createProps({
|
|
|
|
previews: [
|
|
|
|
{
|
|
|
|
domain: 'signal.org',
|
|
|
|
image: {
|
|
|
|
contentType: IMAGE_PNG,
|
|
|
|
fileName: 'the-sax.png',
|
|
|
|
height: 240,
|
|
|
|
url: pngUrl,
|
|
|
|
width: 320,
|
2020-02-07 19:07:22 +00:00
|
|
|
},
|
2020-08-27 16:57:12 +00:00
|
|
|
isStickerPack: false,
|
|
|
|
title: 'Signal',
|
2020-08-29 01:27:45 +00:00
|
|
|
description:
|
|
|
|
'Say "hello" to a different messaging experience. An unexpected focus on privacy, combined with all of the features you expect.',
|
2020-08-27 16:57:12 +00:00
|
|
|
url: 'https://www.signal.org',
|
2020-08-29 01:27:45 +00:00
|
|
|
date: new Date(2020, 2, 10).valueOf(),
|
2020-08-27 16:57:12 +00:00
|
|
|
},
|
|
|
|
],
|
|
|
|
status: 'sent',
|
|
|
|
text: 'Be sure to look at https://www.signal.org',
|
|
|
|
});
|
|
|
|
|
|
|
|
return renderBothDirections(props);
|
|
|
|
});
|
|
|
|
|
|
|
|
story.add('Link Preview with Small Image', () => {
|
|
|
|
const props = createProps({
|
|
|
|
previews: [
|
|
|
|
{
|
|
|
|
domain: 'signal.org',
|
|
|
|
image: {
|
|
|
|
contentType: IMAGE_PNG,
|
|
|
|
fileName: 'the-sax.png',
|
|
|
|
height: 50,
|
|
|
|
url: pngUrl,
|
|
|
|
width: 50,
|
2020-02-07 19:07:22 +00:00
|
|
|
},
|
2020-08-27 16:57:12 +00:00
|
|
|
isStickerPack: false,
|
|
|
|
title: 'Signal',
|
2020-08-29 01:27:45 +00:00
|
|
|
description:
|
|
|
|
'Say "hello" to a different messaging experience. An unexpected focus on privacy, combined with all of the features you expect.',
|
2020-08-27 16:57:12 +00:00
|
|
|
url: 'https://www.signal.org',
|
2020-08-29 01:27:45 +00:00
|
|
|
date: new Date(2020, 2, 10).valueOf(),
|
2020-08-27 16:57:12 +00:00
|
|
|
},
|
|
|
|
],
|
|
|
|
status: 'sent',
|
|
|
|
text: 'Be sure to look at https://www.signal.org',
|
|
|
|
});
|
|
|
|
|
|
|
|
return renderBothDirections(props);
|
|
|
|
});
|
|
|
|
|
|
|
|
story.add('Link Preview without Image', () => {
|
|
|
|
const props = createProps({
|
|
|
|
previews: [
|
|
|
|
{
|
|
|
|
domain: 'signal.org',
|
|
|
|
isStickerPack: false,
|
|
|
|
title: 'Signal',
|
2020-08-29 01:27:45 +00:00
|
|
|
description:
|
|
|
|
'Say "hello" to a different messaging experience. An unexpected focus on privacy, combined with all of the features you expect.',
|
2020-08-27 16:57:12 +00:00
|
|
|
url: 'https://www.signal.org',
|
2020-08-29 01:27:45 +00:00
|
|
|
date: new Date(2020, 2, 10).valueOf(),
|
|
|
|
},
|
|
|
|
],
|
|
|
|
status: 'sent',
|
|
|
|
text: 'Be sure to look at https://www.signal.org',
|
|
|
|
});
|
|
|
|
|
|
|
|
return renderBothDirections(props);
|
|
|
|
});
|
|
|
|
|
|
|
|
story.add('Link Preview with no description', () => {
|
|
|
|
const props = createProps({
|
|
|
|
previews: [
|
|
|
|
{
|
|
|
|
domain: 'signal.org',
|
|
|
|
isStickerPack: false,
|
|
|
|
title: 'Signal',
|
|
|
|
url: 'https://www.signal.org',
|
|
|
|
date: Date.now(),
|
|
|
|
},
|
|
|
|
],
|
|
|
|
status: 'sent',
|
|
|
|
text: 'Be sure to look at https://www.signal.org',
|
|
|
|
});
|
|
|
|
|
|
|
|
return renderBothDirections(props);
|
|
|
|
});
|
|
|
|
|
|
|
|
story.add('Link Preview with long description', () => {
|
|
|
|
const props = createProps({
|
|
|
|
previews: [
|
|
|
|
{
|
|
|
|
domain: 'signal.org',
|
|
|
|
isStickerPack: false,
|
|
|
|
title: 'Signal',
|
|
|
|
description: Array(10)
|
|
|
|
.fill(
|
|
|
|
'Say "hello" to a different messaging experience. An unexpected focus on privacy, combined with all of the features you expect.'
|
|
|
|
)
|
|
|
|
.join(' '),
|
|
|
|
url: 'https://www.signal.org',
|
|
|
|
date: Date.now(),
|
|
|
|
},
|
|
|
|
],
|
|
|
|
status: 'sent',
|
|
|
|
text: 'Be sure to look at https://www.signal.org',
|
|
|
|
});
|
|
|
|
|
|
|
|
return renderBothDirections(props);
|
|
|
|
});
|
|
|
|
|
|
|
|
story.add('Link Preview with small image, long description', () => {
|
|
|
|
const props = createProps({
|
|
|
|
previews: [
|
|
|
|
{
|
|
|
|
domain: 'signal.org',
|
|
|
|
image: {
|
|
|
|
contentType: IMAGE_PNG,
|
|
|
|
fileName: 'the-sax.png',
|
|
|
|
height: 50,
|
|
|
|
url: pngUrl,
|
|
|
|
width: 50,
|
|
|
|
},
|
|
|
|
isStickerPack: false,
|
|
|
|
title: 'Signal',
|
|
|
|
description: Array(10)
|
|
|
|
.fill(
|
|
|
|
'Say "hello" to a different messaging experience. An unexpected focus on privacy, combined with all of the features you expect.'
|
|
|
|
)
|
|
|
|
.join(' '),
|
|
|
|
url: 'https://www.signal.org',
|
|
|
|
date: Date.now(),
|
|
|
|
},
|
|
|
|
],
|
|
|
|
status: 'sent',
|
|
|
|
text: 'Be sure to look at https://www.signal.org',
|
|
|
|
});
|
|
|
|
|
|
|
|
return renderBothDirections(props);
|
|
|
|
});
|
|
|
|
|
|
|
|
story.add('Link Preview with no date', () => {
|
|
|
|
const props = createProps({
|
|
|
|
previews: [
|
|
|
|
{
|
|
|
|
domain: 'signal.org',
|
|
|
|
image: {
|
|
|
|
contentType: IMAGE_PNG,
|
|
|
|
fileName: 'the-sax.png',
|
|
|
|
height: 240,
|
|
|
|
url: pngUrl,
|
|
|
|
width: 320,
|
|
|
|
},
|
|
|
|
isStickerPack: false,
|
|
|
|
title: 'Signal',
|
|
|
|
description:
|
|
|
|
'Say "hello" to a different messaging experience. An unexpected focus on privacy, combined with all of the features you expect.',
|
|
|
|
url: 'https://www.signal.org',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
status: 'sent',
|
|
|
|
text: 'Be sure to look at https://www.signal.org',
|
|
|
|
});
|
|
|
|
|
|
|
|
return renderBothDirections(props);
|
|
|
|
});
|
|
|
|
|
|
|
|
story.add('Link Preview with too new a date', () => {
|
|
|
|
const props = createProps({
|
|
|
|
previews: [
|
|
|
|
{
|
|
|
|
domain: 'signal.org',
|
|
|
|
image: {
|
|
|
|
contentType: IMAGE_PNG,
|
|
|
|
fileName: 'the-sax.png',
|
|
|
|
height: 240,
|
|
|
|
url: pngUrl,
|
|
|
|
width: 320,
|
|
|
|
},
|
|
|
|
isStickerPack: false,
|
|
|
|
title: 'Signal',
|
|
|
|
description:
|
|
|
|
'Say "hello" to a different messaging experience. An unexpected focus on privacy, combined with all of the features you expect.',
|
|
|
|
url: 'https://www.signal.org',
|
|
|
|
date: Date.now() + 3000000000,
|
2020-08-27 16:57:12 +00:00
|
|
|
},
|
2020-02-07 19:07:22 +00:00
|
|
|
],
|
2020-08-27 16:57:12 +00:00
|
|
|
status: 'sent',
|
|
|
|
text: 'Be sure to look at https://www.signal.org',
|
|
|
|
});
|
|
|
|
|
|
|
|
return renderBothDirections(props);
|
|
|
|
});
|
|
|
|
|
|
|
|
story.add('Image', () => {
|
|
|
|
const props = createProps({
|
|
|
|
attachments: [
|
2020-05-27 21:37:06 +00:00
|
|
|
{
|
2020-08-27 16:57:12 +00:00
|
|
|
url: '/fixtures/tina-rolf-269345-unsplash.jpg',
|
|
|
|
fileName: 'tina-rolf-269345-unsplash.jpg',
|
|
|
|
contentType: IMAGE_JPEG,
|
|
|
|
width: 128,
|
|
|
|
height: 128,
|
2020-05-27 21:37:06 +00:00
|
|
|
},
|
|
|
|
],
|
2020-08-27 16:57:12 +00:00
|
|
|
status: 'sent',
|
|
|
|
});
|
|
|
|
|
|
|
|
return renderBothDirections(props);
|
|
|
|
});
|
|
|
|
|
|
|
|
story.add('Image with Caption', () => {
|
|
|
|
const props = createProps({
|
|
|
|
attachments: [
|
2020-08-12 22:47:20 +00:00
|
|
|
{
|
2020-08-27 16:57:12 +00:00
|
|
|
url: '/fixtures/tina-rolf-269345-unsplash.jpg',
|
|
|
|
fileName: 'tina-rolf-269345-unsplash.jpg',
|
|
|
|
contentType: IMAGE_JPEG,
|
|
|
|
width: 128,
|
|
|
|
height: 128,
|
2020-08-12 22:47:20 +00:00
|
|
|
},
|
2020-08-27 16:57:12 +00:00
|
|
|
],
|
|
|
|
status: 'sent',
|
|
|
|
text: 'This is my home.',
|
|
|
|
});
|
|
|
|
|
|
|
|
return renderBothDirections(props);
|
|
|
|
});
|
|
|
|
|
|
|
|
story.add('Audio', () => {
|
|
|
|
const props = createProps({
|
|
|
|
attachments: [
|
2020-08-12 22:47:20 +00:00
|
|
|
{
|
2020-08-27 16:57:12 +00:00
|
|
|
contentType: AUDIO_MP3,
|
|
|
|
fileName: 'incompetech-com-Agnus-Dei-X.mp3',
|
|
|
|
url: '/fixtures/incompetech-com-Agnus-Dei-X.mp3',
|
2020-08-12 22:47:20 +00:00
|
|
|
},
|
|
|
|
],
|
2020-08-27 16:57:12 +00:00
|
|
|
status: 'sent',
|
|
|
|
});
|
2020-02-07 19:07:22 +00:00
|
|
|
|
2020-08-27 16:57:12 +00:00
|
|
|
return renderBothDirections(props);
|
|
|
|
});
|
2020-05-05 19:49:34 +00:00
|
|
|
|
2020-08-27 16:57:12 +00:00
|
|
|
story.add('Audio with Caption', () => {
|
|
|
|
const props = createProps({
|
|
|
|
attachments: [
|
|
|
|
{
|
|
|
|
contentType: AUDIO_MP3,
|
|
|
|
fileName: 'incompetech-com-Agnus-Dei-X.mp3',
|
|
|
|
url: '/fixtures/incompetech-com-Agnus-Dei-X.mp3',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
status: 'sent',
|
|
|
|
text: 'This is what I sound like.',
|
|
|
|
});
|
|
|
|
|
|
|
|
return renderBothDirections(props);
|
|
|
|
});
|
|
|
|
|
|
|
|
story.add('Other File Type', () => {
|
|
|
|
const props = createProps({
|
|
|
|
attachments: [
|
|
|
|
{
|
|
|
|
contentType: 'text/plain' as MIMEType,
|
|
|
|
fileName: 'my-resume.txt',
|
|
|
|
url: 'my-resume.txt',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
status: 'sent',
|
|
|
|
});
|
|
|
|
|
|
|
|
return renderBothDirections(props);
|
|
|
|
});
|
|
|
|
|
|
|
|
story.add('Other File Type with Caption', () => {
|
|
|
|
const props = createProps({
|
|
|
|
attachments: [
|
|
|
|
{
|
|
|
|
contentType: 'text/plain' as MIMEType,
|
|
|
|
fileName: 'my-resume.txt',
|
|
|
|
url: 'my-resume.txt',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
status: 'sent',
|
|
|
|
text: 'This is what I have done.',
|
|
|
|
});
|
|
|
|
|
|
|
|
return renderBothDirections(props);
|
|
|
|
});
|
|
|
|
|
2021-02-26 15:08:59 +00:00
|
|
|
story.add('Other File Type with Long Filename', () => {
|
|
|
|
const props = createProps({
|
|
|
|
attachments: [
|
|
|
|
{
|
|
|
|
contentType: 'text/plain' as MIMEType,
|
|
|
|
fileName:
|
|
|
|
'INSERT-APP-NAME_INSERT-APP-APPLE-ID_AppStore_AppsGamesWatch.psd.zip',
|
|
|
|
url: 'a2/a2334324darewer4234',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
status: 'sent',
|
|
|
|
text: 'This is what I have done.',
|
|
|
|
});
|
|
|
|
|
|
|
|
return renderBothDirections(props);
|
|
|
|
});
|
|
|
|
|
2020-08-27 16:57:12 +00:00
|
|
|
story.add('TapToView Image', () => {
|
|
|
|
const props = createProps({
|
|
|
|
attachments: [
|
|
|
|
{
|
|
|
|
url: '/fixtures/tina-rolf-269345-unsplash.jpg',
|
|
|
|
fileName: 'tina-rolf-269345-unsplash.jpg',
|
|
|
|
contentType: IMAGE_JPEG,
|
|
|
|
width: 128,
|
|
|
|
height: 128,
|
|
|
|
},
|
|
|
|
],
|
|
|
|
isTapToView: true,
|
|
|
|
status: 'sent',
|
|
|
|
});
|
|
|
|
|
|
|
|
return renderBothDirections(props);
|
|
|
|
});
|
|
|
|
|
|
|
|
story.add('TapToView Video', () => {
|
|
|
|
const props = createProps({
|
|
|
|
attachments: [
|
|
|
|
{
|
|
|
|
contentType: VIDEO_MP4,
|
|
|
|
fileName: 'pixabay-Soap-Bubble-7141.mp4',
|
|
|
|
height: 128,
|
|
|
|
url: '/fixtures/pixabay-Soap-Bubble-7141.mp4',
|
|
|
|
width: 128,
|
|
|
|
},
|
|
|
|
],
|
|
|
|
isTapToView: true,
|
|
|
|
status: 'sent',
|
|
|
|
});
|
|
|
|
|
|
|
|
return renderBothDirections(props);
|
|
|
|
});
|
|
|
|
|
|
|
|
story.add('TapToView Expired', () => {
|
|
|
|
const props = createProps({
|
|
|
|
attachments: [
|
|
|
|
{
|
|
|
|
url: '/fixtures/tina-rolf-269345-unsplash.jpg',
|
|
|
|
fileName: 'tina-rolf-269345-unsplash.jpg',
|
|
|
|
contentType: IMAGE_JPEG,
|
|
|
|
width: 128,
|
|
|
|
height: 128,
|
|
|
|
},
|
|
|
|
],
|
|
|
|
isTapToView: true,
|
|
|
|
isTapToViewExpired: true,
|
|
|
|
status: 'sent',
|
|
|
|
});
|
|
|
|
|
|
|
|
return renderBothDirections(props);
|
|
|
|
});
|
|
|
|
|
|
|
|
story.add('TapToView Error', () => {
|
|
|
|
const props = createProps({
|
|
|
|
attachments: [
|
|
|
|
{
|
|
|
|
url: '/fixtures/tina-rolf-269345-unsplash.jpg',
|
|
|
|
fileName: 'tina-rolf-269345-unsplash.jpg',
|
|
|
|
contentType: IMAGE_JPEG,
|
|
|
|
width: 128,
|
|
|
|
height: 128,
|
|
|
|
},
|
|
|
|
],
|
|
|
|
isTapToView: true,
|
|
|
|
isTapToViewError: true,
|
|
|
|
status: 'sent',
|
|
|
|
});
|
|
|
|
|
|
|
|
return <Message {...props} />;
|
|
|
|
});
|
|
|
|
|
|
|
|
story.add('Dangerous File Type', () => {
|
|
|
|
const props = createProps({
|
|
|
|
attachments: [
|
|
|
|
{
|
|
|
|
contentType: 'application/vnd.microsoft.portable-executable' as MIMEType,
|
|
|
|
fileName: 'terrible.exe',
|
|
|
|
url: 'terrible.exe',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
status: 'sent',
|
|
|
|
});
|
|
|
|
|
|
|
|
return renderBothDirections(props);
|
|
|
|
});
|
|
|
|
|
|
|
|
story.add('Colors', () => {
|
|
|
|
const defaultProps = createProps({
|
|
|
|
text:
|
|
|
|
'Hello there from a pal! I am sending a long message so that it will wrap a bit, since I like that look.',
|
|
|
|
});
|
|
|
|
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
{Colors.map(color => (
|
|
|
|
<Message {...defaultProps} authorColor={color} />
|
|
|
|
))}
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
});
|
2020-09-16 22:42:48 +00:00
|
|
|
|
|
|
|
story.add('@Mentions', () => {
|
|
|
|
const props = createProps({
|
|
|
|
bodyRanges: [
|
|
|
|
{
|
|
|
|
start: 0,
|
|
|
|
length: 1,
|
|
|
|
mentionUuid: 'zap',
|
|
|
|
replacementText: 'Zapp Brannigan',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
text: '\uFFFC This Is It. The Moment We Should Have Trained For.',
|
|
|
|
});
|
|
|
|
|
|
|
|
return renderBothDirections(props);
|
|
|
|
});
|
2020-10-21 18:26:35 +00:00
|
|
|
|
|
|
|
story.add('All the context menus', () => {
|
|
|
|
const props = createProps({
|
|
|
|
attachments: [
|
|
|
|
{
|
|
|
|
url: '/fixtures/tina-rolf-269345-unsplash.jpg',
|
|
|
|
fileName: 'tina-rolf-269345-unsplash.jpg',
|
|
|
|
contentType: IMAGE_JPEG,
|
|
|
|
width: 128,
|
|
|
|
height: 128,
|
|
|
|
},
|
|
|
|
],
|
|
|
|
status: 'partial-sent',
|
|
|
|
canDeleteForEveryone: true,
|
|
|
|
});
|
|
|
|
|
|
|
|
return <Message {...props} direction="outgoing" />;
|
|
|
|
});
|
2021-02-02 17:09:53 +00:00
|
|
|
|
|
|
|
story.add('Not approved, with link preview', () => {
|
|
|
|
const props = createProps({
|
|
|
|
previews: [
|
|
|
|
{
|
|
|
|
domain: 'signal.org',
|
|
|
|
image: {
|
|
|
|
contentType: IMAGE_PNG,
|
|
|
|
fileName: 'the-sax.png',
|
|
|
|
height: 240,
|
|
|
|
url: pngUrl,
|
|
|
|
width: 320,
|
|
|
|
},
|
|
|
|
isStickerPack: false,
|
|
|
|
title: 'Signal',
|
|
|
|
description:
|
|
|
|
'Say "hello" to a different messaging experience. An unexpected focus on privacy, combined with all of the features you expect.',
|
|
|
|
url: 'https://www.signal.org',
|
|
|
|
date: new Date(2020, 2, 10).valueOf(),
|
|
|
|
},
|
|
|
|
],
|
|
|
|
status: 'sent',
|
|
|
|
text: 'Be sure to look at https://www.signal.org',
|
|
|
|
isMessageRequestAccepted: false,
|
|
|
|
});
|
|
|
|
|
|
|
|
return renderBothDirections(props);
|
|
|
|
});
|