2021-01-29 22:16:48 +00:00
|
|
|
// Copyright 2021 Signal Messenger, LLC
|
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
import * as React from 'react';
|
|
|
|
import { action } from '@storybook/addon-actions';
|
2023-10-11 19:06:43 +00:00
|
|
|
import type { Meta } from '@storybook/react';
|
2021-10-26 19:15:33 +00:00
|
|
|
import type { PropsType } from './GroupV2JoinDialog';
|
|
|
|
import { GroupV2JoinDialog } from './GroupV2JoinDialog';
|
2021-09-18 00:30:08 +00:00
|
|
|
import { setupI18n } from '../util/setupI18n';
|
2021-01-29 22:16:48 +00:00
|
|
|
import enMessages from '../../_locales/en/messages.json';
|
|
|
|
|
|
|
|
const i18n = setupI18n('en', enMessages);
|
|
|
|
|
|
|
|
const createProps = (overrideProps: Partial<PropsType> = {}): PropsType => ({
|
2023-10-11 19:06:43 +00:00
|
|
|
memberCount: overrideProps.memberCount ?? 12,
|
2021-01-29 22:16:48 +00:00
|
|
|
avatar: overrideProps.avatar,
|
2023-10-11 19:06:43 +00:00
|
|
|
title: overrideProps.title ?? 'Random Group!',
|
|
|
|
approvalRequired: overrideProps.approvalRequired ?? false,
|
2021-06-02 00:24:28 +00:00
|
|
|
groupDescription: overrideProps.groupDescription,
|
2021-01-29 22:16:48 +00:00
|
|
|
join: action('join'),
|
|
|
|
onClose: action('onClose'),
|
|
|
|
i18n,
|
|
|
|
});
|
|
|
|
|
2022-06-07 00:48:02 +00:00
|
|
|
export default {
|
|
|
|
title: 'Components/GroupV2JoinDialog',
|
2023-10-11 19:06:43 +00:00
|
|
|
argTypes: {},
|
|
|
|
args: {},
|
|
|
|
} satisfies Meta<PropsType>;
|
2021-01-29 22:16:48 +00:00
|
|
|
|
2022-11-18 00:45:19 +00:00
|
|
|
export function Basic(): JSX.Element {
|
2021-01-29 22:16:48 +00:00
|
|
|
return <GroupV2JoinDialog {...createProps()} />;
|
2022-11-18 00:45:19 +00:00
|
|
|
}
|
2021-01-29 22:16:48 +00:00
|
|
|
|
2022-11-18 00:45:19 +00:00
|
|
|
export function ApprovalRequired(): JSX.Element {
|
2021-01-29 22:16:48 +00:00
|
|
|
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 {
|
2021-01-29 22:16:48 +00:00
|
|
|
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 {
|
2021-01-29 22:16:48 +00:00
|
|
|
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 {
|
2021-01-29 22:16:48 +00:00
|
|
|
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
|
|
|
}
|