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

68 lines
1.8 KiB
TypeScript
Raw Normal View History

2021-05-07 22:21:10 +00:00
// Copyright 2020-2021 Signal Messenger, LLC
2020-10-30 20:34:04 +00:00
// SPDX-License-Identifier: AGPL-3.0-only
import * as React from 'react';
import { storiesOf } from '@storybook/react';
2021-05-07 22:21:10 +00:00
import { getDefaultConversation } from '../../test-both/helpers/getDefaultConversation';
2021-09-18 00:30:08 +00:00
import { setupI18n } from '../../util/setupI18n';
2020-09-14 19:51:27 +00:00
import enMessages from '../../../_locales/en/messages.json';
import { ProfileChangeNotification } from './ProfileChangeNotification';
const i18n = setupI18n('en', enMessages);
storiesOf('Components/Conversation/ProfileChangeNotification', module)
.add('From contact', () => {
return (
<ProfileChangeNotification
i18n={i18n}
2021-05-07 22:21:10 +00:00
changedContact={getDefaultConversation({
id: 'some-guid',
type: 'direct',
title: 'Mr. Fire 🔥',
name: 'Mr. Fire 🔥',
2021-05-07 22:21:10 +00:00
})}
change={{
type: 'name',
oldName: 'Mr. Fire 🔥 Old',
newName: 'Mr. Fire 🔥 New',
}}
/>
);
})
.add('From non-contact', () => {
return (
<ProfileChangeNotification
i18n={i18n}
2021-05-07 22:21:10 +00:00
changedContact={getDefaultConversation({
id: 'some-guid',
type: 'direct',
title: 'Mr. Fire 🔥',
2021-05-07 22:21:10 +00:00
})}
change={{
type: 'name',
oldName: 'Mr. Fire 🔥 Old',
newName: 'Mr. Fire 🔥 New',
}}
/>
);
})
.add('From contact with long names before and after', () => {
return (
<ProfileChangeNotification
i18n={i18n}
changedContact={getDefaultConversation({
id: 'some-guid',
type: 'direct',
title: 'Mr. Fire 🔥',
})}
change={{
type: 'name',
oldName: '💅🤷🏽‍♀️🏯'.repeat(50),
newName: '☎️🎉🏝'.repeat(50),
}}
/>
);
});