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

44 lines
1 KiB
TypeScript
Raw Normal View History

// Copyright 2020-2021 Signal Messenger, LLC
2020-10-30 20:34:04 +00:00
// SPDX-License-Identifier: AGPL-3.0-only
2020-07-24 01:35:32 +00:00
import * as React from 'react';
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
2022-06-07 00:48:02 +00:00
export default {
title: 'Components/Conversation/ContactName',
};
export const FirstNameAndTitleTitlePreferred = (): JSX.Element => (
<ContactName firstName="Ignored" title="Someone 🔥 Somewhere" />
);
FirstNameAndTitleTitlePreferred.story = {
name: 'First name and title; title preferred',
};
export const FirstNameAndTitleFirstNamePreferred = (): JSX.Element => (
<ContactName
firstName="Someone 🔥 Somewhere"
title="Ignored"
preferFirstName
/>
);
FirstNameAndTitleFirstNamePreferred.story = {
name: 'First name and title; first name preferred',
};
export const Colors = (): JSX.Element => {
return (
<>
{ContactNameColors.map(color => (
<div key={color}>
<ContactName title={`Hello ${color}`} contactNameColor={color} />
</div>
))}
</>
);
};