signal-desktop/ts/components/conversation/conversation-details/ConversationDetailsHeader.stories.tsx

83 lines
2.3 KiB
TypeScript
Raw Normal View History

// Copyright 2021 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import * as React from 'react';
import { storiesOf } from '@storybook/react';
import { action } from '@storybook/addon-actions';
import { number, text } from '@storybook/addon-knobs';
2021-05-07 22:21:10 +00:00
import { getDefaultConversation } from '../../../test-both/helpers/getDefaultConversation';
2021-11-02 23:01:13 +00:00
import { getFakeBadges } from '../../../test-both/helpers/getFakeBadge';
2021-09-18 00:30:08 +00:00
import { setupI18n } from '../../../util/setupI18n';
import enMessages from '../../../../_locales/en/messages.json';
2021-11-02 23:01:13 +00:00
import { StorybookThemeContext } from '../../../../.storybook/StorybookThemeContext';
import type { ConversationType } from '../../../state/ducks/conversations';
import type { Props } from './ConversationDetailsHeader';
import { ConversationDetailsHeader } from './ConversationDetailsHeader';
const i18n = setupI18n('en', enMessages);
const story = storiesOf(
'Components/Conversation/ConversationDetails/ConversationDetailsHeader',
module
);
2021-05-07 22:21:10 +00:00
const createConversation = (): ConversationType =>
getDefaultConversation({
id: '',
type: 'group',
lastUpdated: 0,
title: text('conversation title', 'Some Conversation'),
2021-10-21 21:04:43 +00:00
groupDescription: text(
'description',
'This is a group description. https://www.signal.org'
),
2021-05-07 22:21:10 +00:00
});
2021-11-02 23:01:13 +00:00
const Wrapper = (overrideProps: Partial<Props>) => {
const theme = React.useContext(StorybookThemeContext);
return (
<ConversationDetailsHeader
areWeASubscriber={false}
2021-11-02 23:01:13 +00:00
conversation={createConversation()}
i18n={i18n}
canEdit={false}
startEditing={action('startEditing')}
memberships={new Array(number('conversation members length', 0))}
isGroup
isMe={false}
theme={theme}
{...overrideProps}
/>
);
2021-11-02 23:01:13 +00:00
};
2021-11-02 23:01:13 +00:00
story.add('Basic', () => <Wrapper />);
2021-11-02 23:01:13 +00:00
story.add('Editable', () => <Wrapper canEdit />);
2021-11-02 23:01:13 +00:00
story.add('Basic no-description', () => (
<Wrapper
conversation={getDefaultConversation({
title: 'My Group',
type: 'group',
})}
/>
));
2021-11-02 23:01:13 +00:00
story.add('Editable no-description', () => (
<Wrapper
conversation={getDefaultConversation({
title: 'My Group',
type: 'group',
})}
/>
));
2021-11-02 23:01:13 +00:00
story.add('1:1', () => <Wrapper isGroup={false} badges={getFakeBadges(3)} />);
story.add('Note to self', () => <Wrapper isMe />);