Files
Desktop/ts/components/AvatarTextEditor.dom.stories.tsx
Jamie b405e3d83d Prepare for upgrade to React 19
Co-authored-by: ayumi-signal <ayumi@signal.org>
2025-12-23 13:42:56 -08:00

56 lines
1.3 KiB
TypeScript

// 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';
import type { PropsType } from './AvatarTextEditor.dom.js';
import { AvatarTextEditor } from './AvatarTextEditor.dom.js';
import { AvatarColors } from '../types/Colors.std.js';
const { i18n } = window.SignalContext;
const createProps = (overrideProps: Partial<PropsType> = {}): PropsType => ({
avatarData: overrideProps.avatarData,
i18n,
onCancel: action('onCancel'),
onDone: action('onDone'),
});
export default {
title: 'Components/AvatarTextEditor',
} satisfies Meta<PropsType>;
export function Empty(): React.JSX.Element {
return <AvatarTextEditor {...createProps()} />;
}
export function WithData(): React.JSX.Element {
return (
<AvatarTextEditor
{...createProps({
avatarData: {
id: '123',
color: AvatarColors[6],
text: 'SUP',
},
})}
/>
);
}
export function WithWideCharacters(): React.JSX.Element {
return (
<AvatarTextEditor
{...createProps({
avatarData: {
id: '123',
color: AvatarColors[6],
text: '‱௸𒈙',
},
})}
/>
);
}