/* Copyright 2022 The Matrix.org Foundation C.I.C. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ import React from "react"; import { RendezvousFailureReason } from "matrix-js-sdk/src/rendezvous"; import { _t } from "../../../languageHandler"; import AccessibleButton from "../elements/AccessibleButton"; import QRCode from "../elements/QRCode"; import Spinner from "../elements/Spinner"; import { Icon as BackButtonIcon } from "../../../../res/img/element-icons/back.svg"; import { Icon as DevicesIcon } from "../../../../res/img/element-icons/devices.svg"; import { Icon as WarningBadge } from "../../../../res/img/element-icons/warning-badge.svg"; import { Icon as InfoIcon } from "../../../../res/img/element-icons/i.svg"; import { Click, Phase } from "./LoginWithQR"; interface IProps { phase: Phase; code?: string; onClick(type: Click): Promise; failureReason?: RendezvousFailureReason; confirmationDigits?: string; } /** * A component that implements the UI for sign in and E2EE set up with a QR code. * * This uses the unstable feature of MSC3906: https://github.com/matrix-org/matrix-spec-proposals/pull/3906 */ export default class LoginWithQRFlow extends React.Component { public constructor(props: IProps) { super(props); } private handleClick = (type: Click): ((e: React.FormEvent) => Promise) => { return async (e: React.FormEvent): Promise => { e.preventDefault(); await this.props.onClick(type); }; }; private cancelButton = (): JSX.Element => ( {_t("action|cancel")} ); private simpleSpinner = (description?: string): JSX.Element => { return (
{description &&

{description}

}
); }; public render(): React.ReactNode { let title = ""; let titleIcon: JSX.Element | undefined; let main: JSX.Element | undefined; let buttons: JSX.Element | undefined; let backButton = true; let cancellationMessage: string | undefined; let centreTitle = false; switch (this.props.phase) { case Phase.Error: switch (this.props.failureReason) { case RendezvousFailureReason.Expired: cancellationMessage = _t("The linking wasn't completed in the required time."); break; case RendezvousFailureReason.InvalidCode: cancellationMessage = _t("The scanned code is invalid."); break; case RendezvousFailureReason.UnsupportedAlgorithm: cancellationMessage = _t("Linking with this device is not supported."); break; case RendezvousFailureReason.UserDeclined: cancellationMessage = _t("The request was declined on the other device."); break; case RendezvousFailureReason.OtherDeviceAlreadySignedIn: cancellationMessage = _t("The other device is already signed in."); break; case RendezvousFailureReason.OtherDeviceNotSignedIn: cancellationMessage = _t("The other device isn't signed in."); break; case RendezvousFailureReason.UserCancelled: cancellationMessage = _t("The request was cancelled."); break; case RendezvousFailureReason.Unknown: cancellationMessage = _t("An unexpected error occurred."); break; case RendezvousFailureReason.HomeserverLacksSupport: cancellationMessage = _t("The homeserver doesn't support signing in another device."); break; default: cancellationMessage = _t("The request was cancelled."); break; } title = _t("Connection failed"); centreTitle = true; titleIcon = ; backButton = false; main =

{cancellationMessage}

; buttons = ( <> {_t("action|try_again")} {this.cancelButton()} ); break; case Phase.Connected: title = _t("Devices connected"); titleIcon = ; backButton = false; main = ( <>

{_t("Check that the code below matches with your other device:")}

{this.props.confirmationDigits}
{_t("By approving access for this device, it will have full access to your account.")}
); buttons = ( <> {_t("action|cancel")} {_t("action|approve")} ); break; case Phase.ShowingQR: title = _t("settings|sessions|sign_in_with_qr"); if (this.props.code) { const code = (
); main = ( <>

{_t("Scan the QR code below with your device that's signed out.")}

  1. {_t("Start at the sign in screen")}
  2. {_t("Select '%(scanQRCode)s'", { scanQRCode: _t("Scan QR code"), })}
  3. {_t("Review and approve the sign in")}
{code} ); } else { main = this.simpleSpinner(); buttons = this.cancelButton(); } break; case Phase.Loading: main = this.simpleSpinner(); break; case Phase.Connecting: main = this.simpleSpinner(_t("Connecting…")); buttons = this.cancelButton(); break; case Phase.WaitingForDevice: main = this.simpleSpinner(_t("Waiting for device to sign in")); buttons = this.cancelButton(); break; case Phase.Verifying: title = _t("common|success"); centreTitle = true; main = this.simpleSpinner(_t("Completing set up of your new device")); break; } return (
{backButton ? ( ) : null}

{titleIcon} {title}

{main}
{buttons}
); } }