signal-desktop/ts/components/installScreen/InstallScreenQrCodeNotScannedStep.tsx

180 lines
5.2 KiB
TypeScript

// Copyright 2021 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import type { ReactElement, ReactNode } from 'react';
import React from 'react';
import classNames from 'classnames';
import type { LocalizerType } from '../../types/Util';
import { missingCaseError } from '../../util/missingCaseError';
import type { Loadable } from '../../util/loadable';
import { LoadingState } from '../../util/loadable';
import { Intl } from '../Intl';
import { Spinner } from '../Spinner';
import { QrCode } from '../QrCode';
import { TitlebarDragArea } from '../TitlebarDragArea';
import { InstallScreenSignalLogo } from './InstallScreenSignalLogo';
import { InstallScreenUpdateDialog } from './InstallScreenUpdateDialog';
import { getClassNamesFor } from '../../util/getClassNamesFor';
import type { UpdatesStateType } from '../../state/ducks/updates';
// We can't always use destructuring assignment because of the complexity of this props
// type.
type PropsType = Readonly<{
i18n: LocalizerType;
provisioningUrl: Loadable<string>;
hasExpired?: boolean;
updates: UpdatesStateType;
currentVersion: string;
OS: string;
retryGetQrCode: () => void;
startUpdate: () => void;
}>;
const getQrCodeClassName = getClassNamesFor(
'module-InstallScreenQrCodeNotScannedStep__qr-code'
);
export function InstallScreenQrCodeNotScannedStep({
currentVersion,
hasExpired,
i18n,
OS,
provisioningUrl,
retryGetQrCode,
startUpdate,
updates,
}: Readonly<PropsType>): ReactElement {
return (
<div className="module-InstallScreenQrCodeNotScannedStep">
<TitlebarDragArea />
<InstallScreenSignalLogo />
{hasExpired && (
<InstallScreenUpdateDialog
i18n={i18n}
{...updates}
startUpdate={startUpdate}
currentVersion={currentVersion}
OS={OS}
/>
)}
<div className="module-InstallScreenQrCodeNotScannedStep__contents">
<InstallScreenQrCode
i18n={i18n}
{...provisioningUrl}
retryGetQrCode={retryGetQrCode}
/>
<div className="module-InstallScreenQrCodeNotScannedStep__instructions">
<h1>{i18n('icu:Install__scan-this-code')}</h1>
<ol>
<li>{i18n('icu:Install__instructions__1')}</li>
<li>
<Intl
i18n={i18n}
id="icu:Install__instructions__2"
components={{
settings: (
<strong>
{i18n('icu:Install__instructions__2__settings')}
</strong>
),
linkedDevices: <strong>{i18n('icu:linkedDevices')}</strong>,
}}
/>
</li>
<li>
<Intl
i18n={i18n}
id="icu:Install__instructions__3"
components={{
plusButton: (
<div
className="module-InstallScreenQrCodeNotScannedStep__android-plus"
aria-label="+"
/>
),
linkNewDevice: <strong>{i18n('icu:linkNewDevice')}</strong>,
}}
/>
</li>
</ol>
<a href="https://support.signal.org/hc/articles/360007320451#desktop_multiple_device">
{i18n('icu:Install__support-link')}
</a>
</div>
</div>
</div>
);
}
function InstallScreenQrCode(
props: Loadable<string> & { i18n: LocalizerType; retryGetQrCode: () => void }
): ReactElement {
const { i18n } = props;
let contents: ReactNode;
switch (props.loadingState) {
case LoadingState.Loading:
contents = <Spinner size="24px" svgSize="small" />;
break;
case LoadingState.LoadFailed:
contents = (
<span className={classNames(getQrCodeClassName('__error-message'))}>
<Intl
i18n={i18n}
id="icu:Install__qr-failed-load"
components={{
// eslint-disable-next-line react/no-unstable-nested-components
retry: children => (
<button
className={getQrCodeClassName('__link')}
onClick={props.retryGetQrCode}
onKeyDown={ev => {
if (ev.key === 'Enter') {
props.retryGetQrCode();
ev.preventDefault();
ev.stopPropagation();
}
}}
type="button"
>
{children}
</button>
),
}}
/>
</span>
);
break;
case LoadingState.Loaded:
contents = (
<QrCode
alt={i18n('icu:Install__scan-this-code')}
className={getQrCodeClassName('__code')}
data={props.value}
/>
);
break;
default:
throw missingCaseError(props);
}
return (
<div
className={classNames(
getQrCodeClassName(''),
props.loadingState === LoadingState.Loaded &&
getQrCodeClassName('--loaded'),
props.loadingState === LoadingState.LoadFailed &&
getQrCodeClassName('--load-failed')
)}
>
{contents}
</div>
);
}