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

66 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';
2021-09-18 00:30:08 +00:00
import { setupI18n } from '../util/setupI18n';
2021-08-06 00:17:05 +00:00
import enMessages from '../../_locales/en/messages.json';
import type { PropsType } from './AvatarTextEditor';
import { AvatarTextEditor } from './AvatarTextEditor';
2021-08-06 00:17:05 +00:00
import { AvatarColors } from '../types/Colors';
const i18n = setupI18n('en', enMessages);
const createProps = (overrideProps: Partial<PropsType> = {}): PropsType => ({
avatarData: overrideProps.avatarData,
i18n,
onCancel: action('onCancel'),
onDone: action('onDone'),
});
2022-06-07 00:48:02 +00:00
export default {
title: 'Components/AvatarTextEditor',
};
2021-08-06 00:17:05 +00:00
2022-11-18 00:45:19 +00:00
export function Empty(): JSX.Element {
return <AvatarTextEditor {...createProps()} />;
}
export function WithData(): JSX.Element {
return (
<AvatarTextEditor
{...createProps({
avatarData: {
id: '123',
color: AvatarColors[6],
text: 'SUP',
},
})}
/>
);
}
2021-08-06 00:17:05 +00:00
2022-06-07 00:48:02 +00:00
WithData.story = {
name: 'with Data',
};
2022-11-18 00:45:19 +00:00
export function WithWideCharacters(): JSX.Element {
return (
<AvatarTextEditor
{...createProps({
avatarData: {
id: '123',
color: AvatarColors[6],
text: '‱௸𒈙',
},
})}
/>
);
}
2022-06-07 00:48:02 +00:00
WithWideCharacters.story = {
name: 'with wide characters',
};