502ea174ab
Co-authored-by: Scott Nonnenberg <scott@signal.org>
109 lines
3 KiB
TypeScript
109 lines
3 KiB
TypeScript
// Copyright 2020 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
import type { Meta, StoryFn } from '@storybook/react';
|
|
import * as React from 'react';
|
|
import casual from 'casual';
|
|
import { action } from '@storybook/addon-actions';
|
|
import type { ConversationType } from '../../state/ducks/conversations';
|
|
import type { PropsType } from './ContactModal';
|
|
import enMessages from '../../../_locales/en/messages.json';
|
|
import { ContactModal } from './ContactModal';
|
|
import { HasStories } from '../../types/Stories';
|
|
import { ThemeType } from '../../types/Util';
|
|
import { getDefaultConversation } from '../../test-both/helpers/getDefaultConversation';
|
|
import { getFakeBadges } from '../../test-both/helpers/getFakeBadge';
|
|
import { setupI18n } from '../../util/setupI18n';
|
|
|
|
const i18n = setupI18n('en', enMessages);
|
|
|
|
const defaultContact: ConversationType = getDefaultConversation({
|
|
about: '👍 Free to chat',
|
|
});
|
|
|
|
const defaultGroup: ConversationType = getDefaultConversation({
|
|
areWeAdmin: true,
|
|
groupLink: casual.url,
|
|
title: casual.title,
|
|
type: 'group',
|
|
});
|
|
|
|
export default {
|
|
title: 'Components/Conversation/ContactModal',
|
|
component: ContactModal,
|
|
args: {
|
|
i18n,
|
|
areWeASubscriber: false,
|
|
areWeAdmin: false,
|
|
badges: [],
|
|
contact: defaultContact,
|
|
conversation: defaultGroup,
|
|
hasStories: undefined,
|
|
hideContactModal: action('hideContactModal'),
|
|
isAdmin: false,
|
|
isMember: true,
|
|
removeMemberFromGroup: action('removeMemberFromGroup'),
|
|
showConversation: action('showConversation'),
|
|
theme: ThemeType.light,
|
|
toggleAdmin: action('toggleAdmin'),
|
|
toggleSafetyNumberModal: action('toggleSafetyNumberModal'),
|
|
updateConversationModelSharedGroups: action(
|
|
'updateConversationModelSharedGroups'
|
|
),
|
|
viewUserStories: action('viewUserStories'),
|
|
},
|
|
} satisfies Meta<PropsType>;
|
|
|
|
// eslint-disable-next-line react/function-component-definition
|
|
const Template: StoryFn<PropsType> = args => <ContactModal {...args} />;
|
|
|
|
export const AsNonAdmin = Template.bind({});
|
|
AsNonAdmin.args = {
|
|
areWeAdmin: false,
|
|
};
|
|
|
|
export const AsAdmin = Template.bind({});
|
|
AsAdmin.args = {
|
|
areWeAdmin: true,
|
|
};
|
|
|
|
export const AsAdminWithNoGroupLink = Template.bind({});
|
|
AsAdminWithNoGroupLink.args = {
|
|
areWeAdmin: true,
|
|
conversation: {
|
|
...defaultGroup,
|
|
groupLink: undefined,
|
|
},
|
|
};
|
|
|
|
export const AsAdminViewingNonMemberOfGroup = Template.bind({});
|
|
AsAdminViewingNonMemberOfGroup.args = {
|
|
isMember: false,
|
|
};
|
|
|
|
export const WithoutPhoneNumber = Template.bind({});
|
|
WithoutPhoneNumber.args = {
|
|
contact: {
|
|
...defaultContact,
|
|
phoneNumber: undefined,
|
|
},
|
|
};
|
|
|
|
export const ViewingSelf = Template.bind({});
|
|
ViewingSelf.args = {
|
|
contact: {
|
|
...defaultContact,
|
|
isMe: true,
|
|
},
|
|
};
|
|
|
|
export const WithBadges = Template.bind({});
|
|
WithBadges.args = {
|
|
badges: getFakeBadges(2),
|
|
};
|
|
|
|
export const WithUnreadStories = Template.bind({});
|
|
WithUnreadStories.args = {
|
|
hasStories: HasStories.Unread,
|
|
};
|
|
WithUnreadStories.storyName = 'Unread Stories';
|