signal-desktop/ts/components/OutgoingGiftBadgeModal.stories.tsx
Jamie Kyle 502ea174ab
Upgrade Storybook
Co-authored-by: Scott Nonnenberg <scott@signal.org>
2023-10-11 12:06:43 -07:00

55 lines
1.5 KiB
TypeScript

// Copyright 2022 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 './OutgoingGiftBadgeModal';
import { OutgoingGiftBadgeModal } from './OutgoingGiftBadgeModal';
import { setupI18n } from '../util/setupI18n';
import enMessages from '../../_locales/en/messages.json';
import { BadgeCategory } from '../badges/BadgeCategory';
const i18n = setupI18n('en', enMessages);
const getPreferredBadge = () => ({
category: BadgeCategory.Donor,
descriptionTemplate: 'This is a description of the badge',
id: 'BOOST-3',
images: [
{
transparent: {
localPath: '/fixtures/orange-heart.svg',
url: 'http://someplace',
},
},
],
name: 'heart',
});
const createProps = (overrideProps: Partial<PropsType> = {}): PropsType => ({
recipientTitle: overrideProps.recipientTitle ?? 'Default Name',
badgeId: overrideProps.badgeId ?? 'heart',
getPreferredBadge,
hideOutgoingGiftBadgeModal: action('hideOutgoingGiftBadgeModal'),
i18n,
});
export default {
title: 'Components/OutgoingGiftBadgeModal',
argTypes: {},
args: {},
} satisfies Meta<PropsType>;
export function Normal(): JSX.Element {
return <OutgoingGiftBadgeModal {...createProps()} />;
}
export function MissingBadge(): JSX.Element {
const props = {
...createProps(),
getPreferredBadge: () => undefined,
};
return <OutgoingGiftBadgeModal {...props} />;
}