Files
Desktop/ts/components/AvatarModalButtons.dom.stories.tsx
2026-03-30 12:42:37 -07:00

38 lines
932 B
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 './AvatarModalButtons.dom.tsx';
import { AvatarModalButtons } from './AvatarModalButtons.dom.tsx';
const { i18n } = window.SignalContext;
const createProps = (overrideProps: Partial<PropsType> = {}): PropsType => ({
hasChanges: Boolean(overrideProps.hasChanges),
i18n,
onCancel: action('onCancel'),
onSave: action('onSave'),
});
export default {
title: 'Components/AvatarModalButtons',
} satisfies Meta<PropsType>;
export function HasChanges(): React.JSX.Element {
return (
<AvatarModalButtons
{...createProps({
hasChanges: true,
})}
/>
);
}
export function NoChanges(): React.JSX.Element {
return <AvatarModalButtons {...createProps()} />;
}