2023-01-03 19:55:46 +00:00
|
|
|
// Copyright 2020 Signal Messenger, LLC
|
2020-10-30 20:34:04 +00:00
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2020-05-27 21:37:06 +00:00
|
|
|
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';
|
|
|
|
import type { Props } from './MessageRequestActions';
|
2021-10-26 19:15:33 +00:00
|
|
|
import { MessageRequestActions } from './MessageRequestActions';
|
2021-09-18 00:30:08 +00:00
|
|
|
import { setupI18n } from '../../util/setupI18n';
|
2020-05-27 21:37:06 +00:00
|
|
|
import enMessages from '../../../_locales/en/messages.json';
|
|
|
|
|
|
|
|
const i18n = setupI18n('en', enMessages);
|
|
|
|
|
2022-06-07 00:48:02 +00:00
|
|
|
export default {
|
|
|
|
title: 'Components/Conversation/MessageRequestActions',
|
2023-10-11 19:06:43 +00:00
|
|
|
argTypes: {
|
|
|
|
conversationType: {
|
|
|
|
control: {
|
|
|
|
type: 'select',
|
|
|
|
options: ['direct', 'group'],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
firstName: { control: { type: 'text' } },
|
|
|
|
title: { control: { type: 'text' } },
|
|
|
|
},
|
|
|
|
args: {
|
|
|
|
conversationId: '123',
|
|
|
|
i18n,
|
|
|
|
conversationType: 'direct',
|
|
|
|
firstName: 'Cayce',
|
|
|
|
title: 'Cayce Bollard',
|
|
|
|
acceptConversation: action('acceptConversation'),
|
|
|
|
blockAndReportSpam: action('blockAndReportSpam'),
|
|
|
|
blockConversation: action('blockConversation'),
|
|
|
|
deleteConversation: action('deleteConversation'),
|
|
|
|
},
|
|
|
|
decorators: [
|
|
|
|
(Story: React.ComponentType): JSX.Element => {
|
|
|
|
return (
|
|
|
|
<div style={{ width: '480px' }}>
|
|
|
|
<Story />
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
},
|
|
|
|
],
|
|
|
|
} satisfies Meta<Props>;
|
|
|
|
|
|
|
|
export function Direct(args: Props): JSX.Element {
|
|
|
|
return <MessageRequestActions {...args} />;
|
2022-11-18 00:45:19 +00:00
|
|
|
}
|
2022-06-07 00:48:02 +00:00
|
|
|
|
2023-10-11 19:06:43 +00:00
|
|
|
export function DirectBlocked(args: Props): JSX.Element {
|
|
|
|
return <MessageRequestActions {...args} isBlocked />;
|
2022-11-18 00:45:19 +00:00
|
|
|
}
|
2022-06-07 00:48:02 +00:00
|
|
|
|
2023-10-11 19:06:43 +00:00
|
|
|
export function Group(args: Props): JSX.Element {
|
|
|
|
return <MessageRequestActions {...args} conversationType="group" />;
|
2022-11-18 00:45:19 +00:00
|
|
|
}
|
2022-06-07 00:48:02 +00:00
|
|
|
|
2023-10-11 19:06:43 +00:00
|
|
|
export function GroupBlocked(args: Props): JSX.Element {
|
|
|
|
return <MessageRequestActions {...args} conversationType="group" isBlocked />;
|
2022-11-18 00:45:19 +00:00
|
|
|
}
|