mirror of
https://github.com/element-hq/element-web
synced 2024-11-25 02:35:48 +03:00
Show a warning dialog when user indicates a new session wasn't them
This commit is contained in:
parent
866fdd6185
commit
9ed83b8648
3 changed files with 30 additions and 1 deletions
|
@ -23,6 +23,7 @@ import VerificationRequestDialog from './VerificationRequestDialog';
|
||||||
import BaseDialog from './BaseDialog';
|
import BaseDialog from './BaseDialog';
|
||||||
import DialogButtons from '../elements/DialogButtons';
|
import DialogButtons from '../elements/DialogButtons';
|
||||||
import {MatrixClientPeg} from "../../../MatrixClientPeg";
|
import {MatrixClientPeg} from "../../../MatrixClientPeg";
|
||||||
|
import * as sdk from '../../../index';
|
||||||
|
|
||||||
@replaceableComponent("views.dialogs.NewSessionReviewDialog")
|
@replaceableComponent("views.dialogs.NewSessionReviewDialog")
|
||||||
export default class NewSessionReviewDialog extends React.PureComponent {
|
export default class NewSessionReviewDialog extends React.PureComponent {
|
||||||
|
@ -33,7 +34,24 @@ export default class NewSessionReviewDialog extends React.PureComponent {
|
||||||
}
|
}
|
||||||
|
|
||||||
onCancelClick = () => {
|
onCancelClick = () => {
|
||||||
this.props.onFinished(false);
|
const ErrorDialog = sdk.getComponent("dialogs.ErrorDialog");
|
||||||
|
Modal.createTrackedDialog("Verification failed", "insecure", ErrorDialog, {
|
||||||
|
headerImage: require("../../../../res/img/e2e/warning.svg"),
|
||||||
|
title: _t("Your account is not secure"),
|
||||||
|
description: <div>
|
||||||
|
{_t("One of the following may be compromised:")}
|
||||||
|
<ul>
|
||||||
|
<li>{_t("Your password")}</li>
|
||||||
|
<li>{_t("Your homeserver")}</li>
|
||||||
|
<li>{_t("This device, or the other device")}</li>
|
||||||
|
<li>{_t("The internet connection either device is using")}</li>
|
||||||
|
</ul>
|
||||||
|
<div>
|
||||||
|
{_t("We recomment you change your password and recovery key in Settings immediately")}
|
||||||
|
</div>
|
||||||
|
</div>,
|
||||||
|
onFinished: () => this.props.onFinished(false),
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
onContinueClick = async () => {
|
onContinueClick = async () => {
|
||||||
|
|
|
@ -42,6 +42,12 @@ export default class UnverifiedSessionToast extends React.PureComponent {
|
||||||
Modal.createTrackedDialog('New Session Review', 'Starting dialog', NewSessionReviewDialog, {
|
Modal.createTrackedDialog('New Session Review', 'Starting dialog', NewSessionReviewDialog, {
|
||||||
userId: MatrixClientPeg.get().getUserId(),
|
userId: MatrixClientPeg.get().getUserId(),
|
||||||
device,
|
device,
|
||||||
|
onFinished: (r) => {
|
||||||
|
if (!r) {
|
||||||
|
/* This'll come back false if the user clicks "this wasn't me" and saw a warning dialog */
|
||||||
|
this._onLaterClick();
|
||||||
|
}
|
||||||
|
},
|
||||||
}, null, /* priority = */ false, /* static = */ true);
|
}, null, /* priority = */ false, /* static = */ true);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -1572,6 +1572,11 @@
|
||||||
"Are you sure you want to sign out?": "Are you sure you want to sign out?",
|
"Are you sure you want to sign out?": "Are you sure you want to sign out?",
|
||||||
"Your homeserver doesn't seem to support this feature.": "Your homeserver doesn't seem to support this feature.",
|
"Your homeserver doesn't seem to support this feature.": "Your homeserver doesn't seem to support this feature.",
|
||||||
"Message edits": "Message edits",
|
"Message edits": "Message edits",
|
||||||
|
"Your account is not secure": "Your account is not secure",
|
||||||
|
"Your password": "Your password",
|
||||||
|
"This device, or the other device": "This device, or the other device",
|
||||||
|
"The internet connection either device is using": "The internet connection either device is using",
|
||||||
|
"We recomment you change your password and recovery key in Settings immediately": "We recomment you change your password and recovery key in Settings immediately",
|
||||||
"New session": "New session",
|
"New session": "New session",
|
||||||
"Use this session to verify your new one, granting it access to encrypted messages:": "Use this session to verify your new one, granting it access to encrypted messages:",
|
"Use this session to verify your new one, granting it access to encrypted messages:": "Use this session to verify your new one, granting it access to encrypted messages:",
|
||||||
"If you didn’t sign in to this session, your account may be compromised.": "If you didn’t sign in to this session, your account may be compromised.",
|
"If you didn’t sign in to this session, your account may be compromised.": "If you didn’t sign in to this session, your account may be compromised.",
|
||||||
|
|
Loading…
Reference in a new issue