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

34 lines
882 B
TypeScript
Raw Normal View History

2020-10-30 20:34:04 +00:00
// Copyright 2020 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
2020-08-24 13:57:00 +00:00
import * as React from 'react';
import { number } from '@storybook/addon-knobs';
import { storiesOf } from '@storybook/react';
import { LastSeenIndicator, Props } from './LastSeenIndicator';
2021-09-18 00:30:08 +00:00
import { setupI18n } from '../../util/setupI18n';
2020-08-24 13:57:00 +00:00
import enMessages from '../../../_locales/en/messages.json';
2020-09-14 19:51:27 +00:00
2020-08-24 13:57:00 +00:00
const i18n = setupI18n('en', enMessages);
const story = storiesOf('Components/Conversation/LastSeenIndicator', module);
const createProps = (overrideProps: Partial<Props> = {}): Props => ({
count: number('count', overrideProps.count || 1),
i18n,
});
story.add('One', () => {
const props = createProps();
return <LastSeenIndicator {...props} />;
});
story.add('More than One', () => {
const props = createProps({
count: 5,
});
return <LastSeenIndicator {...props} />;
});