101 lines
2.8 KiB
TypeScript
101 lines
2.8 KiB
TypeScript
// Copyright 2020-2021 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
import * as React from 'react';
|
|
|
|
import { action } from '@storybook/addon-actions';
|
|
import { boolean } from '@storybook/addon-knobs';
|
|
import { storiesOf } from '@storybook/react';
|
|
|
|
import { getDefaultConversation } from '../../test-both/helpers/getDefaultConversation';
|
|
import type { PropsType } from './ContactModal';
|
|
import { ContactModal } from './ContactModal';
|
|
import { setupI18n } from '../../util/setupI18n';
|
|
import enMessages from '../../../_locales/en/messages.json';
|
|
import type { ConversationType } from '../../state/ducks/conversations';
|
|
import { getFakeBadges } from '../../test-both/helpers/getFakeBadge';
|
|
import { ThemeType } from '../../types/Util';
|
|
|
|
const i18n = setupI18n('en', enMessages);
|
|
|
|
const story = storiesOf('Components/Conversation/ContactModal', module);
|
|
|
|
const defaultContact: ConversationType = getDefaultConversation({
|
|
id: 'abcdef',
|
|
areWeAdmin: false,
|
|
title: 'Pauline Oliveros',
|
|
phoneNumber: '(333) 444-5515',
|
|
about: '👍 Free to chat',
|
|
});
|
|
|
|
const createProps = (overrideProps: Partial<PropsType> = {}): PropsType => ({
|
|
areWeASubscriber: false,
|
|
areWeAdmin: boolean('areWeAdmin', overrideProps.areWeAdmin || false),
|
|
badges: overrideProps.badges || [],
|
|
contact: overrideProps.contact || defaultContact,
|
|
hideContactModal: action('hideContactModal'),
|
|
i18n,
|
|
isAdmin: boolean('isAdmin', overrideProps.isAdmin || false),
|
|
isMember: boolean('isMember', overrideProps.isMember || true),
|
|
openConversationInternal: action('openConversationInternal'),
|
|
removeMemberFromGroup: action('removeMemberFromGroup'),
|
|
theme: ThemeType.light,
|
|
toggleSafetyNumberModal: action('toggleSafetyNumberModal'),
|
|
toggleAdmin: action('toggleAdmin'),
|
|
updateConversationModelSharedGroups: action(
|
|
'updateConversationModelSharedGroups'
|
|
),
|
|
});
|
|
|
|
story.add('As non-admin', () => {
|
|
const props = createProps({
|
|
areWeAdmin: false,
|
|
});
|
|
|
|
return <ContactModal {...props} />;
|
|
});
|
|
|
|
story.add('As admin', () => {
|
|
const props = createProps({
|
|
areWeAdmin: true,
|
|
});
|
|
return <ContactModal {...props} />;
|
|
});
|
|
|
|
story.add('As admin, viewing non-member of group', () => {
|
|
const props = createProps({
|
|
isMember: false,
|
|
});
|
|
|
|
return <ContactModal {...props} />;
|
|
});
|
|
|
|
story.add('Without phone number', () => {
|
|
const props = createProps({
|
|
contact: {
|
|
...defaultContact,
|
|
phoneNumber: undefined,
|
|
},
|
|
});
|
|
|
|
return <ContactModal {...props} />;
|
|
});
|
|
|
|
story.add('Viewing self', () => {
|
|
const props = createProps({
|
|
contact: {
|
|
...defaultContact,
|
|
isMe: true,
|
|
},
|
|
});
|
|
|
|
return <ContactModal {...props} />;
|
|
});
|
|
|
|
story.add('With badges', () => {
|
|
const props = createProps({
|
|
badges: getFakeBadges(2),
|
|
});
|
|
|
|
return <ContactModal {...props} />;
|
|
});
|