2021-05-27 20:17:05 +00:00
|
|
|
// Copyright 2020-2021 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 { text } from '@storybook/addon-knobs';
|
|
|
|
import { action } from '@storybook/addon-actions';
|
2020-09-14 19:51:27 +00:00
|
|
|
|
2021-10-26 19:15:33 +00:00
|
|
|
import type { Props as MessageRequestActionsProps } from './MessageRequestActions';
|
|
|
|
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);
|
|
|
|
|
|
|
|
const getBaseProps = (isGroup = false): MessageRequestActionsProps => ({
|
|
|
|
i18n,
|
|
|
|
conversationType: isGroup ? 'group' : 'direct',
|
2020-07-29 23:20:05 +00:00
|
|
|
firstName: text('firstName', 'Cayce'),
|
2020-07-24 01:35:32 +00:00
|
|
|
title: isGroup
|
|
|
|
? text('title', 'NYC Rock Climbers')
|
|
|
|
: text('title', 'Cayce Bollard'),
|
2020-05-27 21:37:06 +00:00
|
|
|
onBlock: action('block'),
|
|
|
|
onDelete: action('delete'),
|
2021-05-27 20:17:05 +00:00
|
|
|
onBlockAndReportSpam: action('blockAndReportSpam'),
|
2020-05-27 21:37:06 +00:00
|
|
|
onUnblock: action('unblock'),
|
|
|
|
onAccept: action('accept'),
|
|
|
|
});
|
|
|
|
|
2022-06-07 00:48:02 +00:00
|
|
|
export default {
|
|
|
|
title: 'Components/Conversation/MessageRequestActions',
|
|
|
|
};
|
|
|
|
|
|
|
|
export const Direct = (): JSX.Element => {
|
|
|
|
return (
|
|
|
|
<div style={{ width: '480px' }}>
|
|
|
|
<MessageRequestActions {...getBaseProps()} />
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export const DirectBlocked = (): JSX.Element => {
|
|
|
|
return (
|
|
|
|
<div style={{ width: '480px' }}>
|
|
|
|
<MessageRequestActions {...getBaseProps()} isBlocked />
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
DirectBlocked.story = {
|
|
|
|
name: 'Direct (Blocked)',
|
|
|
|
};
|
|
|
|
|
|
|
|
export const Group = (): JSX.Element => {
|
|
|
|
return (
|
|
|
|
<div style={{ width: '480px' }}>
|
|
|
|
<MessageRequestActions {...getBaseProps(true)} />
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export const GroupBlocked = (): JSX.Element => {
|
|
|
|
return (
|
|
|
|
<div style={{ width: '480px' }}>
|
|
|
|
<MessageRequestActions {...getBaseProps(true)} isBlocked />
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
GroupBlocked.story = {
|
|
|
|
name: 'Group (Blocked)',
|
|
|
|
};
|