/* Copyright 2017 Vector Creations Ltd Copyright 2018 New Vector Ltd Copyright 2020 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 SdkConfig from "../../../SdkConfig"; import Modal from "../../../Modal"; import { _t } from "../../../languageHandler"; import QuestionDialog from "./QuestionDialog"; import BugReportDialog from "./BugReportDialog"; import BaseDialog from "./BaseDialog"; import DialogButtons from "../elements/DialogButtons"; interface IProps { error: unknown; onFinished(clear?: boolean): void; } export default class SessionRestoreErrorDialog extends React.Component { private sendBugReport = (): void => { Modal.createDialog(BugReportDialog, { error: this.props.error, }); }; private onClearStorageClick = (): void => { Modal.createDialog(QuestionDialog, { title: _t("action|sign_out"), description:
{_t("error|session_restore|clear_storage_description")}
, button: _t("action|sign_out"), danger: true, onFinished: this.props.onFinished, }); }; private onRefreshClick = (): void => { // Is this likely to help? Probably not, but giving only one button // that clears your storage seems awful. window.location.reload(); }; public render(): React.ReactNode { const brand = SdkConfig.get().brand; const clearStorageButton = ( ); let dialogButtons; if (SdkConfig.get().bug_report_endpoint_url) { dialogButtons = ( {clearStorageButton} ); } else { dialogButtons = ( {clearStorageButton} ); } return (

{_t("error|session_restore|description_1")}

{_t("error|session_restore|description_2", { brand })}

{_t("error|session_restore|description_3")}

{dialogButtons}
); } }