mirror of
https://github.com/element-hq/element-web.git
synced 2024-12-16 02:02:10 +03:00
fd59a66523
This makes some Design-approved copy tweaks to the recent cross-signing flow changes.
69 lines
2.2 KiB
TypeScript
69 lines
2.2 KiB
TypeScript
/*
|
|
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 { _t } from '../languageHandler';
|
|
import dis from "../dispatcher/dispatcher";
|
|
import { MatrixClientPeg } from '../MatrixClientPeg';
|
|
import DeviceListener from '../DeviceListener';
|
|
import ToastStore from "../stores/ToastStore";
|
|
import GenericToast from "../components/views/toasts/GenericToast";
|
|
import { Action } from "../dispatcher/actions";
|
|
import { USER_SECURITY_TAB } from "../components/views/dialogs/UserSettingsDialog";
|
|
|
|
function toastKey(deviceId: string) {
|
|
return "unverified_session_" + deviceId;
|
|
}
|
|
|
|
export const showToast = async (deviceId: string) => {
|
|
const cli = MatrixClientPeg.get();
|
|
|
|
const onAccept = () => {
|
|
DeviceListener.sharedInstance().dismissUnverifiedSessions([deviceId]);
|
|
dis.dispatch({
|
|
action: Action.ViewUserSettings,
|
|
initialTabId: USER_SECURITY_TAB,
|
|
});
|
|
};
|
|
|
|
const onReject = () => {
|
|
DeviceListener.sharedInstance().dismissUnverifiedSessions([deviceId]);
|
|
};
|
|
|
|
const device = await cli.getDevice(deviceId);
|
|
|
|
ToastStore.sharedInstance().addOrReplaceToast({
|
|
key: toastKey(deviceId),
|
|
title: _t("New login. Was this you?"),
|
|
icon: "verification_warning",
|
|
props: {
|
|
description: device.display_name,
|
|
detail: _t("%(deviceId)s from %(ip)s", {
|
|
deviceId,
|
|
ip: device.last_seen_ip,
|
|
}),
|
|
acceptLabel: _t("Check your devices"),
|
|
onAccept,
|
|
rejectLabel: _t("Later"),
|
|
onReject,
|
|
},
|
|
component: GenericToast,
|
|
priority: 80,
|
|
});
|
|
};
|
|
|
|
export const hideToast = (deviceId: string) => {
|
|
ToastStore.sharedInstance().dismissToast(toastKey(deviceId));
|
|
};
|