mirror of
https://github.com/element-hq/element-web
synced 2024-11-24 18:25:49 +03:00
Close any open modals on logout (#12777)
* Close any open modals on logout Split out from https://github.com/matrix-org/matrix-react-sdk/pull/12666 * Add test
This commit is contained in:
parent
2fd291c23c
commit
5308c91842
2 changed files with 42 additions and 1 deletions
|
@ -22,9 +22,10 @@ import { IDeferred, defer, sleep } from "matrix-js-sdk/src/utils";
|
||||||
import { TypedEventEmitter } from "matrix-js-sdk/src/matrix";
|
import { TypedEventEmitter } from "matrix-js-sdk/src/matrix";
|
||||||
import { Glass } from "@vector-im/compound-web";
|
import { Glass } from "@vector-im/compound-web";
|
||||||
|
|
||||||
import dis from "./dispatcher/dispatcher";
|
import dis, { defaultDispatcher } from "./dispatcher/dispatcher";
|
||||||
import AsyncWrapper from "./AsyncWrapper";
|
import AsyncWrapper from "./AsyncWrapper";
|
||||||
import { Defaultize } from "./@types/common";
|
import { Defaultize } from "./@types/common";
|
||||||
|
import { ActionPayload } from "./dispatcher/payloads";
|
||||||
|
|
||||||
const DIALOG_CONTAINER_ID = "mx_Dialog_Container";
|
const DIALOG_CONTAINER_ID = "mx_Dialog_Container";
|
||||||
const STATIC_DIALOG_CONTAINER_ID = "mx_Dialog_StaticContainer";
|
const STATIC_DIALOG_CONTAINER_ID = "mx_Dialog_StaticContainer";
|
||||||
|
@ -114,6 +115,21 @@ export class ModalManager extends TypedEventEmitter<ModalManagerEvent, HandlerMa
|
||||||
return container;
|
return container;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public constructor() {
|
||||||
|
super();
|
||||||
|
|
||||||
|
// We never unregister this, but the Modal class is a singleton so there would
|
||||||
|
// never be an opportunity to do so anyway, except in the entirely theoretical
|
||||||
|
// scenario of instantiating a non-singleton instance of the Modal class.
|
||||||
|
defaultDispatcher.register(this.onAction);
|
||||||
|
}
|
||||||
|
|
||||||
|
private onAction = (payload: ActionPayload): void => {
|
||||||
|
if (payload.action === "logout") {
|
||||||
|
this.forceCloseAllModals();
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
public toggleCurrentDialogVisibility(): void {
|
public toggleCurrentDialogVisibility(): void {
|
||||||
const modal = this.getCurrentModal();
|
const modal = this.getCurrentModal();
|
||||||
if (!modal) return;
|
if (!modal) return;
|
||||||
|
|
|
@ -16,6 +16,7 @@ limitations under the License.
|
||||||
|
|
||||||
import Modal from "../src/Modal";
|
import Modal from "../src/Modal";
|
||||||
import QuestionDialog from "../src/components/views/dialogs/QuestionDialog";
|
import QuestionDialog from "../src/components/views/dialogs/QuestionDialog";
|
||||||
|
import defaultDispatcher from "../src/dispatcher/dispatcher";
|
||||||
|
|
||||||
describe("Modal", () => {
|
describe("Modal", () => {
|
||||||
test("forceCloseAllModals should close all open modals", () => {
|
test("forceCloseAllModals should close all open modals", () => {
|
||||||
|
@ -29,4 +30,28 @@ describe("Modal", () => {
|
||||||
Modal.forceCloseAllModals();
|
Modal.forceCloseAllModals();
|
||||||
expect(Modal.hasDialogs()).toBe(false);
|
expect(Modal.hasDialogs()).toBe(false);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
test("open modals should be closed on logout", () => {
|
||||||
|
const modal1OnFinished = jest.fn();
|
||||||
|
const modal2OnFinished = jest.fn();
|
||||||
|
|
||||||
|
Modal.createDialog(QuestionDialog, {
|
||||||
|
title: "Test dialog 1",
|
||||||
|
description: "This is a test dialog",
|
||||||
|
button: "Word",
|
||||||
|
onFinished: modal1OnFinished,
|
||||||
|
});
|
||||||
|
|
||||||
|
Modal.createDialog(QuestionDialog, {
|
||||||
|
title: "Test dialog 2",
|
||||||
|
description: "This is a test dialog",
|
||||||
|
button: "Word",
|
||||||
|
onFinished: modal2OnFinished,
|
||||||
|
});
|
||||||
|
|
||||||
|
defaultDispatcher.dispatch({ action: "logout" }, true);
|
||||||
|
|
||||||
|
expect(modal1OnFinished).toHaveBeenCalled();
|
||||||
|
expect(modal2OnFinished).toHaveBeenCalled();
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue