Use a static prop on Stickerpicker to track the current widget

This commit is contained in:
Travis Ralston 2019-04-03 17:16:56 -06:00
parent ad777782b8
commit 10369170ed
2 changed files with 6 additions and 18 deletions

View file

@ -42,9 +42,6 @@ class ActiveWidgetStore extends EventEmitter {
// What room ID each widget is associated with (if it's a room widget)
this._roomIdByWidgetId = {};
// The sticker picker widget definition the app is currently using, if any
this._stickerPickerWidget = null;
this.onRoomStateEvents = this.onRoomStateEvents.bind(this);
this.dispatcherRef = null;
@ -151,18 +148,6 @@ class ActiveWidgetStore extends EventEmitter {
delete this._roomIdByWidgetId[widgetId];
this.emit('update');
}
getStickerPickerWidget() {
return this._stickerPickerWidget;
}
setStickerPickerWidget(widget) {
this._stickerPickerWidget = widget;
}
delStickerPickerWidget() {
this._stickerPickerWidget = null;
}
}
if (global.singletonActiveWidgetStore === undefined) {