mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-06-04 22:13:20 +01:00
38e6bd911c
Co-authored-by: Jamie <113370520+jamiebuilds-signal@users.noreply.github.com>
45 lines
1.2 KiB
TypeScript
45 lines
1.2 KiB
TypeScript
// Copyright 2021 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
import type { JSX } from 'react';
|
|
|
|
import { action } from '@storybook/addon-actions';
|
|
import type { Meta } from '@storybook/react';
|
|
import { InstallScreenError } from '../../types/InstallScreen.std.ts';
|
|
import type { Props } from './InstallScreenErrorStep.dom.tsx';
|
|
import { InstallScreenErrorStep } from './InstallScreenErrorStep.dom.tsx';
|
|
|
|
const { i18n } = window.SignalContext;
|
|
|
|
export default {
|
|
title: 'Components/InstallScreen/InstallScreenErrorStep',
|
|
} satisfies Meta<Props>;
|
|
|
|
const defaultProps = {
|
|
i18n,
|
|
quit: action('quit'),
|
|
tryAgain: action('tryAgain'),
|
|
};
|
|
|
|
export const _TooManyDevices = (): JSX.Element => (
|
|
<InstallScreenErrorStep
|
|
{...defaultProps}
|
|
error={InstallScreenError.TooManyDevices}
|
|
/>
|
|
);
|
|
|
|
export const _TooOld = (): JSX.Element => (
|
|
<InstallScreenErrorStep {...defaultProps} error={InstallScreenError.TooOld} />
|
|
);
|
|
|
|
export const __TooOld = (): JSX.Element => (
|
|
<InstallScreenErrorStep {...defaultProps} error={InstallScreenError.TooOld} />
|
|
);
|
|
|
|
export const _ConnectionFailed = (): JSX.Element => (
|
|
<InstallScreenErrorStep
|
|
{...defaultProps}
|
|
error={InstallScreenError.ConnectionFailed}
|
|
/>
|
|
);
|