signal-desktop/ts/components/MediaQualitySelector.stories.tsx

37 lines
1,004 B
TypeScript
Raw Normal View History

2021-06-25 16:08:16 +00:00
// Copyright 2021 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import React from 'react';
import { action } from '@storybook/addon-actions';
import { boolean } from '@storybook/addon-knobs';
import enMessages from '../../_locales/en/messages.json';
import type { PropsType } from './MediaQualitySelector';
import { MediaQualitySelector } from './MediaQualitySelector';
2021-09-18 00:30:08 +00:00
import { setupI18n } from '../util/setupI18n';
2021-06-25 16:08:16 +00:00
2022-06-07 00:48:02 +00:00
export default {
title: 'Components/MediaQualitySelector',
};
2021-06-25 16:08:16 +00:00
const i18n = setupI18n('en', enMessages);
const createProps = (overrideProps: Partial<PropsType> = {}): PropsType => ({
i18n,
isHighQuality: boolean('isHighQuality', Boolean(overrideProps.isHighQuality)),
onSelectQuality: action('onSelectQuality'),
});
2022-06-07 00:48:02 +00:00
export const StandardQuality = (): JSX.Element => (
2021-06-25 16:08:16 +00:00
<MediaQualitySelector {...createProps()} />
2022-06-07 00:48:02 +00:00
);
2021-06-25 16:08:16 +00:00
2022-06-07 00:48:02 +00:00
export const HighQuality = (): JSX.Element => (
2021-06-25 16:08:16 +00:00
<MediaQualitySelector
{...createProps({
isHighQuality: true,
})}
/>
2022-06-07 00:48:02 +00:00
);