2020-10-30 20:34:04 +00:00
|
|
|
// Copyright 2020 Signal Messenger, LLC
|
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2020-08-19 22:53:56 +00:00
|
|
|
import * as React from 'react';
|
|
|
|
import { action } from '@storybook/addon-actions';
|
|
|
|
import { boolean, select } from '@storybook/addon-knobs';
|
|
|
|
|
2021-09-18 00:30:08 +00:00
|
|
|
import { setupI18n } from '../util/setupI18n';
|
2020-08-19 22:53:56 +00:00
|
|
|
import enMessages from '../../_locales/en/messages.json';
|
2021-10-26 19:15:33 +00:00
|
|
|
import type { Props } from './ShortcutGuide';
|
|
|
|
import { ShortcutGuide } from './ShortcutGuide';
|
2020-08-19 22:53:56 +00:00
|
|
|
|
|
|
|
const i18n = setupI18n('en', enMessages);
|
2022-06-07 00:48:02 +00:00
|
|
|
|
|
|
|
export default {
|
|
|
|
title: 'Components/ShortcutGuide',
|
|
|
|
};
|
2020-08-19 22:53:56 +00:00
|
|
|
|
|
|
|
const createProps = (overrideProps: Partial<Props> = {}): Props => ({
|
|
|
|
i18n,
|
|
|
|
close: action('close'),
|
|
|
|
hasInstalledStickers: boolean(
|
|
|
|
'hasInstalledStickers',
|
|
|
|
overrideProps.hasInstalledStickers || false
|
|
|
|
),
|
|
|
|
platform: select(
|
|
|
|
'platform',
|
|
|
|
{
|
|
|
|
macOS: 'darwin',
|
|
|
|
other: 'other',
|
|
|
|
},
|
|
|
|
overrideProps.platform || 'other'
|
|
|
|
),
|
|
|
|
});
|
|
|
|
|
2022-11-18 00:45:19 +00:00
|
|
|
export function Default(): JSX.Element {
|
2020-08-19 22:53:56 +00:00
|
|
|
const props = createProps({});
|
|
|
|
return <ShortcutGuide {...props} />;
|
2022-11-18 00:45:19 +00:00
|
|
|
}
|
2020-08-19 22:53:56 +00:00
|
|
|
|
2022-11-18 00:45:19 +00:00
|
|
|
export function Mac(): JSX.Element {
|
2020-08-19 22:53:56 +00:00
|
|
|
const props = createProps({ platform: 'darwin' });
|
|
|
|
return <ShortcutGuide {...props} />;
|
2022-11-18 00:45:19 +00:00
|
|
|
}
|
2020-08-19 22:53:56 +00:00
|
|
|
|
2022-11-18 00:45:19 +00:00
|
|
|
export function HasStickers(): JSX.Element {
|
2020-08-19 22:53:56 +00:00
|
|
|
const props = createProps({ hasInstalledStickers: true });
|
|
|
|
return <ShortcutGuide {...props} />;
|
2022-11-18 00:45:19 +00:00
|
|
|
}
|