signal-desktop/ts/components/AvatarLightbox.stories.tsx

50 lines
1.4 KiB
TypeScript
Raw Normal View History

2021-08-06 00:17:05 +00:00
// Copyright 2021 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import React from 'react';
import { action } from '@storybook/addon-actions';
import type { Meta } from '@storybook/react';
2021-08-06 00:17:05 +00:00
import enMessages from '../../_locales/en/messages.json';
import { AvatarColors } from '../types/Colors';
import type { PropsType } from './AvatarLightbox';
import { AvatarLightbox } from './AvatarLightbox';
2021-09-18 00:30:08 +00:00
import { setupI18n } from '../util/setupI18n';
2021-08-06 00:17:05 +00:00
import { getDefaultConversation } from '../test-both/helpers/getDefaultConversation';
const i18n = setupI18n('en', enMessages);
2022-06-07 00:48:02 +00:00
export default {
title: 'Components/AvatarLightbox',
component: AvatarLightbox,
argTypes: {
avatarColor: {
control: { type: 'select' },
options: AvatarColors,
},
},
args: {
i18n,
avatarColor: AvatarColors[0],
onClose: action('onClose'),
},
} satisfies Meta<PropsType>;
export function Group(args: PropsType): JSX.Element {
return <AvatarLightbox {...args} isGroup />;
2022-11-18 00:45:19 +00:00
}
export function Person(args: PropsType): JSX.Element {
2021-08-06 00:17:05 +00:00
const conversation = getDefaultConversation();
return (
<AvatarLightbox
{...args}
avatarColor={conversation.color}
conversationTitle={conversation.title}
2021-08-06 00:17:05 +00:00
/>
);
2022-11-18 00:45:19 +00:00
}
2021-08-06 00:17:05 +00:00
export function Photo(args: PropsType): JSX.Element {
return <AvatarLightbox {...args} avatarPath="/fixtures/kitten-1-64-64.jpg" />;
2022-11-18 00:45:19 +00:00
}