2021-05-07 22:21:10 +00:00
|
|
|
// Copyright 2020-2021 Signal Messenger, LLC
|
2020-11-20 17:30:45 +00:00
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
/* eslint-disable-next-line max-classes-per-file */
|
|
|
|
import * as React from 'react';
|
|
|
|
import { storiesOf } from '@storybook/react';
|
2020-12-01 23:45:39 +00:00
|
|
|
import { isBoolean } from 'lodash';
|
|
|
|
import { boolean } from '@storybook/addon-knobs';
|
2020-11-20 17:30:45 +00:00
|
|
|
|
2021-05-07 22:21:10 +00:00
|
|
|
import { getDefaultConversation } from '../../test-both/helpers/getDefaultConversation';
|
2021-09-18 00:30:08 +00:00
|
|
|
import { setupI18n } from '../../util/setupI18n';
|
2020-11-20 17:30:45 +00:00
|
|
|
import enMessages from '../../../_locales/en/messages.json';
|
2021-10-26 19:15:33 +00:00
|
|
|
import type { PropsType } from './GroupV1Migration';
|
|
|
|
import { GroupV1Migration } from './GroupV1Migration';
|
2021-11-20 15:41:21 +00:00
|
|
|
import { ThemeType } from '../../types/Util';
|
2020-11-20 17:30:45 +00:00
|
|
|
|
|
|
|
const i18n = setupI18n('en', enMessages);
|
|
|
|
|
2021-05-07 22:21:10 +00:00
|
|
|
const contact1 = getDefaultConversation({
|
2020-11-20 17:30:45 +00:00
|
|
|
title: 'Alice',
|
2021-05-07 22:21:10 +00:00
|
|
|
phoneNumber: '+1 (300) 555-000',
|
2020-11-20 17:30:45 +00:00
|
|
|
id: 'guid-1',
|
2021-05-07 22:21:10 +00:00
|
|
|
});
|
2020-11-20 17:30:45 +00:00
|
|
|
|
2021-05-07 22:21:10 +00:00
|
|
|
const contact2 = getDefaultConversation({
|
2020-11-20 17:30:45 +00:00
|
|
|
title: 'Bob',
|
2021-05-07 22:21:10 +00:00
|
|
|
phoneNumber: '+1 (300) 555-000',
|
2020-11-20 17:30:45 +00:00
|
|
|
id: 'guid-2',
|
2021-05-07 22:21:10 +00:00
|
|
|
});
|
2020-11-20 17:30:45 +00:00
|
|
|
|
|
|
|
const createProps = (overrideProps: Partial<PropsType> = {}): PropsType => ({
|
2020-12-01 23:45:39 +00:00
|
|
|
areWeInvited: boolean(
|
|
|
|
'areWeInvited',
|
|
|
|
isBoolean(overrideProps.areWeInvited) ? overrideProps.areWeInvited : false
|
|
|
|
),
|
2020-11-20 17:30:45 +00:00
|
|
|
droppedMembers: overrideProps.droppedMembers || [contact1],
|
2021-11-20 15:41:21 +00:00
|
|
|
getPreferredBadge: () => undefined,
|
2020-11-20 17:30:45 +00:00
|
|
|
i18n,
|
|
|
|
invitedMembers: overrideProps.invitedMembers || [contact2],
|
2021-11-20 15:41:21 +00:00
|
|
|
theme: ThemeType.light,
|
2020-11-20 17:30:45 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
const stories = storiesOf('Components/Conversation/GroupV1Migration', module);
|
|
|
|
|
2020-12-01 23:45:39 +00:00
|
|
|
stories.add('You were invited', () => (
|
|
|
|
<GroupV1Migration
|
|
|
|
{...createProps({
|
|
|
|
areWeInvited: true,
|
|
|
|
})}
|
|
|
|
/>
|
|
|
|
));
|
|
|
|
|
2020-11-20 17:30:45 +00:00
|
|
|
stories.add('Single dropped and single invited member', () => (
|
|
|
|
<GroupV1Migration {...createProps()} />
|
|
|
|
));
|
|
|
|
|
|
|
|
stories.add('Multiple dropped and invited members', () => (
|
|
|
|
<GroupV1Migration
|
|
|
|
{...createProps({
|
|
|
|
invitedMembers: [contact1, contact2],
|
|
|
|
droppedMembers: [contact1, contact2],
|
|
|
|
})}
|
|
|
|
/>
|
|
|
|
));
|
|
|
|
|
|
|
|
stories.add('Just invited members', () => (
|
|
|
|
<GroupV1Migration
|
|
|
|
{...createProps({
|
|
|
|
invitedMembers: [contact1, contact1, contact2, contact2],
|
|
|
|
droppedMembers: [],
|
|
|
|
})}
|
|
|
|
/>
|
|
|
|
));
|
|
|
|
|
|
|
|
stories.add('Just dropped members', () => (
|
|
|
|
<GroupV1Migration
|
|
|
|
{...createProps({
|
|
|
|
invitedMembers: [],
|
|
|
|
droppedMembers: [contact1, contact1, contact2, contact2],
|
|
|
|
})}
|
|
|
|
/>
|
|
|
|
));
|
|
|
|
|
|
|
|
stories.add('No dropped or invited members', () => (
|
|
|
|
<GroupV1Migration
|
|
|
|
{...createProps({
|
|
|
|
invitedMembers: [],
|
|
|
|
droppedMembers: [],
|
|
|
|
})}
|
|
|
|
/>
|
|
|
|
));
|