2022-08-02 19:31:55 +00:00
|
|
|
// 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 './SendStoryModal';
|
|
|
|
import enMessages from '../../_locales/en/messages.json';
|
|
|
|
import { SendStoryModal } from './SendStoryModal';
|
2022-08-10 18:37:19 +00:00
|
|
|
import {
|
|
|
|
getDefaultConversation,
|
|
|
|
getDefaultGroup,
|
|
|
|
} from '../test-both/helpers/getDefaultConversation';
|
2022-08-02 19:31:55 +00:00
|
|
|
import { setupI18n } from '../util/setupI18n';
|
|
|
|
import {
|
|
|
|
getMyStories,
|
|
|
|
getFakeDistributionLists,
|
|
|
|
} from '../test-both/helpers/getFakeDistributionLists';
|
|
|
|
|
|
|
|
const i18n = setupI18n('en', enMessages);
|
|
|
|
|
|
|
|
export default {
|
|
|
|
title: 'Components/SendStoryModal',
|
|
|
|
component: SendStoryModal,
|
|
|
|
argTypes: {
|
2022-08-10 18:37:19 +00:00
|
|
|
candidateConversations: {
|
|
|
|
defaultValue: Array.from(Array(100), () => getDefaultConversation()),
|
|
|
|
},
|
2022-08-02 19:31:55 +00:00
|
|
|
distributionLists: {
|
|
|
|
defaultValue: [getMyStories()],
|
|
|
|
},
|
2022-08-10 18:37:19 +00:00
|
|
|
getPreferredBadge: { action: true },
|
|
|
|
groupConversations: {
|
|
|
|
defaultValue: Array.from(Array(7), getDefaultGroup),
|
|
|
|
},
|
|
|
|
groupStories: {
|
|
|
|
defaultValue: Array.from(Array(2), getDefaultGroup),
|
|
|
|
},
|
2022-08-02 19:31:55 +00:00
|
|
|
i18n: {
|
|
|
|
defaultValue: i18n,
|
|
|
|
},
|
|
|
|
me: {
|
|
|
|
defaultValue: getDefaultConversation(),
|
|
|
|
},
|
|
|
|
onClose: { action: true },
|
2022-08-10 18:37:19 +00:00
|
|
|
onDistributionListCreated: { action: true },
|
2022-08-02 19:31:55 +00:00
|
|
|
onSend: { action: true },
|
|
|
|
signalConnections: {
|
|
|
|
defaultValue: Array.from(Array(42), getDefaultConversation),
|
|
|
|
},
|
2022-08-10 18:37:19 +00:00
|
|
|
tagGroupsAsNewGroupStory: { action: true },
|
2022-08-02 19:31:55 +00:00
|
|
|
},
|
|
|
|
} as Meta;
|
|
|
|
|
|
|
|
const Template: Story<PropsType> = args => <SendStoryModal {...args} />;
|
|
|
|
|
|
|
|
export const Modal = Template.bind({});
|
|
|
|
Modal.args = {
|
|
|
|
distributionLists: getFakeDistributionLists(),
|
|
|
|
};
|