/* 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, FailureReason, LoginWithQRFailureReason, Phase } from "./LoginWithQR"; interface IProps { phase: Phase; code?: string; onClick(type: Click): Promise; failureReason?: FailureReason; 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("auth|qr_code_login|error_linking_incomplete"); break; case RendezvousFailureReason.InvalidCode: cancellationMessage = _t("auth|qr_code_login|error_invalid_scanned_code"); break; case RendezvousFailureReason.UnsupportedAlgorithm: cancellationMessage = _t("auth|qr_code_login|error_device_unsupported"); break; case RendezvousFailureReason.UserDeclined: cancellationMessage = _t("auth|qr_code_login|error_request_declined"); break; case RendezvousFailureReason.OtherDeviceAlreadySignedIn: cancellationMessage = _t("auth|qr_code_login|error_device_already_signed_in"); break; case RendezvousFailureReason.OtherDeviceNotSignedIn: cancellationMessage = _t("auth|qr_code_login|error_device_not_signed_in"); break; case RendezvousFailureReason.UserCancelled: cancellationMessage = _t("auth|qr_code_login|error_request_cancelled"); break; case LoginWithQRFailureReason.RateLimited: cancellationMessage = _t("auth|qr_code_login|error_rate_limited"); break; case RendezvousFailureReason.Unknown: cancellationMessage = _t("auth|qr_code_login|error_unexpected"); break; case RendezvousFailureReason.HomeserverLacksSupport: cancellationMessage = _t("auth|qr_code_login|error_homeserver_lacks_support"); break; default: cancellationMessage = _t("auth|qr_code_login|error_request_cancelled"); break; } title = _t("timeline|m.call.invite|failed_connection"); centreTitle = true; titleIcon = ; backButton = false; main =

{cancellationMessage}

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

{_t("auth|qr_code_login|confirm_code_match")}

{this.props.confirmationDigits}
{_t("auth|qr_code_login|approve_access_warning")}
); 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("auth|qr_code_login|scan_code_instruction")}

  1. {_t("auth|qr_code_login|start_at_sign_in_screen")}
  2. {_t("auth|qr_code_login|select_qr_code", { scanQRCode: _t("auth|qr_code_login|scan_qr_code"), })}
  3. {_t("auth|qr_code_login|review_and_approve")}
{code} ); } else { main = this.simpleSpinner(); buttons = this.cancelButton(); } break; case Phase.Loading: main = this.simpleSpinner(); break; case Phase.Connecting: main = this.simpleSpinner(_t("auth|qr_code_login|connecting")); buttons = this.cancelButton(); break; case Phase.WaitingForDevice: main = this.simpleSpinner(_t("auth|qr_code_login|waiting_for_device")); buttons = this.cancelButton(); break; case Phase.Verifying: title = _t("common|success"); centreTitle = true; main = this.simpleSpinner(_t("auth|qr_code_login|completing_setup")); break; } return (
{backButton ? ( ) : null}

{titleIcon} {title}

{main}
{buttons}
); } }