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

65 lines
2.3 KiB
TypeScript
Raw Normal View History

2021-06-02 00:24:28 +00:00
// Copyright 2021 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import React from 'react';
import { text } from '@storybook/addon-knobs';
import { storiesOf } from '@storybook/react';
import type { PropsType } from './GroupDescription';
import { GroupDescription } from './GroupDescription';
2021-09-18 00:30:08 +00:00
import { setupI18n } from '../../util/setupI18n';
2021-06-02 00:24:28 +00:00
import enMessages from '../../../_locales/en/messages.json';
const i18n = setupI18n('en', enMessages);
const story = storiesOf('Components/Conversation/GroupDescription', module);
const createProps = (overrideProps: Partial<PropsType> = {}): PropsType => ({
i18n,
title: text('title', overrideProps.title || 'Sample Title'),
text: text('text', overrideProps.text || 'Default group description'),
});
story.add('Default', () => <GroupDescription {...createProps()} />);
story.add('Long', () => (
<GroupDescription
{...createProps({
2021-11-11 22:43:05 +00:00
text: 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas sed vehicula urna. Ut rhoncus, justo a vestibulum elementum, libero ligula molestie massa, et volutpat nibh ipsum sit amet enim. Vestibulum ac mi enim. Nulla fringilla justo justo, volutpat semper ex convallis quis. Proin posuere, mi at auctor tincidunt, magna turpis mattis nibh, ullamcorper vehicula lectus mauris in mauris. Nullam blandit sapien tortor, quis vehicula quam molestie nec. Nam sagittis dolor in eros dapibus scelerisque. Proin vitae ex sed magna lobortis tincidunt. Aenean dictum laoreet dolor, at suscipit ligula fermentum ac. Nam condimentum turpis quis sollicitudin rhoncus.',
2021-06-02 00:24:28 +00:00
})}
/>
));
2021-06-17 17:15:51 +00:00
story.add('With newlines', () => (
<GroupDescription
{...createProps({
text: 'This is long\n\nSo many lines\n\nToo many lines?',
})}
/>
));
story.add('With emoji', () => (
<GroupDescription
{...createProps({
text: '🍒🍩🌭',
})}
/>
));
story.add('With link', () => (
<GroupDescription
{...createProps({
2021-11-11 22:43:05 +00:00
text: 'I love https://example.com and http://example.com and example.com, but not https://user:bar@example.com',
2021-06-17 17:15:51 +00:00
})}
/>
));
story.add('Kitchen sink', () => (
<GroupDescription
{...createProps({
2021-11-11 22:43:05 +00:00
text: '🍒 https://example.com this is a long thing\nhttps://example.com on another line\nhttps://example.com',
2021-06-17 17:15:51 +00:00
})}
/>
));