2020-10-30 20:34:04 +00:00
|
|
|
// Copyright 2020 Signal Messenger, LLC
|
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2020-08-26 21:09:30 +00:00
|
|
|
import * as React from 'react';
|
|
|
|
import { storiesOf } from '@storybook/react';
|
|
|
|
import { action } from '@storybook/addon-actions';
|
|
|
|
import { boolean } from '@storybook/addon-knobs';
|
|
|
|
|
2021-09-18 00:30:08 +00:00
|
|
|
import { setupI18n } from '../../util/setupI18n';
|
2020-08-26 21:09:30 +00:00
|
|
|
import enMessages from '../../../_locales/en/messages.json';
|
|
|
|
import { Props, ScrollDownButton } from './ScrollDownButton';
|
|
|
|
|
|
|
|
const i18n = setupI18n('en', enMessages);
|
|
|
|
|
|
|
|
const createProps = (overrideProps: Partial<Props> = {}): Props => ({
|
|
|
|
i18n,
|
|
|
|
withNewMessages: boolean(
|
|
|
|
'withNewMessages',
|
|
|
|
overrideProps.withNewMessages || false
|
|
|
|
),
|
|
|
|
scrollDown: action('scrollDown'),
|
|
|
|
conversationId: 'fake-conversation-id',
|
|
|
|
});
|
|
|
|
|
|
|
|
const stories = storiesOf('Components/Conversation/ScrollDownButton', module);
|
|
|
|
|
|
|
|
stories.add('No New Messages', () => {
|
|
|
|
const props = createProps();
|
|
|
|
|
|
|
|
return <ScrollDownButton {...props} />;
|
|
|
|
});
|
|
|
|
|
|
|
|
stories.add('New Messages', () => {
|
|
|
|
const props = createProps({ withNewMessages: true });
|
|
|
|
|
|
|
|
return <ScrollDownButton {...props} />;
|
|
|
|
});
|