// Copyright 2023 Signal Messenger, LLC // SPDX-License-Identifier: AGPL-3.0-only import React, { useContext } from 'react'; import type { CSSProperties } from 'react'; import { action } from '@storybook/addon-actions'; import type { Meta } from '@storybook/react'; import type { ButtonProps } from './PlaybackButton'; import { PlaybackButton } from './PlaybackButton'; import { StorybookThemeContext } from '../../.storybook/StorybookThemeContext'; import { ThemeType } from '../types/Util'; export default { title: 'components/PlaybackButton', component: PlaybackButton, } satisfies Meta; const rowStyles: CSSProperties = { display: 'flex', flexDirection: 'row', padding: 10, }; export function Default(): JSX.Element { const theme = useContext(StorybookThemeContext); const themeIncomingColor = theme === ThemeType.light ? '#e9e9e9' : '#3b3b3b'; return ( <> {(['message', 'draft', 'mini'] as const).map(variant => ( <> {(['incoming', 'outgoing'] as const).map(context => (
{( [ 'play', 'pause', 'not-downloaded', 'downloading', 'computing', ] as const ).map(mod => ( ))}
))} ))} ); }