Signal-Desktop/ts/components/LeftPane.stories.tsx

629 lines
16 KiB
TypeScript
Raw Normal View History

// Copyright 2020-2021 Signal Messenger, LLC
2020-10-30 20:34:04 +00:00
// SPDX-License-Identifier: AGPL-3.0-only
2020-08-21 16:09:39 +00:00
import * as React from 'react';
import { action } from '@storybook/addon-actions';
import { select } from '@storybook/addon-knobs';
2020-08-21 16:09:39 +00:00
import { storiesOf } from '@storybook/react';
import type { PropsType } from './LeftPane';
import { LeftPane, LeftPaneMode } from './LeftPane';
import { CaptchaDialog } from './CaptchaDialog';
import type { ConversationType } from '../state/ducks/conversations';
import { MessageSearchResult } from './conversationList/MessageSearchResult';
2021-09-18 00:30:08 +00:00
import { setupI18n } from '../util/setupI18n';
2020-08-21 16:09:39 +00:00
import enMessages from '../../_locales/en/messages.json';
2021-05-07 22:21:10 +00:00
import { getDefaultConversation } from '../test-both/helpers/getDefaultConversation';
2021-11-02 23:01:13 +00:00
import { StorybookThemeContext } from '../../.storybook/StorybookThemeContext';
2020-09-12 00:46:52 +00:00
2020-08-21 16:09:39 +00:00
const i18n = setupI18n('en', enMessages);
const story = storiesOf('Components/LeftPane', module);
2021-05-07 22:21:10 +00:00
const defaultConversations: Array<ConversationType> = [
getDefaultConversation({
2020-08-21 16:09:39 +00:00
id: 'fred-convo',
title: 'Fred Willard',
2021-05-07 22:21:10 +00:00
}),
getDefaultConversation({
2020-08-21 16:09:39 +00:00
id: 'marc-convo',
isSelected: true,
title: 'Marc Barraca',
2021-05-07 22:21:10 +00:00
}),
2020-08-21 16:09:39 +00:00
];
2021-05-07 22:21:10 +00:00
const defaultGroups: Array<ConversationType> = [
getDefaultConversation({
id: 'biking-group',
title: 'Mtn Biking Arizona 🚵☀️⛰',
type: 'group',
2021-05-07 22:21:10 +00:00
sharedGroupNames: [],
}),
getDefaultConversation({
id: 'dance-group',
title: 'Are we dancers? 💃',
type: 'group',
2021-05-07 22:21:10 +00:00
sharedGroupNames: [],
}),
];
2021-05-07 22:21:10 +00:00
const defaultArchivedConversations: Array<ConversationType> = [
getDefaultConversation({
2020-08-21 16:09:39 +00:00
id: 'michelle-archive-convo',
title: 'Michelle Mercure',
2021-05-07 22:21:10 +00:00
isArchived: true,
}),
2020-08-21 16:09:39 +00:00
];
2021-05-07 22:21:10 +00:00
const pinnedConversations: Array<ConversationType> = [
getDefaultConversation({
id: 'philly-convo',
isPinned: true,
title: 'Philip Glass',
2021-05-07 22:21:10 +00:00
}),
getDefaultConversation({
id: 'robbo-convo',
isPinned: true,
title: 'Robert Moog',
2021-05-07 22:21:10 +00:00
}),
];
const defaultModeSpecificProps = {
mode: LeftPaneMode.Inbox as const,
pinnedConversations,
conversations: defaultConversations,
archivedConversations: defaultArchivedConversations,
isAboutToSearchInAConversation: false,
startSearchCounter: 0,
};
const emptySearchResultsGroup = { isLoading: false, results: [] };
2021-11-02 23:01:13 +00:00
const useProps = (overrideProps: Partial<PropsType> = {}): PropsType => ({
badgesById: {},
2021-03-03 20:09:58 +00:00
cantAddContactToGroup: action('cantAddContactToGroup'),
canResizeLeftPane: true,
2021-03-03 20:09:58 +00:00
clearGroupCreationError: action('clearGroupCreationError'),
2021-11-01 18:43:02 +00:00
clearSearch: action('clearSearch'),
2021-03-03 20:09:58 +00:00
closeCantAddContactToGroupModal: action('closeCantAddContactToGroupModal'),
closeMaximumGroupSizeModal: action('closeMaximumGroupSizeModal'),
closeRecommendedGroupSizeModal: action('closeRecommendedGroupSizeModal'),
2021-08-06 00:17:05 +00:00
composeDeleteAvatarFromDisk: action('composeDeleteAvatarFromDisk'),
composeReplaceAvatar: action('composeReplaceAvatar'),
composeSaveAvatarToDisk: action('composeSaveAvatarToDisk'),
2021-03-03 20:09:58 +00:00
createGroup: action('createGroup'),
2020-08-21 16:09:39 +00:00
i18n,
modeSpecificProps: defaultModeSpecificProps,
preferredWidthFromStorage: 320,
2020-08-21 16:09:39 +00:00
openConversationInternal: action('openConversationInternal'),
regionCode: 'US',
challengeStatus: select(
'challengeStatus',
['idle', 'required', 'pending'],
'idle'
),
setChallengeStatus: action('setChallengeStatus'),
2020-08-21 16:09:39 +00:00
renderExpiredBuildDialog: () => <div />,
renderMainHeader: () => <div />,
2021-08-11 16:23:21 +00:00
renderMessageSearchResult: (id: string) => (
<MessageSearchResult
body="Lorem ipsum wow"
bodyRanges={[]}
conversationId="marc-convo"
from={defaultConversations[0]}
i18n={i18n}
id={id}
openConversationInternal={action('openConversationInternal')}
sentAt={1587358800000}
snippet="Lorem <<left>>ipsum<<right>> wow"
to={defaultConversations[1]}
/>
),
2020-08-21 16:09:39 +00:00
renderNetworkStatus: () => <div />,
renderRelinkDialog: () => <div />,
renderUpdateDialog: () => <div />,
renderCaptchaDialog: () => (
<CaptchaDialog
i18n={i18n}
isPending={overrideProps.challengeStatus === 'pending'}
onContinue={action('onCaptchaContinue')}
onSkip={action('onCaptchaSkip')}
/>
),
selectedConversationId: undefined,
selectedMessageId: undefined,
savePreferredLeftPaneWidth: action('savePreferredLeftPaneWidth'),
2021-11-01 18:43:02 +00:00
searchInConversation: action('searchInConversation'),
setComposeSearchTerm: action('setComposeSearchTerm'),
2021-03-03 20:09:58 +00:00
setComposeGroupAvatar: action('setComposeGroupAvatar'),
setComposeGroupName: action('setComposeGroupName'),
setComposeGroupExpireTimer: action('setComposeGroupExpireTimer'),
2020-08-21 16:09:39 +00:00
showArchivedConversations: action('showArchivedConversations'),
showInbox: action('showInbox'),
startComposing: action('startComposing'),
2021-03-03 20:09:58 +00:00
showChooseGroupMembers: action('showChooseGroupMembers'),
startNewConversationFromPhoneNumber: action(
'startNewConversationFromPhoneNumber'
),
2021-11-01 18:43:02 +00:00
startSearch: action('startSearch'),
2021-03-03 20:09:58 +00:00
startSettingGroupMetadata: action('startSettingGroupMetadata'),
2021-11-02 23:01:13 +00:00
theme: React.useContext(StorybookThemeContext),
2021-08-06 00:17:05 +00:00
toggleComposeEditingAvatar: action('toggleComposeEditingAvatar'),
2021-03-03 20:09:58 +00:00
toggleConversationInChooseMembers: action(
'toggleConversationInChooseMembers'
),
2021-11-01 18:43:02 +00:00
updateSearchTerm: action('updateSearchTerm'),
...overrideProps,
2020-08-21 16:09:39 +00:00
});
// Inbox stories
2020-08-21 16:09:39 +00:00
story.add('Inbox: no conversations', () => (
<LeftPane
2021-11-02 23:01:13 +00:00
{...useProps({
modeSpecificProps: {
mode: LeftPaneMode.Inbox,
pinnedConversations: [],
conversations: [],
archivedConversations: [],
isAboutToSearchInAConversation: false,
startSearchCounter: 0,
},
})}
/>
));
2020-08-21 16:09:39 +00:00
story.add('Inbox: only pinned conversations', () => (
<LeftPane
2021-11-02 23:01:13 +00:00
{...useProps({
modeSpecificProps: {
mode: LeftPaneMode.Inbox,
pinnedConversations,
conversations: [],
archivedConversations: [],
isAboutToSearchInAConversation: false,
startSearchCounter: 0,
},
})}
/>
));
story.add('Inbox: only non-pinned conversations', () => (
<LeftPane
2021-11-02 23:01:13 +00:00
{...useProps({
modeSpecificProps: {
mode: LeftPaneMode.Inbox,
pinnedConversations: [],
conversations: defaultConversations,
archivedConversations: [],
isAboutToSearchInAConversation: false,
startSearchCounter: 0,
},
})}
/>
));
story.add('Inbox: only archived conversations', () => (
<LeftPane
2021-11-02 23:01:13 +00:00
{...useProps({
modeSpecificProps: {
mode: LeftPaneMode.Inbox,
pinnedConversations: [],
conversations: [],
archivedConversations: defaultArchivedConversations,
isAboutToSearchInAConversation: false,
startSearchCounter: 0,
},
})}
/>
));
story.add('Inbox: pinned and archived conversations', () => (
<LeftPane
2021-11-02 23:01:13 +00:00
{...useProps({
modeSpecificProps: {
mode: LeftPaneMode.Inbox,
pinnedConversations,
conversations: [],
archivedConversations: defaultArchivedConversations,
isAboutToSearchInAConversation: false,
startSearchCounter: 0,
},
})}
/>
));
story.add('Inbox: non-pinned and archived conversations', () => (
<LeftPane
2021-11-02 23:01:13 +00:00
{...useProps({
modeSpecificProps: {
mode: LeftPaneMode.Inbox,
pinnedConversations: [],
conversations: defaultConversations,
archivedConversations: defaultArchivedConversations,
isAboutToSearchInAConversation: false,
startSearchCounter: 0,
},
})}
/>
));
2020-08-21 16:09:39 +00:00
story.add('Inbox: pinned and non-pinned conversations', () => (
<LeftPane
2021-11-02 23:01:13 +00:00
{...useProps({
modeSpecificProps: {
mode: LeftPaneMode.Inbox,
pinnedConversations,
conversations: defaultConversations,
archivedConversations: [],
isAboutToSearchInAConversation: false,
startSearchCounter: 0,
},
})}
/>
));
story.add('Inbox: pinned, non-pinned, and archived conversations', () => (
2021-11-02 23:01:13 +00:00
<LeftPane {...useProps()} />
));
// Search stories
story.add('Search: no results when searching everywhere', () => (
<LeftPane
2021-11-02 23:01:13 +00:00
{...useProps({
modeSpecificProps: {
mode: LeftPaneMode.Search,
conversationResults: emptySearchResultsGroup,
contactResults: emptySearchResultsGroup,
messageResults: emptySearchResultsGroup,
searchTerm: 'foo bar',
primarySendsSms: false,
},
})}
/>
));
story.add('Search: no results when searching everywhere (SMS)', () => (
<LeftPane
2021-11-02 23:01:13 +00:00
{...useProps({
modeSpecificProps: {
mode: LeftPaneMode.Search,
conversationResults: emptySearchResultsGroup,
contactResults: emptySearchResultsGroup,
messageResults: emptySearchResultsGroup,
searchTerm: 'foo bar',
primarySendsSms: true,
},
})}
/>
));
story.add('Search: no results when searching in a conversation', () => (
<LeftPane
2021-11-02 23:01:13 +00:00
{...useProps({
modeSpecificProps: {
mode: LeftPaneMode.Search,
conversationResults: emptySearchResultsGroup,
contactResults: emptySearchResultsGroup,
messageResults: emptySearchResultsGroup,
searchConversationName: 'Bing Bong',
searchTerm: 'foo bar',
primarySendsSms: false,
},
})}
/>
));
story.add('Search: all results loading', () => (
<LeftPane
2021-11-02 23:01:13 +00:00
{...useProps({
modeSpecificProps: {
mode: LeftPaneMode.Search,
conversationResults: { isLoading: true },
contactResults: { isLoading: true },
messageResults: { isLoading: true },
searchTerm: 'foo bar',
primarySendsSms: false,
},
})}
/>
));
story.add('Search: some results loading', () => (
<LeftPane
2021-11-02 23:01:13 +00:00
{...useProps({
modeSpecificProps: {
mode: LeftPaneMode.Search,
conversationResults: {
isLoading: false,
results: defaultConversations,
2020-08-21 16:09:39 +00:00
},
contactResults: { isLoading: true },
messageResults: { isLoading: true },
searchTerm: 'foo bar',
primarySendsSms: false,
},
})}
/>
));
story.add('Search: has conversations and contacts, but not messages', () => (
<LeftPane
2021-11-02 23:01:13 +00:00
{...useProps({
modeSpecificProps: {
mode: LeftPaneMode.Search,
conversationResults: {
isLoading: false,
results: defaultConversations,
2020-08-21 16:09:39 +00:00
},
contactResults: { isLoading: false, results: defaultConversations },
messageResults: { isLoading: false, results: [] },
searchTerm: 'foo bar',
primarySendsSms: false,
},
})}
/>
));
story.add('Search: all results', () => (
<LeftPane
2021-11-02 23:01:13 +00:00
{...useProps({
modeSpecificProps: {
mode: LeftPaneMode.Search,
conversationResults: {
isLoading: false,
results: defaultConversations,
2020-08-21 16:09:39 +00:00
},
contactResults: { isLoading: false, results: defaultConversations },
messageResults: {
isLoading: false,
results: [
{ id: 'msg1', conversationId: 'foo' },
{ id: 'msg2', conversationId: 'bar' },
],
2020-08-21 16:09:39 +00:00
},
searchTerm: 'foo bar',
primarySendsSms: false,
},
})}
/>
));
// Archived stories
story.add('Archive: no archived conversations', () => (
<LeftPane
2021-11-02 23:01:13 +00:00
{...useProps({
modeSpecificProps: {
mode: LeftPaneMode.Archive,
archivedConversations: [],
2021-11-01 18:43:02 +00:00
searchConversation: undefined,
searchTerm: '',
},
})}
/>
));
story.add('Archive: archived conversations', () => (
<LeftPane
2021-11-02 23:01:13 +00:00
{...useProps({
modeSpecificProps: {
mode: LeftPaneMode.Archive,
archivedConversations: defaultConversations,
2021-11-01 18:43:02 +00:00
searchConversation: undefined,
searchTerm: '',
},
})}
/>
));
story.add('Archive: searching a conversation', () => (
<LeftPane
2021-11-02 23:01:13 +00:00
{...useProps({
2021-11-01 18:43:02 +00:00
modeSpecificProps: {
mode: LeftPaneMode.Archive,
archivedConversations: defaultConversations,
searchConversation: defaultConversations[0],
searchTerm: 'foo bar',
conversationResults: { isLoading: true },
contactResults: { isLoading: true },
messageResults: { isLoading: true },
primarySendsSms: false,
},
})}
/>
));
// Compose stories
story.add('Compose: no contacts or groups', () => (
<LeftPane
2021-11-02 23:01:13 +00:00
{...useProps({
modeSpecificProps: {
mode: LeftPaneMode.Compose,
composeContacts: [],
composeGroups: [],
regionCode: 'US',
searchTerm: '',
},
})}
/>
));
story.add('Compose: some contacts, no groups, no search term', () => (
<LeftPane
2021-11-02 23:01:13 +00:00
{...useProps({
modeSpecificProps: {
mode: LeftPaneMode.Compose,
composeContacts: defaultConversations,
composeGroups: [],
regionCode: 'US',
searchTerm: '',
},
})}
/>
));
story.add('Compose: some contacts, no groups, with a search term', () => (
<LeftPane
2021-11-02 23:01:13 +00:00
{...useProps({
modeSpecificProps: {
mode: LeftPaneMode.Compose,
composeContacts: defaultConversations,
composeGroups: [],
regionCode: 'US',
searchTerm: 'ar',
},
})}
/>
));
story.add('Compose: some groups, no contacts, no search term', () => (
<LeftPane
2021-11-02 23:01:13 +00:00
{...useProps({
modeSpecificProps: {
mode: LeftPaneMode.Compose,
composeContacts: [],
composeGroups: defaultGroups,
regionCode: 'US',
searchTerm: '',
},
})}
/>
));
story.add('Compose: some groups, no contacts, with search term', () => (
<LeftPane
2021-11-02 23:01:13 +00:00
{...useProps({
modeSpecificProps: {
mode: LeftPaneMode.Compose,
composeContacts: [],
composeGroups: defaultGroups,
regionCode: 'US',
searchTerm: 'ar',
},
})}
/>
));
story.add('Compose: some contacts, some groups, no search term', () => (
<LeftPane
2021-11-02 23:01:13 +00:00
{...useProps({
modeSpecificProps: {
mode: LeftPaneMode.Compose,
composeContacts: defaultConversations,
composeGroups: defaultGroups,
regionCode: 'US',
searchTerm: '',
},
})}
/>
));
story.add('Compose: some contacts, some groups, with a search term', () => (
<LeftPane
2021-11-02 23:01:13 +00:00
{...useProps({
modeSpecificProps: {
mode: LeftPaneMode.Compose,
composeContacts: defaultConversations,
composeGroups: defaultGroups,
regionCode: 'US',
searchTerm: 'ar',
},
})}
/>
));
// Captcha flow
story.add('Captcha dialog: required', () => (
<LeftPane
2021-11-02 23:01:13 +00:00
{...useProps({
modeSpecificProps: {
mode: LeftPaneMode.Inbox,
pinnedConversations,
conversations: defaultConversations,
archivedConversations: [],
isAboutToSearchInAConversation: false,
startSearchCounter: 0,
},
challengeStatus: 'required',
})}
/>
));
story.add('Captcha dialog: pending', () => (
<LeftPane
2021-11-02 23:01:13 +00:00
{...useProps({
modeSpecificProps: {
mode: LeftPaneMode.Inbox,
pinnedConversations,
conversations: defaultConversations,
archivedConversations: [],
isAboutToSearchInAConversation: false,
startSearchCounter: 0,
},
challengeStatus: 'pending',
})}
/>
));
// Set group metadata
story.add('Group Metadata: No Timer', () => (
<LeftPane
2021-11-02 23:01:13 +00:00
{...useProps({
modeSpecificProps: {
mode: LeftPaneMode.SetGroupMetadata,
groupAvatar: undefined,
groupName: 'Group 1',
groupExpireTimer: 0,
hasError: false,
isCreating: false,
2021-08-06 00:17:05 +00:00
isEditingAvatar: false,
selectedContacts: defaultConversations,
2021-08-06 00:17:05 +00:00
userAvatarData: [],
},
})}
/>
));
story.add('Group Metadata: Regular Timer', () => (
<LeftPane
2021-11-02 23:01:13 +00:00
{...useProps({
modeSpecificProps: {
mode: LeftPaneMode.SetGroupMetadata,
groupAvatar: undefined,
groupName: 'Group 1',
groupExpireTimer: 24 * 3600,
hasError: false,
isCreating: false,
2021-08-06 00:17:05 +00:00
isEditingAvatar: false,
selectedContacts: defaultConversations,
2021-08-06 00:17:05 +00:00
userAvatarData: [],
},
})}
/>
));
story.add('Group Metadata: Custom Timer', () => (
<LeftPane
2021-11-02 23:01:13 +00:00
{...useProps({
modeSpecificProps: {
mode: LeftPaneMode.SetGroupMetadata,
groupAvatar: undefined,
groupName: 'Group 1',
groupExpireTimer: 7 * 3600,
hasError: false,
isCreating: false,
2021-08-06 00:17:05 +00:00
isEditingAvatar: false,
selectedContacts: defaultConversations,
2021-08-06 00:17:05 +00:00
userAvatarData: [],
},
})}
/>
));