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

97 lines
2.2 KiB
TypeScript
Raw Normal View History

// Copyright 2021 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 './GroupV2JoinDialog';
import { GroupV2JoinDialog } from './GroupV2JoinDialog';
2021-09-18 00:30:08 +00:00
import { setupI18n } from '../util/setupI18n';
import enMessages from '../../_locales/en/messages.json';
const i18n = setupI18n('en', enMessages);
const createProps = (overrideProps: Partial<PropsType> = {}): PropsType => ({
memberCount: overrideProps.memberCount ?? 12,
avatar: overrideProps.avatar,
title: overrideProps.title ?? 'Random Group!',
approvalRequired: overrideProps.approvalRequired ?? false,
2021-06-02 00:24:28 +00:00
groupDescription: overrideProps.groupDescription,
join: action('join'),
onClose: action('onClose'),
i18n,
});
2022-06-07 00:48:02 +00:00
export default {
title: 'Components/GroupV2JoinDialog',
argTypes: {},
args: {},
} satisfies Meta<PropsType>;
2022-11-18 00:45:19 +00:00
export function Basic(): JSX.Element {
return <GroupV2JoinDialog {...createProps()} />;
2022-11-18 00:45:19 +00:00
}
2022-11-18 00:45:19 +00:00
export function ApprovalRequired(): JSX.Element {
return (
<GroupV2JoinDialog
{...createProps({
approvalRequired: true,
title: 'Approval required!',
})}
/>
);
2022-11-18 00:45:19 +00:00
}
2022-06-07 00:48:02 +00:00
2022-11-18 00:45:19 +00:00
export function WithAvatar(): JSX.Element {
return (
<GroupV2JoinDialog
{...createProps({
avatar: {
url: '/fixtures/giphy-GVNvOUpeYmI7e.gif',
},
title: 'Has an avatar!',
})}
/>
);
2022-11-18 00:45:19 +00:00
}
2022-06-07 00:48:02 +00:00
2022-11-18 00:45:19 +00:00
export function WithOneMember(): JSX.Element {
return (
<GroupV2JoinDialog
{...createProps({
memberCount: 1,
title: 'Just one member!',
})}
/>
);
2022-11-18 00:45:19 +00:00
}
2022-06-07 00:48:02 +00:00
2022-11-18 00:45:19 +00:00
export function AvatarLoadingState(): JSX.Element {
return (
<GroupV2JoinDialog
{...createProps({
avatar: {
loading: true,
},
title: 'Avatar loading!',
})}
/>
);
2022-11-18 00:45:19 +00:00
}
2021-06-02 00:24:28 +00:00
2022-11-18 00:45:19 +00:00
export function Full(): JSX.Element {
2021-06-02 00:24:28 +00:00
return (
<GroupV2JoinDialog
{...createProps({
avatar: {
url: '/fixtures/giphy-GVNvOUpeYmI7e.gif',
},
memberCount: 16,
groupDescription: 'Discuss meets, events, training, and recruiting.',
title: 'Underwater basket weavers (LA)',
})}
/>
);
2022-11-18 00:45:19 +00:00
}