signal-desktop/ts/components/conversation/MessageRequestActions.stories.tsx

61 lines
1.7 KiB
TypeScript
Raw Normal View History

// 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 { storiesOf } from '@storybook/react';
import { text } from '@storybook/addon-knobs';
import { action } from '@storybook/addon-actions';
2020-09-14 19:51:27 +00:00
2020-05-27 21:37:06 +00:00
import {
MessageRequestActions,
Props as MessageRequestActionsProps,
} from './MessageRequestActions';
import { setup as setupI18n } from '../../../js/modules/i18n';
import enMessages from '../../../_locales/en/messages.json';
const i18n = setupI18n('en', enMessages);
const getBaseProps = (isGroup = false): MessageRequestActionsProps => ({
i18n,
conversationType: isGroup ? 'group' : 'direct',
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'),
onBlockAndReportSpam: action('blockAndReportSpam'),
2020-05-27 21:37:06 +00:00
onUnblock: action('unblock'),
onAccept: action('accept'),
});
storiesOf('Components/Conversation/MessageRequestActions', module)
.add('Direct', () => {
return (
<div style={{ width: '480px' }}>
<MessageRequestActions {...getBaseProps()} />
</div>
);
})
.add('Direct (Blocked)', () => {
return (
<div style={{ width: '480px' }}>
2020-09-14 19:51:27 +00:00
<MessageRequestActions {...getBaseProps()} isBlocked />
2020-05-27 21:37:06 +00:00
</div>
);
})
.add('Group', () => {
return (
<div style={{ width: '480px' }}>
<MessageRequestActions {...getBaseProps(true)} />
</div>
);
})
.add('Group (Blocked)', () => {
return (
<div style={{ width: '480px' }}>
2020-09-14 19:51:27 +00:00
<MessageRequestActions {...getBaseProps(true)} isBlocked />
2020-05-27 21:37:06 +00:00
</div>
);
});