signal-desktop/ts/components/conversation/VerificationNotification.stories.tsx

68 lines
1.7 KiB
TypeScript
Raw Normal View History

2023-01-03 19:55:46 +00:00
// Copyright 2020 Signal Messenger, LLC
2020-10-30 20:34:04 +00:00
// SPDX-License-Identifier: AGPL-3.0-only
import * as React from 'react';
import type { Meta } from '@storybook/react';
2021-09-18 00:30:08 +00:00
import { setupI18n } from '../../util/setupI18n';
import enMessages from '../../../_locales/en/messages.json';
import type { Props } from './VerificationNotification';
import { VerificationNotification } from './VerificationNotification';
const i18n = setupI18n('en', enMessages);
const contact = { title: 'Mr. Fire' };
export default {
title: 'Components/Conversation/VerificationNotification',
argTypes: {
type: {
control: {
type: 'select',
options: ['markVerified', 'markNotVerified'],
},
},
isLocal: { control: { type: 'boolean' } },
},
args: {
i18n,
type: 'markVerified',
isLocal: true,
contact,
},
} satisfies Meta<Props>;
export function MarkAsVerified(args: Props): JSX.Element {
return <VerificationNotification {...args} type="markVerified" />;
2022-11-18 00:45:19 +00:00
}
2022-06-07 00:48:02 +00:00
export function MarkAsNotVerified(args: Props): JSX.Element {
return <VerificationNotification {...args} type="markNotVerified" />;
2022-11-18 00:45:19 +00:00
}
export function MarkAsVerifiedRemotely(args: Props): JSX.Element {
return (
<VerificationNotification {...args} type="markVerified" isLocal={false} />
);
2022-11-18 00:45:19 +00:00
}
export function MarkAsNotVerifiedRemotely(args: Props): JSX.Element {
return (
<VerificationNotification
{...args}
type="markNotVerified"
isLocal={false}
/>
);
2022-11-18 00:45:19 +00:00
}
2022-06-07 00:48:02 +00:00
export function LongName(args: Props): JSX.Element {
const longName = '🎆🍬🏈'.repeat(50);
return (
<VerificationNotification
{...args}
type="markVerified"
contact={{ title: longName }}
/>
);
2022-11-18 00:45:19 +00:00
}