// Copyright 2021 Signal Messenger, LLC // SPDX-License-Identifier: AGPL-3.0-only import type { ReactElement, ReactNode } from 'react'; import React, { useCallback } from 'react'; import classNames from 'classnames'; import type { LocalizerType } from '../../types/Util'; import { InstallScreenStep, InstallScreenQRCodeError, } from '../../types/InstallScreen'; import { missingCaseError } from '../../util/missingCaseError'; import type { Loadable } from '../../util/loadable'; import { LoadingState } from '../../util/loadable'; import { I18n } from '../I18n'; 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. export type PropsType = Readonly<{ i18n: LocalizerType; provisioningUrl: Loadable; hasExpired?: boolean; updates: UpdatesStateType; currentVersion: string; OS: string; isStaging: boolean; retryGetQrCode: () => void; startUpdate: () => void; forceUpdate: () => void; }>; const getQrCodeClassName = getClassNamesFor( 'module-InstallScreenQrCodeNotScannedStep__qr-code' ); const SUPPORT_PAGE = 'https://support.signal.org/hc/articles/360007320451#desktop_multiple_device'; export function InstallScreenQrCodeNotScannedStep({ currentVersion, hasExpired, i18n, isStaging, OS, provisioningUrl, retryGetQrCode, startUpdate, forceUpdate, updates, }: Readonly): ReactElement { return (
{hasExpired && ( )}

{i18n('icu:Install__scan-this-code')}

  1. {i18n('icu:Install__instructions__1')}
  2. {i18n('icu:Install__instructions__2__settings')} ), linkedDevices: {i18n('icu:linkedDevices')}, }} />
  3. {i18n('icu:linkNewDevice')}, }} />
{isStaging ? ( 'THIS IS A STAGING DESKTOP' ) : ( {i18n('icu:Install__support-link')} )}
); } function InstallScreenQrCode( props: Loadable & { i18n: LocalizerType; retryGetQrCode: () => void; } ): ReactElement { const { i18n } = props; let contents: ReactNode; switch (props.loadingState) { case LoadingState.Loading: contents = ; break; case LoadingState.LoadFailed: switch (props.error) { case InstallScreenQRCodeError.Timeout: contents = ( <> {i18n('icu:Install__qr-failed-load__error--timeout')} ); break; case InstallScreenQRCodeError.Unknown: contents = ( <> ); break; case InstallScreenQRCodeError.NetworkIssue: contents = ( <> {i18n('icu:Install__qr-failed-load__error--network')} {i18n('icu:Install__qr-failed-load__get-help')} ); break; default: throw missingCaseError(props.error); } break; case LoadingState.Loaded: contents = ( ); break; default: throw missingCaseError(props); } return (
{contents}
); } function RetryButton({ i18n, onClick, }: { i18n: LocalizerType; onClick: () => void; }): JSX.Element { const onKeyDown = useCallback( (ev: React.KeyboardEvent) => { if (ev.key === 'Enter') { ev.preventDefault(); ev.stopPropagation(); onClick(); } }, [onClick] ); return ( ); } function Paragraph(children: React.ReactNode): JSX.Element { return

{children}

; }