// Copyright 2021 Signal Messenger, LLC // SPDX-License-Identifier: AGPL-3.0-only import React from 'react'; import { times } from 'lodash'; import { action } from '@storybook/addon-actions'; import { setupI18n } from '../../util/setupI18n'; import enMessages from '../../../_locales/en/messages.json'; import { getDefaultConversation } from '../../test-both/helpers/getDefaultConversation'; import { ContactSpoofingReviewDialog } from './ContactSpoofingReviewDialog'; import { ContactSpoofingType } from '../../util/contactSpoofing'; import { ThemeType } from '../../types/Util'; const i18n = setupI18n('en', enMessages); export default { title: 'Components/Conversation/ContactSpoofingReviewDialog', }; const getCommonProps = () => ({ getPreferredBadge: () => undefined, i18n, groupConversationId: 'convo-id', onBlock: action('onBlock'), onBlockAndReportSpam: action('onBlockAndReportSpam'), onClose: action('onClose'), onDelete: action('onDelete'), onShowContactModal: action('onShowContactModal'), onUnblock: action('onUnblock'), removeMember: action('removeMember'), theme: ThemeType.light, }); export const DirectConversationsWithSameTitle = (): JSX.Element => ( ); DirectConversationsWithSameTitle.story = { name: 'Direct conversations with same title', }; export const NotAdmin = (): JSX.Element => ( ({ oldName: 'Alicia', conversation: getDefaultConversation({ title: 'Alice' }), })), Bob: times(3, () => ({ conversation: getDefaultConversation({ title: 'Bob' }), })), Charlie: times(5, () => ({ conversation: getDefaultConversation({ title: 'Charlie' }), })), }} /> ); NotAdmin.story = { name: 'Group conversation many group members', }; export const Admin = (): JSX.Element => ( ({ oldName: 'Alicia', conversation: getDefaultConversation({ title: 'Alice' }), })), Bob: times(3, () => ({ conversation: getDefaultConversation({ title: 'Bob' }), })), Charlie: times(5, () => ({ conversation: getDefaultConversation({ title: 'Charlie' }), })), }} /> ); Admin.story = { name: 'Group conversation many group members, and we are admin', };