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

40 lines
1,012 B
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 type { PropsType } from './AvatarModalButtons';
import { AvatarModalButtons } from './AvatarModalButtons';
2021-09-18 00:30:08 +00:00
import { setupI18n } from '../util/setupI18n';
2021-08-06 00:17:05 +00:00
const i18n = setupI18n('en', enMessages);
const createProps = (overrideProps: Partial<PropsType> = {}): PropsType => ({
hasChanges: Boolean(overrideProps.hasChanges),
i18n,
onCancel: action('onCancel'),
onSave: action('onSave'),
});
2022-06-07 00:48:02 +00:00
export default {
title: 'Components/AvatarModalButtons',
} satisfies Meta<PropsType>;
2021-08-06 00:17:05 +00:00
2022-11-18 00:45:19 +00:00
export function HasChanges(): JSX.Element {
return (
<AvatarModalButtons
{...createProps({
hasChanges: true,
})}
/>
);
}
2021-08-06 00:17:05 +00:00
2022-11-18 00:45:19 +00:00
export function NoChanges(): JSX.Element {
return <AvatarModalButtons {...createProps()} />;
}