2020-09-25 13:08:27 +00:00
|
|
|
/*
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
2021-10-22 22:23:32 +00:00
|
|
|
import { IModalWidgetOpenRequestData, IModalWidgetReturnData, Widget } from "matrix-widget-api";
|
|
|
|
import { logger } from "matrix-js-sdk/src/logger";
|
|
|
|
|
2020-09-25 13:08:27 +00:00
|
|
|
import { AsyncStoreWithClient } from "./AsyncStoreWithClient";
|
|
|
|
import defaultDispatcher from "../dispatcher/dispatcher";
|
|
|
|
import { ActionPayload } from "../dispatcher/payloads";
|
2021-06-29 12:11:58 +00:00
|
|
|
import Modal, { IHandle, IModal } from "../Modal";
|
2020-09-25 13:08:27 +00:00
|
|
|
import ModalWidgetDialog from "../components/views/dialogs/ModalWidgetDialog";
|
2021-06-29 12:11:58 +00:00
|
|
|
import { WidgetMessagingStore } from "./widgets/WidgetMessagingStore";
|
2021-10-15 14:30:53 +00:00
|
|
|
|
2020-09-25 13:08:27 +00:00
|
|
|
interface IState {
|
|
|
|
modal?: IModal<any>;
|
|
|
|
openedFromId?: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export class ModalWidgetStore extends AsyncStoreWithClient<IState> {
|
2022-08-30 19:13:39 +00:00
|
|
|
private static readonly internalInstance = (() => {
|
|
|
|
const instance = new ModalWidgetStore();
|
|
|
|
instance.start();
|
|
|
|
return instance;
|
|
|
|
})();
|
|
|
|
private modalInstance: IHandle<void[]> | null = null;
|
|
|
|
private openSourceWidgetId: string | null = null;
|
|
|
|
private openSourceWidgetRoomId: string | null = null;
|
2020-09-25 13:08:27 +00:00
|
|
|
|
|
|
|
private constructor() {
|
|
|
|
super(defaultDispatcher, {});
|
|
|
|
}
|
|
|
|
|
|
|
|
public static get instance(): ModalWidgetStore {
|
|
|
|
return ModalWidgetStore.internalInstance;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected async onAction(payload: ActionPayload): Promise<any> {
|
|
|
|
// nothing
|
|
|
|
}
|
|
|
|
|
2023-01-12 13:25:14 +00:00
|
|
|
public canOpenModalWidget = (): boolean => {
|
2020-09-25 13:08:27 +00:00
|
|
|
return !this.modalInstance;
|
|
|
|
};
|
|
|
|
|
2021-02-02 14:22:28 +00:00
|
|
|
public openModalWidget = (
|
|
|
|
requestData: IModalWidgetOpenRequestData,
|
|
|
|
sourceWidget: Widget,
|
|
|
|
widgetRoomId?: string,
|
2023-01-12 13:25:14 +00:00
|
|
|
): void => {
|
2020-09-25 13:08:27 +00:00
|
|
|
if (this.modalInstance) return;
|
2020-10-19 19:39:43 +00:00
|
|
|
this.openSourceWidgetId = sourceWidget.id;
|
2022-03-15 12:15:26 +00:00
|
|
|
this.openSourceWidgetRoomId = widgetRoomId;
|
2022-06-14 16:51:51 +00:00
|
|
|
this.modalInstance = Modal.createDialog(
|
|
|
|
ModalWidgetDialog,
|
|
|
|
{
|
2021-06-29 12:11:58 +00:00
|
|
|
widgetDefinition: { ...requestData },
|
2021-02-02 14:22:28 +00:00
|
|
|
widgetRoomId,
|
2020-10-19 19:39:43 +00:00
|
|
|
sourceWidgetId: sourceWidget.id,
|
|
|
|
onFinished: (success: boolean, data?: IModalWidgetReturnData) => {
|
2020-09-25 13:08:27 +00:00
|
|
|
if (!success) {
|
2022-03-15 12:15:26 +00:00
|
|
|
this.closeModalWidget(sourceWidget, widgetRoomId, { "m.exited": true });
|
2020-09-25 13:08:27 +00:00
|
|
|
} else {
|
2022-03-15 12:15:26 +00:00
|
|
|
this.closeModalWidget(sourceWidget, widgetRoomId, data);
|
2020-09-25 13:08:27 +00:00
|
|
|
}
|
2022-12-12 11:24:14 +00:00
|
|
|
|
2020-09-25 13:08:27 +00:00
|
|
|
this.openSourceWidgetId = null;
|
2022-03-15 12:15:26 +00:00
|
|
|
this.openSourceWidgetRoomId = null;
|
2020-09-25 13:08:27 +00:00
|
|
|
this.modalInstance = null;
|
2022-12-12 11:24:14 +00:00
|
|
|
},
|
2020-09-25 13:08:27 +00:00
|
|
|
},
|
2020-11-26 01:35:00 +00:00
|
|
|
null,
|
|
|
|
/* priority = */ false,
|
|
|
|
/* static = */ true,
|
|
|
|
);
|
2020-09-25 13:08:27 +00:00
|
|
|
};
|
|
|
|
|
2023-01-12 13:25:14 +00:00
|
|
|
public closeModalWidget = (sourceWidget: Widget, widgetRoomId?: string, data?: IModalWidgetReturnData): void => {
|
2020-09-25 13:08:27 +00:00
|
|
|
if (!this.modalInstance) return;
|
2022-03-15 12:15:26 +00:00
|
|
|
if (this.openSourceWidgetId === sourceWidget.id && this.openSourceWidgetRoomId === widgetRoomId) {
|
2020-09-25 13:08:27 +00:00
|
|
|
this.openSourceWidgetId = null;
|
2022-03-15 12:15:26 +00:00
|
|
|
this.openSourceWidgetRoomId = null;
|
2020-09-25 13:08:27 +00:00
|
|
|
this.modalInstance.close();
|
|
|
|
this.modalInstance = null;
|
|
|
|
|
2022-03-15 12:15:26 +00:00
|
|
|
const sourceMessaging = WidgetMessagingStore.instance.getMessaging(sourceWidget, widgetRoomId);
|
2020-09-25 13:08:27 +00:00
|
|
|
if (!sourceMessaging) {
|
2021-10-15 14:30:53 +00:00
|
|
|
logger.error("No source widget messaging for modal widget");
|
2020-09-25 13:08:27 +00:00
|
|
|
return;
|
|
|
|
}
|
2020-10-19 19:39:43 +00:00
|
|
|
sourceMessaging.notifyModalWidgetClose(data);
|
2020-09-25 13:08:27 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
2020-09-25 14:03:54 +00:00
|
|
|
|
|
|
|
window.mxModalWidgetStore = ModalWidgetStore.instance;
|