502ea174ab
Co-authored-by: Scott Nonnenberg <scott@signal.org>
67 lines
1.7 KiB
TypeScript
67 lines
1.7 KiB
TypeScript
// Copyright 2020 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
import * as React from 'react';
|
|
import type { Meta } from '@storybook/react';
|
|
import { setupI18n } from '../../util/setupI18n';
|
|
import enMessages from '../../../_locales/en/messages.json';
|
|
import type { ContactType, Props } from './UnsupportedMessage';
|
|
import { UnsupportedMessage } from './UnsupportedMessage';
|
|
|
|
const i18n = setupI18n('en', enMessages);
|
|
|
|
export default {
|
|
title: 'Components/Conversation/UnsupportedMessage',
|
|
argTypes: {
|
|
canProcessNow: { control: { type: 'boolean' } },
|
|
},
|
|
args: {
|
|
i18n,
|
|
canProcessNow: false,
|
|
contact: {} as ContactType,
|
|
},
|
|
} satisfies Meta<Props>;
|
|
|
|
const createContact = (props: Partial<ContactType> = {}): ContactType => ({
|
|
id: '',
|
|
title: props.title ?? '',
|
|
isMe: props.isMe ?? false,
|
|
});
|
|
|
|
export function FromSomeone(args: Props): JSX.Element {
|
|
const contact = createContact({
|
|
title: 'Alice',
|
|
name: 'Alice',
|
|
});
|
|
|
|
return <UnsupportedMessage {...args} contact={contact} />;
|
|
}
|
|
|
|
export function AfterUpgrade(args: Props): JSX.Element {
|
|
const contact = createContact({
|
|
title: 'Alice',
|
|
name: 'Alice',
|
|
});
|
|
|
|
return <UnsupportedMessage {...args} contact={contact} canProcessNow />;
|
|
}
|
|
|
|
export function FromYourself(args: Props): JSX.Element {
|
|
const contact = createContact({
|
|
title: 'Alice',
|
|
name: 'Alice',
|
|
isMe: true,
|
|
});
|
|
|
|
return <UnsupportedMessage {...args} contact={contact} />;
|
|
}
|
|
|
|
export function FromYourselfAfterUpgrade(args: Props): JSX.Element {
|
|
const contact = createContact({
|
|
title: 'Alice',
|
|
name: 'Alice',
|
|
isMe: true,
|
|
});
|
|
|
|
return <UnsupportedMessage {...args} contact={contact} canProcessNow />;
|
|
}
|