* Properly type Modal props to ensure useful typescript checking * delint * Iterate * Iterate * Fix modal.close loop * Iterate * Fix tests * Add comment * Fix test
85 lines
2.8 KiB
TypeScript
85 lines
2.8 KiB
TypeScript
/*
|
|
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 dis from "../../../dispatcher/dispatcher";
|
|
import { _t } from "../../../languageHandler";
|
|
import SdkConfig from "../../../SdkConfig";
|
|
import Modal from "../../../Modal";
|
|
import BaseDialog from "./BaseDialog";
|
|
import DialogButtons from "../elements/DialogButtons";
|
|
import QuestionDialog from "./QuestionDialog";
|
|
|
|
interface IProps {
|
|
onFinished(logout?: boolean): void;
|
|
}
|
|
|
|
const CryptoStoreTooNewDialog: React.FC<IProps> = (props: IProps) => {
|
|
const brand = SdkConfig.get().brand;
|
|
|
|
const _onLogoutClicked = (): void => {
|
|
Modal.createDialog(QuestionDialog, {
|
|
title: _t("Sign out"),
|
|
description: _t(
|
|
"To avoid losing your chat history, you must export your room keys " +
|
|
"before logging out. You will need to go back to the newer version of " +
|
|
"%(brand)s to do this",
|
|
{ brand },
|
|
),
|
|
button: _t("Sign out"),
|
|
focus: false,
|
|
onFinished: (doLogout) => {
|
|
if (doLogout) {
|
|
dis.dispatch({ action: "logout" });
|
|
props.onFinished(true);
|
|
}
|
|
},
|
|
});
|
|
};
|
|
|
|
const description = _t(
|
|
"You've previously used a newer version of %(brand)s with this session. " +
|
|
"To use this version again with end to end encryption, you will " +
|
|
"need to sign out and back in again.",
|
|
{ brand },
|
|
);
|
|
|
|
return (
|
|
<BaseDialog
|
|
className="mx_CryptoStoreTooNewDialog"
|
|
contentId="mx_Dialog_content"
|
|
title={_t("Incompatible Database")}
|
|
hasCancel={false}
|
|
onFinished={props.onFinished}
|
|
>
|
|
<div className="mx_Dialog_content" id="mx_Dialog_content">
|
|
{description}
|
|
</div>
|
|
<DialogButtons
|
|
primaryButton={_t("Continue With Encryption Disabled")}
|
|
hasCancel={false}
|
|
onPrimaryButtonClick={() => props.onFinished(false)}
|
|
>
|
|
<button onClick={_onLogoutClicked}>{_t("Sign out")}</button>
|
|
</DialogButtons>
|
|
</BaseDialog>
|
|
);
|
|
};
|
|
|
|
export default CryptoStoreTooNewDialog;
|