mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2025-12-24 20:26:24 +00:00
Rename files
This commit is contained in:
59
ts/components/ErrorModal.dom.stories.tsx
Normal file
59
ts/components/ErrorModal.dom.stories.tsx
Normal file
@@ -0,0 +1,59 @@
|
||||
// Copyright 2020 Signal Messenger, LLC
|
||||
// SPDX-License-Identifier: AGPL-3.0-only
|
||||
|
||||
import * as React from 'react';
|
||||
import { action } from '@storybook/addon-actions';
|
||||
|
||||
import type { Meta } from '@storybook/react';
|
||||
import type { PropsType } from './ErrorModal.dom.js';
|
||||
import { ErrorModal } from './ErrorModal.dom.js';
|
||||
|
||||
import { ButtonVariant } from './Button.dom.js';
|
||||
|
||||
const { i18n } = window.SignalContext;
|
||||
|
||||
const createProps = (overrideProps: Partial<PropsType> = {}): PropsType => ({
|
||||
buttonVariant: overrideProps.buttonVariant ?? undefined,
|
||||
description: overrideProps.description ?? '',
|
||||
title: Object.hasOwn(overrideProps, 'title') ? overrideProps.title : '',
|
||||
i18n,
|
||||
onClose: action('onClick'),
|
||||
});
|
||||
|
||||
export default {
|
||||
title: 'Components/ErrorModal',
|
||||
argTypes: {},
|
||||
args: {},
|
||||
} satisfies Meta<PropsType>;
|
||||
|
||||
export function Normal(): JSX.Element {
|
||||
return <ErrorModal {...createProps()} />;
|
||||
}
|
||||
|
||||
export function PrimaryButton(): JSX.Element {
|
||||
return (
|
||||
<ErrorModal {...createProps({ buttonVariant: ButtonVariant.Primary })} />
|
||||
);
|
||||
}
|
||||
|
||||
export function CustomStrings(): JSX.Element {
|
||||
return (
|
||||
<ErrorModal
|
||||
{...createProps({
|
||||
title: 'Real bad!',
|
||||
description: 'Just avoid that next time, kay?',
|
||||
})}
|
||||
/>
|
||||
);
|
||||
}
|
||||
|
||||
export function NoTitle(): JSX.Element {
|
||||
return (
|
||||
<ErrorModal
|
||||
{...createProps({
|
||||
title: null,
|
||||
description: 'This is a fun error!',
|
||||
})}
|
||||
/>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user