39 lines
944 B
TypeScript
39 lines
944 B
TypeScript
// Copyright 2020 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
import * as React from 'react';
|
|
|
|
import { number } from '@storybook/addon-knobs';
|
|
|
|
import type { Props } from './LastSeenIndicator';
|
|
import { LastSeenIndicator } from './LastSeenIndicator';
|
|
import { setupI18n } from '../../util/setupI18n';
|
|
import enMessages from '../../../_locales/en/messages.json';
|
|
|
|
const i18n = setupI18n('en', enMessages);
|
|
|
|
export default {
|
|
title: 'Components/Conversation/LastSeenIndicator',
|
|
};
|
|
|
|
const createProps = (overrideProps: Partial<Props> = {}): Props => ({
|
|
count: number('count', overrideProps.count || 1),
|
|
i18n,
|
|
});
|
|
|
|
export function One(): JSX.Element {
|
|
const props = createProps();
|
|
return <LastSeenIndicator {...props} />;
|
|
}
|
|
|
|
export function MoreThanOne(): JSX.Element {
|
|
const props = createProps({
|
|
count: 5,
|
|
});
|
|
|
|
return <LastSeenIndicator {...props} />;
|
|
}
|
|
|
|
MoreThanOne.story = {
|
|
name: 'More than One',
|
|
};
|