mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-17 22:14:58 +08:00
be8f0991a6
Introduce a class that consumes updates from the RoomViewStore and announces to listeners if the active room ID is now or is no longer the room ID they specified. Naming suggestions welcome: it's currently called ActiveRoomObserver. Avoids passing the selectedRoomId down from MatrixChat all the way through the LeftPanel / RoomList / RoomSubList to the RoomTiles. Also introduce a CallPreview class that listens directly for RoomViewStore changes as the call preview in the left panel needs to know when the room changes, so this allows this component to update without having to update the entire left panel.
78 lines
2.4 KiB
JavaScript
78 lines
2.4 KiB
JavaScript
/*
|
|
Copyright 2017 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 RoomViewStore from './stores/RoomViewStore';
|
|
|
|
/**
|
|
* Consumes changes from the RoomViewStore and notifies specific things
|
|
* about when the active room changes. Unlike listening for RoomViewStore
|
|
* changes, you can subscribe to only changes relevant to a particular
|
|
* room.
|
|
*
|
|
* TODO: If we introduce an observer for something else, factor out
|
|
* the adding / removing of listeners & emitting into a common class.
|
|
*/
|
|
class ActiveRoomObserver {
|
|
constructor() {
|
|
this._listeners = {};
|
|
|
|
this._activeRoomId = RoomViewStore.getRoomId();
|
|
// TODO: We could self-destruct when the last listener goes away, or at least
|
|
// stop listening.
|
|
this._roomStoreToken = RoomViewStore.addListener(this._onRoomViewStoreUpdate.bind(this));
|
|
}
|
|
|
|
addListener(roomId, listener) {
|
|
if (!this._listeners[roomId]) this._listeners[roomId] = [];
|
|
this._listeners[roomId].push(listener);
|
|
}
|
|
|
|
removeListener(roomId, listener) {
|
|
if (this._listeners[roomId]) {
|
|
const i = this._listeners[roomId].indexOf(listener);
|
|
if (i > -1) {
|
|
this._listeners[roomId].splice(i, 1);
|
|
}
|
|
} else {
|
|
console.warn("Unregistering unrecognised listener (roomId=" + roomId + ")");
|
|
}
|
|
}
|
|
|
|
_emit(roomId) {
|
|
if (!this._listeners[roomId]) return;
|
|
|
|
for (const l of this._listeners[roomId]) {
|
|
l.call();
|
|
}
|
|
}
|
|
|
|
_onRoomViewStoreUpdate() {
|
|
// emit for the old room ID
|
|
if (this._activeRoomId) this._emit(this._activeRoomId);
|
|
|
|
// update our cache
|
|
this._activeRoomId = RoomViewStore.getRoomId();
|
|
|
|
// and emit for the new one
|
|
if (this._activeRoomId) this._emit(this._activeRoomId);
|
|
}
|
|
}
|
|
|
|
if (global.mx_ActiveRoomObserver === undefined) {
|
|
global.mx_ActiveRoomObserver = new ActiveRoomObserver();
|
|
}
|
|
export default global.mx_ActiveRoomObserver;
|