502ea174ab
Co-authored-by: Scott Nonnenberg <scott@signal.org>
37 lines
1.1 KiB
TypeScript
37 lines
1.1 KiB
TypeScript
// Copyright 2022 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
import * as React from 'react';
|
|
import type { Meta } from '@storybook/react';
|
|
import { setupI18n } from '../../util/setupI18n';
|
|
import enMessages from '../../../_locales/en/messages.json';
|
|
import type { PropsType } from './TimelineFloatingHeader';
|
|
import { TimelineFloatingHeader } from './TimelineFloatingHeader';
|
|
|
|
const i18n = setupI18n('en', enMessages);
|
|
|
|
export default {
|
|
title: 'Components/TimelineFloatingHeader',
|
|
argTypes: {
|
|
isLoading: { control: { type: 'boolean' } },
|
|
visible: { control: { type: 'boolean' } },
|
|
},
|
|
args: {
|
|
isLoading: false,
|
|
visible: false,
|
|
i18n,
|
|
timestamp: Date.now(),
|
|
},
|
|
} satisfies Meta<PropsType>;
|
|
|
|
export function Default(args: PropsType): JSX.Element {
|
|
return <TimelineFloatingHeader {...args} />;
|
|
}
|
|
|
|
export function Visible(args: PropsType): JSX.Element {
|
|
return <TimelineFloatingHeader {...args} visible />;
|
|
}
|
|
|
|
export function Loading(args: PropsType): JSX.Element {
|
|
return <TimelineFloatingHeader {...args} visible isLoading />;
|
|
}
|