108 lines
2.6 KiB
TypeScript
108 lines
2.6 KiB
TypeScript
// Copyright 2021 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
import React, { useEffect, useState } from 'react';
|
|
|
|
import { setupI18n } from '../../util/setupI18n';
|
|
import enMessages from '../../../_locales/en/messages.json';
|
|
|
|
import type { Loadable } from '../../util/loadable';
|
|
import { LoadingState } from '../../util/loadable';
|
|
import { InstallScreenQrCodeNotScannedStep } from './InstallScreenQrCodeNotScannedStep';
|
|
|
|
const i18n = setupI18n('en', enMessages);
|
|
|
|
export default {
|
|
title: 'Components/InstallScreen/InstallScreenQrCodeNotScannedStep',
|
|
};
|
|
|
|
const Simulation = ({ finalResult }: { finalResult: Loadable<string> }) => {
|
|
const [provisioningUrl, setProvisioningUrl] = useState<Loadable<string>>({
|
|
loadingState: LoadingState.Loading,
|
|
});
|
|
|
|
useEffect(() => {
|
|
const timeout = setTimeout(() => {
|
|
setProvisioningUrl(finalResult);
|
|
}, 2000);
|
|
return () => {
|
|
clearTimeout(timeout);
|
|
};
|
|
}, [finalResult]);
|
|
|
|
return (
|
|
<InstallScreenQrCodeNotScannedStep
|
|
i18n={i18n}
|
|
provisioningUrl={provisioningUrl}
|
|
/>
|
|
);
|
|
};
|
|
|
|
export const QrCodeLoading = (): JSX.Element => (
|
|
<InstallScreenQrCodeNotScannedStep
|
|
i18n={i18n}
|
|
provisioningUrl={{
|
|
loadingState: LoadingState.Loading,
|
|
}}
|
|
/>
|
|
);
|
|
|
|
QrCodeLoading.story = {
|
|
name: 'QR code loading',
|
|
};
|
|
|
|
export const QrCodeFailedToLoad = (): JSX.Element => (
|
|
<InstallScreenQrCodeNotScannedStep
|
|
i18n={i18n}
|
|
provisioningUrl={{
|
|
loadingState: LoadingState.LoadFailed,
|
|
error: new Error('uh oh'),
|
|
}}
|
|
/>
|
|
);
|
|
|
|
QrCodeFailedToLoad.story = {
|
|
name: 'QR code failed to load',
|
|
};
|
|
|
|
export const QrCodeLoaded = (): JSX.Element => (
|
|
<InstallScreenQrCodeNotScannedStep
|
|
i18n={i18n}
|
|
provisioningUrl={{
|
|
loadingState: LoadingState.Loaded,
|
|
value:
|
|
'https://example.com/fake-signal-link?uuid=56cdd548-e595-4962-9a27-3f1e8210a959&pub_key=SW4gdGhlIHZhc3QsIGRlZXAgZm9yZXN0IG9mIEh5cnVsZS4uLg%3D%3D',
|
|
}}
|
|
/>
|
|
);
|
|
|
|
QrCodeLoaded.story = {
|
|
name: 'QR code loaded',
|
|
};
|
|
|
|
export const SimulatedLoading = (): JSX.Element => (
|
|
<Simulation
|
|
finalResult={{
|
|
loadingState: LoadingState.Loaded,
|
|
value:
|
|
'https://example.com/fake-signal-link?uuid=56cdd548-e595-4962-9a27-3f1e8210a959&pub_key=SW4gdGhlIHZhc3QsIGRlZXAgZm9yZXN0IG9mIEh5cnVsZS4uLg%3D%3D',
|
|
}}
|
|
/>
|
|
);
|
|
|
|
SimulatedLoading.story = {
|
|
name: 'Simulated loading',
|
|
};
|
|
|
|
export const SimulatedFailure = (): JSX.Element => (
|
|
<Simulation
|
|
finalResult={{
|
|
loadingState: LoadingState.LoadFailed,
|
|
error: new Error('uh oh'),
|
|
}}
|
|
/>
|
|
);
|
|
|
|
SimulatedFailure.story = {
|
|
name: 'Simulated failure',
|
|
};
|