59 lines
1.6 KiB
TypeScript
59 lines
1.6 KiB
TypeScript
// Copyright 2020 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
import * as React from 'react';
|
|
import type { Meta, Story } from '@storybook/react';
|
|
import { action } from '@storybook/addon-actions';
|
|
|
|
import { setupI18n } from '../../util/setupI18n';
|
|
import enMessages from '../../../_locales/en/messages.json';
|
|
import type { ScrollDownButtonPropsType } from './ScrollDownButton';
|
|
import { ScrollDownButton, ScrollDownButtonVariant } from './ScrollDownButton';
|
|
|
|
const i18n = setupI18n('en', enMessages);
|
|
|
|
const createProps = (
|
|
overrideProps: Partial<ScrollDownButtonPropsType> = {}
|
|
): ScrollDownButtonPropsType => ({
|
|
variant: ScrollDownButtonVariant.UNREAD_MESSAGES,
|
|
i18n,
|
|
onClick: action('scrollDown'),
|
|
...overrideProps,
|
|
});
|
|
|
|
export default {
|
|
title: 'Components/Conversation/ScrollDownButton',
|
|
component: ScrollDownButton,
|
|
argTypes: {
|
|
count: {
|
|
control: { type: 'radio' },
|
|
options: {
|
|
None: undefined,
|
|
Some: 5,
|
|
Plenty: 85,
|
|
'Please Stop': 1000,
|
|
},
|
|
},
|
|
},
|
|
} as Meta;
|
|
|
|
// eslint-disable-next-line react/function-component-definition
|
|
const Template: Story<ScrollDownButtonPropsType> = args => (
|
|
<ScrollDownButton {...args} />
|
|
);
|
|
|
|
export const UnreadMessages = Template.bind({});
|
|
UnreadMessages.args = createProps({
|
|
variant: ScrollDownButtonVariant.UNREAD_MESSAGES,
|
|
});
|
|
UnreadMessages.story = {
|
|
name: 'UnreadMessages',
|
|
};
|
|
|
|
export const UnreadMentions = Template.bind({});
|
|
UnreadMentions.args = createProps({
|
|
variant: ScrollDownButtonVariant.UNREAD_MENTIONS,
|
|
});
|
|
UnreadMentions.story = {
|
|
name: 'UnreadMentions',
|
|
};
|