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

45 lines
1,008 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 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',
};
2021-08-06 00:17:05 +00:00
2022-06-07 00:48:02 +00:00
export const HasChanges = (): JSX.Element => (
2021-08-06 00:17:05 +00:00
<AvatarModalButtons
{...createProps({
hasChanges: true,
})}
/>
2022-06-07 00:48:02 +00:00
);
2021-08-06 00:17:05 +00:00
2022-06-07 00:48:02 +00:00
HasChanges.story = {
name: 'Has changes',
};
export const NoChanges = (): JSX.Element => (
<AvatarModalButtons {...createProps()} />
);
NoChanges.story = {
name: 'No changes',
};