52 lines
1.3 KiB
TypeScript
52 lines
1.3 KiB
TypeScript
// Copyright 2022 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
import type { Meta, Story } from '@storybook/react';
|
|
import React from 'react';
|
|
|
|
import type { PropsType } from './ToastManager';
|
|
import enMessages from '../../_locales/en/messages.json';
|
|
import { ToastManager } from './ToastManager';
|
|
import { ToastType } from '../state/ducks/toast';
|
|
import { setupI18n } from '../util/setupI18n';
|
|
|
|
const i18n = setupI18n('en', enMessages);
|
|
|
|
export default {
|
|
title: 'Components/ToastManager',
|
|
component: ToastManager,
|
|
argTypes: {
|
|
hideToast: { action: true },
|
|
i18n: {
|
|
defaultValue: i18n,
|
|
},
|
|
toastType: {
|
|
defaultValue: undefined,
|
|
},
|
|
},
|
|
} as Meta;
|
|
|
|
const Template: Story<PropsType> = args => <ToastManager {...args} />;
|
|
|
|
export const UndefinedToast = Template.bind({});
|
|
UndefinedToast.args = {};
|
|
|
|
export const InvalidToast = Template.bind({});
|
|
InvalidToast.args = {
|
|
toastType: 'this is a toast that does not exist' as ToastType,
|
|
};
|
|
|
|
export const StoryReact = Template.bind({});
|
|
StoryReact.args = {
|
|
toastType: ToastType.StoryReact,
|
|
};
|
|
|
|
export const StoryReply = Template.bind({});
|
|
StoryReply.args = {
|
|
toastType: ToastType.StoryReply,
|
|
};
|
|
|
|
export const MessageBodyTooLong = Template.bind({});
|
|
MessageBodyTooLong.args = {
|
|
toastType: ToastType.MessageBodyTooLong,
|
|
};
|