41 lines
1.2 KiB
TypeScript
41 lines
1.2 KiB
TypeScript
// Copyright 2021 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
import React from 'react';
|
|
|
|
import { storiesOf } from '@storybook/react';
|
|
import { action } from '@storybook/addon-actions';
|
|
|
|
import { NewlyCreatedGroupInvitedContactsDialog } from './NewlyCreatedGroupInvitedContactsDialog';
|
|
import { setupI18n } from '../util/setupI18n';
|
|
import enMessages from '../../_locales/en/messages.json';
|
|
import type { ConversationType } from '../state/ducks/conversations';
|
|
import { getDefaultConversation } from '../test-both/helpers/getDefaultConversation';
|
|
|
|
const i18n = setupI18n('en', enMessages);
|
|
|
|
const conversations: Array<ConversationType> = [
|
|
getDefaultConversation({ title: 'Fred Willard' }),
|
|
getDefaultConversation({ title: 'Marc Barraca' }),
|
|
];
|
|
|
|
const story = storiesOf(
|
|
'Components/NewlyCreatedGroupInvitedContactsDialog',
|
|
module
|
|
);
|
|
|
|
story.add('One contact', () => (
|
|
<NewlyCreatedGroupInvitedContactsDialog
|
|
contacts={[conversations[0]]}
|
|
i18n={i18n}
|
|
onClose={action('onClose')}
|
|
/>
|
|
));
|
|
|
|
story.add('Two contacts', () => (
|
|
<NewlyCreatedGroupInvitedContactsDialog
|
|
contacts={conversations}
|
|
i18n={i18n}
|
|
onClose={action('onClose')}
|
|
/>
|
|
));
|