mirror of
https://github.com/element-hq/element-web.git
synced 2024-12-15 13:11:46 +03:00
ce226ab534
This only covers the simple cases of references to issues and repos. More complex areas, such as deployment scripts, will be handled separately. Part of https://github.com/vector-im/element-web/issues/14864
157 lines
4.9 KiB
JavaScript
157 lines
4.9 KiB
JavaScript
/*
|
|
Copyright 2018 New Vector Ltd
|
|
|
|
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 EventEmitter from 'events';
|
|
|
|
import {MatrixClientPeg} from '../MatrixClientPeg';
|
|
|
|
/**
|
|
* Stores information about the widgets active in the app right now:
|
|
* * What widget is set to remain always-on-screen, if any
|
|
* Only one widget may be 'always on screen' at any one time.
|
|
* * Negotiated capabilities for active apps
|
|
*/
|
|
class ActiveWidgetStore extends EventEmitter {
|
|
constructor() {
|
|
super();
|
|
this._persistentWidgetId = null;
|
|
|
|
// A list of negotiated capabilities for each widget, by ID
|
|
// {
|
|
// widgetId: [caps...],
|
|
// }
|
|
this._capsByWidgetId = {};
|
|
|
|
// A WidgetMessaging instance for each widget ID
|
|
this._widgetMessagingByWidgetId = {};
|
|
|
|
// What room ID each widget is associated with (if it's a room widget)
|
|
this._roomIdByWidgetId = {};
|
|
|
|
this.onRoomStateEvents = this.onRoomStateEvents.bind(this);
|
|
|
|
this.dispatcherRef = null;
|
|
}
|
|
|
|
start() {
|
|
MatrixClientPeg.get().on('RoomState.events', this.onRoomStateEvents);
|
|
}
|
|
|
|
stop() {
|
|
if (MatrixClientPeg.get()) {
|
|
MatrixClientPeg.get().removeListener('RoomState.events', this.onRoomStateEvents);
|
|
}
|
|
this._capsByWidgetId = {};
|
|
this._widgetMessagingByWidgetId = {};
|
|
this._roomIdByWidgetId = {};
|
|
}
|
|
|
|
onRoomStateEvents(ev, state) {
|
|
// XXX: This listens for state events in order to remove the active widget.
|
|
// Everything else relies on views listening for events and calling setters
|
|
// on this class which is terrible. This store should just listen for events
|
|
// and keep itself up to date.
|
|
// TODO: Enable support for m.widget event type (https://github.com/vector-im/element-web/issues/13111)
|
|
if (ev.getType() !== 'im.vector.modular.widgets') return;
|
|
|
|
if (ev.getStateKey() === this._persistentWidgetId) {
|
|
this.destroyPersistentWidget(this._persistentWidgetId);
|
|
}
|
|
}
|
|
|
|
destroyPersistentWidget(id) {
|
|
if (id !== this._persistentWidgetId) return;
|
|
const toDeleteId = this._persistentWidgetId;
|
|
|
|
this.setWidgetPersistence(toDeleteId, false);
|
|
this.delWidgetMessaging(toDeleteId);
|
|
this.delWidgetCapabilities(toDeleteId);
|
|
this.delRoomId(toDeleteId);
|
|
}
|
|
|
|
setWidgetPersistence(widgetId, val) {
|
|
if (this._persistentWidgetId === widgetId && !val) {
|
|
this._persistentWidgetId = null;
|
|
} else if (this._persistentWidgetId !== widgetId && val) {
|
|
this._persistentWidgetId = widgetId;
|
|
}
|
|
this.emit('update');
|
|
}
|
|
|
|
getWidgetPersistence(widgetId) {
|
|
return this._persistentWidgetId === widgetId;
|
|
}
|
|
|
|
getPersistentWidgetId() {
|
|
return this._persistentWidgetId;
|
|
}
|
|
|
|
setWidgetCapabilities(widgetId, caps) {
|
|
this._capsByWidgetId[widgetId] = caps;
|
|
this.emit('update');
|
|
}
|
|
|
|
widgetHasCapability(widgetId, cap) {
|
|
return this._capsByWidgetId[widgetId] && this._capsByWidgetId[widgetId].includes(cap);
|
|
}
|
|
|
|
delWidgetCapabilities(widgetId) {
|
|
delete this._capsByWidgetId[widgetId];
|
|
this.emit('update');
|
|
}
|
|
|
|
setWidgetMessaging(widgetId, wm) {
|
|
// Stop any existing widget messaging first
|
|
this.delWidgetMessaging(widgetId);
|
|
this._widgetMessagingByWidgetId[widgetId] = wm;
|
|
this.emit('update');
|
|
}
|
|
|
|
getWidgetMessaging(widgetId) {
|
|
return this._widgetMessagingByWidgetId[widgetId];
|
|
}
|
|
|
|
delWidgetMessaging(widgetId) {
|
|
if (this._widgetMessagingByWidgetId[widgetId]) {
|
|
try {
|
|
this._widgetMessagingByWidgetId[widgetId].stop();
|
|
} catch (e) {
|
|
console.error('Failed to stop listening for widgetMessaging events', e.message);
|
|
}
|
|
delete this._widgetMessagingByWidgetId[widgetId];
|
|
this.emit('update');
|
|
}
|
|
}
|
|
|
|
getRoomId(widgetId) {
|
|
return this._roomIdByWidgetId[widgetId];
|
|
}
|
|
|
|
setRoomId(widgetId, roomId) {
|
|
this._roomIdByWidgetId[widgetId] = roomId;
|
|
this.emit('update');
|
|
}
|
|
|
|
delRoomId(widgetId) {
|
|
delete this._roomIdByWidgetId[widgetId];
|
|
this.emit('update');
|
|
}
|
|
}
|
|
|
|
if (global.singletonActiveWidgetStore === undefined) {
|
|
global.singletonActiveWidgetStore = new ActiveWidgetStore();
|
|
}
|
|
export default global.singletonActiveWidgetStore;
|