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

61 lines
1.5 KiB
TypeScript
Raw Normal View History

2020-10-30 20:34:04 +00:00
// Copyright 2020 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
2020-07-24 01:35:32 +00:00
import * as React from 'react';
import { storiesOf } from '@storybook/react';
import { setup as setupI18n } from '../../../js/modules/i18n';
2020-09-14 19:51:27 +00:00
import enMessages from '../../../_locales/en/messages.json';
2020-07-24 01:35:32 +00:00
import { ContactName } from './ContactName';
2021-05-28 16:15:17 +00:00
import { ContactNameColors } from '../../types/Colors';
2020-07-24 01:35:32 +00:00
const i18n = setupI18n('en', enMessages);
storiesOf('Components/Conversation/ContactName', module)
.add('Number, name and profile', () => {
return (
<ContactName
title="Someone 🔥 Somewhere"
name="Someone 🔥 Somewhere"
phoneNumber="(202) 555-0011"
profileName="🔥Flames🔥"
i18n={i18n}
/>
);
})
.add('Number and profile, no name', () => {
return (
<ContactName
title="🔥Flames🔥"
phoneNumber="(202) 555-0011"
profileName="🔥Flames🔥"
i18n={i18n}
/>
);
})
.add('No name, no profile', () => {
return (
<ContactName
title="(202) 555-0011"
phoneNumber="(202) 555-0011"
i18n={i18n}
/>
);
})
2021-05-28 16:15:17 +00:00
.add('Colors', () => {
return ContactNameColors.map(color => (
<div key={color}>
<ContactName
title={`Hello ${color}`}
contactNameColor={color}
i18n={i18n}
phoneNumber="(202) 555-0011"
/>
</div>
));
})
2020-07-24 01:35:32 +00:00
.add('No data provided', () => {
return <ContactName title="unknownContact" i18n={i18n} />;
});