This seems to be causing a lot of weirdness, presumably because there's another missing thing like in #135, but I don't know what it might be and it feels like it might take a while to find. Backing these changes out to fix develop while we sort it out. Fixes https://github.com/element-hq/element-web/issues/28179
This commit is contained in:
parent
4e5cf1b720
commit
3a59556749
30 changed files with 78 additions and 88 deletions
|
@ -43,7 +43,6 @@ import { formatList } from "./utils/FormattingUtils";
|
|||
import SdkConfig from "./SdkConfig";
|
||||
import { Features } from "./settings/Settings";
|
||||
import { setDeviceIsolationMode } from "./settings/controllers/DeviceIsolationModeController.ts";
|
||||
import { ReadyWatchingStore } from "./stores/ReadyWatchingStore.ts";
|
||||
|
||||
export interface IMatrixClientCreds {
|
||||
homeserverUrl: string;
|
||||
|
@ -310,7 +309,6 @@ class MatrixClientPegClass implements IMatrixClientPeg {
|
|||
MatrixActionCreators.start(this.matrixClient);
|
||||
MatrixClientBackedSettingsHandler.matrixClient = this.matrixClient;
|
||||
MatrixClientBackedController.matrixClient = this.matrixClient;
|
||||
ReadyWatchingStore.matrixClient = this.matrixClient;
|
||||
|
||||
return opts;
|
||||
}
|
||||
|
|
|
@ -36,13 +36,8 @@ export abstract class AsyncStoreWithClient<T extends Object> extends AsyncStore<
|
|||
})(dispatcher);
|
||||
}
|
||||
|
||||
protected async start(matrixClient: MatrixClient | null): Promise<void> {
|
||||
await this.readyStore.start(matrixClient);
|
||||
}
|
||||
|
||||
// XXX: This method is intended only for use in tests.
|
||||
public async useUnitTestClient(cli: MatrixClient): Promise<void> {
|
||||
await this.readyStore.useUnitTestClient(cli);
|
||||
public async start(): Promise<void> {
|
||||
await this.readyStore.start();
|
||||
}
|
||||
|
||||
public get matrixClient(): MatrixClient | null {
|
||||
|
|
|
@ -46,7 +46,9 @@ interface IState {
|
|||
*/
|
||||
export default class AutoRageshakeStore extends AsyncStoreWithClient<IState> {
|
||||
private static readonly internalInstance = (() => {
|
||||
return new AutoRageshakeStore();
|
||||
const instance = new AutoRageshakeStore();
|
||||
instance.start();
|
||||
return instance;
|
||||
})();
|
||||
|
||||
private constructor() {
|
||||
|
|
|
@ -30,7 +30,9 @@ interface IState {
|
|||
|
||||
export class BreadcrumbsStore extends AsyncStoreWithClient<IState> {
|
||||
private static readonly internalInstance = (() => {
|
||||
return new BreadcrumbsStore();
|
||||
const instance = new BreadcrumbsStore();
|
||||
instance.start();
|
||||
return instance;
|
||||
})();
|
||||
|
||||
private waitingRooms: { roomId: string; addedTs: number }[] = [];
|
||||
|
|
|
@ -31,6 +31,7 @@ export class CallStore extends AsyncStoreWithClient<{}> {
|
|||
public static get instance(): CallStore {
|
||||
if (!this._instance) {
|
||||
this._instance = new CallStore();
|
||||
this._instance.start();
|
||||
}
|
||||
return this._instance;
|
||||
}
|
||||
|
|
|
@ -24,6 +24,7 @@ interface IState {
|
|||
export class ModalWidgetStore extends AsyncStoreWithClient<IState> {
|
||||
private static readonly internalInstance = (() => {
|
||||
const instance = new ModalWidgetStore();
|
||||
instance.start();
|
||||
return instance;
|
||||
})();
|
||||
private modalInstance: IHandle<typeof ModalWidgetDialog> | null = null;
|
||||
|
|
|
@ -87,6 +87,7 @@ const getLocallyCreatedBeaconEventIds = (): string[] => {
|
|||
export class OwnBeaconStore extends AsyncStoreWithClient<OwnBeaconStoreState> {
|
||||
private static readonly internalInstance = (() => {
|
||||
const instance = new OwnBeaconStore();
|
||||
instance.start();
|
||||
return instance;
|
||||
})();
|
||||
// users beacons, keyed by event type
|
||||
|
|
|
@ -28,6 +28,7 @@ const KEY_AVATAR_URL = "mx_profile_avatar_url";
|
|||
export class OwnProfileStore extends AsyncStoreWithClient<IState> {
|
||||
private static readonly internalInstance = (() => {
|
||||
const instance = new OwnProfileStore();
|
||||
instance.start();
|
||||
return instance;
|
||||
})();
|
||||
|
||||
|
|
|
@ -9,42 +9,27 @@
|
|||
import { MatrixClient, SyncState } from "matrix-js-sdk/src/matrix";
|
||||
import { EventEmitter } from "events";
|
||||
|
||||
import { MatrixClientPeg } from "../MatrixClientPeg";
|
||||
import { ActionPayload } from "../dispatcher/payloads";
|
||||
import { IDestroyable } from "../utils/IDestroyable";
|
||||
import { Action } from "../dispatcher/actions";
|
||||
import { MatrixDispatcher } from "../dispatcher/dispatcher";
|
||||
|
||||
export abstract class ReadyWatchingStore extends EventEmitter implements IDestroyable {
|
||||
private static instances: ReadyWatchingStore[] = [];
|
||||
protected _matrixClient: MatrixClient | null = null;
|
||||
protected matrixClient: MatrixClient | null = null;
|
||||
private dispatcherRef: string | null = null;
|
||||
|
||||
public static set matrixClient(client: MatrixClient) {
|
||||
for (const instance of ReadyWatchingStore.instances) {
|
||||
instance.start(client);
|
||||
}
|
||||
}
|
||||
|
||||
public constructor(protected readonly dispatcher: MatrixDispatcher) {
|
||||
super();
|
||||
}
|
||||
|
||||
public async start(): Promise<void> {
|
||||
this.dispatcherRef = this.dispatcher.register(this.onAction);
|
||||
|
||||
ReadyWatchingStore.instances.push(this);
|
||||
}
|
||||
|
||||
public get matrixClient(): MatrixClient | null {
|
||||
return this._matrixClient;
|
||||
}
|
||||
|
||||
public async start(matrixClient: MatrixClient | null): Promise<void> {
|
||||
const oldClient = this._matrixClient;
|
||||
this._matrixClient = matrixClient;
|
||||
|
||||
if (oldClient !== matrixClient) {
|
||||
await this.onNotReady();
|
||||
}
|
||||
// MatrixClientPeg can be undefined in tests because of circular dependencies with other stores
|
||||
const matrixClient = MatrixClientPeg?.get();
|
||||
if (matrixClient) {
|
||||
this.matrixClient = matrixClient;
|
||||
await this.onReady();
|
||||
}
|
||||
}
|
||||
|
@ -53,10 +38,8 @@ export abstract class ReadyWatchingStore extends EventEmitter implements IDestro
|
|||
return this.matrixClient; // for external readonly access
|
||||
}
|
||||
|
||||
// XXX: This method is intended only for use in tests.
|
||||
public async useUnitTestClient(cli: MatrixClient): Promise<void> {
|
||||
this._matrixClient = cli;
|
||||
await this.onReady();
|
||||
public useUnitTestClient(cli: MatrixClient): void {
|
||||
this.matrixClient = cli;
|
||||
}
|
||||
|
||||
public destroy(): void {
|
||||
|
@ -91,13 +74,13 @@ export abstract class ReadyWatchingStore extends EventEmitter implements IDestro
|
|||
if (this.matrixClient) {
|
||||
await this.onNotReady();
|
||||
}
|
||||
this._matrixClient = payload.matrixClient;
|
||||
this.matrixClient = payload.matrixClient;
|
||||
await this.onReady();
|
||||
}
|
||||
} else if (payload.action === "on_client_not_viable" || payload.action === Action.OnLoggedOut) {
|
||||
if (this.matrixClient) {
|
||||
await this.onNotReady();
|
||||
this._matrixClient = null;
|
||||
this.matrixClient = null;
|
||||
}
|
||||
}
|
||||
};
|
||||
|
|
|
@ -30,6 +30,7 @@ export class VoiceRecordingStore extends AsyncStoreWithClient<IState> {
|
|||
public static get instance(): VoiceRecordingStore {
|
||||
if (!this.internalInstance) {
|
||||
this.internalInstance = new VoiceRecordingStore();
|
||||
this.internalInstance.start();
|
||||
}
|
||||
return this.internalInstance;
|
||||
}
|
||||
|
|
|
@ -45,6 +45,7 @@ interface IRoomWidgets {
|
|||
export default class WidgetStore extends AsyncStoreWithClient<IState> {
|
||||
private static readonly internalInstance = (() => {
|
||||
const instance = new WidgetStore();
|
||||
instance.start();
|
||||
return instance;
|
||||
})();
|
||||
|
||||
|
|
|
@ -38,6 +38,7 @@ export class EchoStore extends AsyncStoreWithClient<IState> {
|
|||
public static get instance(): EchoStore {
|
||||
if (!this._instance) {
|
||||
this._instance = new EchoStore();
|
||||
this._instance.start();
|
||||
}
|
||||
return this._instance;
|
||||
}
|
||||
|
|
|
@ -26,6 +26,7 @@ export const UPDATE_STATUS_INDICATOR = Symbol("update-status-indicator");
|
|||
export class RoomNotificationStateStore extends AsyncStoreWithClient<IState> {
|
||||
private static readonly internalInstance = (() => {
|
||||
const instance = new RoomNotificationStateStore();
|
||||
instance.start();
|
||||
return instance;
|
||||
})();
|
||||
private roomMap = new Map<Room, RoomNotificationState>();
|
||||
|
|
|
@ -403,6 +403,7 @@ export default class RightPanelStore extends ReadyWatchingStore {
|
|||
public static get instance(): RightPanelStore {
|
||||
if (!this.internalInstance) {
|
||||
this.internalInstance = new RightPanelStore();
|
||||
this.internalInstance.start();
|
||||
}
|
||||
return this.internalInstance;
|
||||
}
|
||||
|
|
|
@ -124,7 +124,11 @@ const mkMessagePreview = (text: string, event: MatrixEvent): MessagePreview => {
|
|||
};
|
||||
|
||||
export class MessagePreviewStore extends AsyncStoreWithClient<IState> {
|
||||
private static readonly internalInstance = (() => new MessagePreviewStore())();
|
||||
private static readonly internalInstance = (() => {
|
||||
const instance = new MessagePreviewStore();
|
||||
instance.start();
|
||||
return instance;
|
||||
})();
|
||||
|
||||
/**
|
||||
* @internal Public for test only
|
||||
|
|
|
@ -28,6 +28,7 @@ export default class RoomListLayoutStore extends AsyncStoreWithClient<IState> {
|
|||
public static get instance(): RoomListLayoutStore {
|
||||
if (!this.internalInstance) {
|
||||
this.internalInstance = new RoomListLayoutStore();
|
||||
this.internalInstance.start();
|
||||
}
|
||||
return RoomListLayoutStore.internalInstance;
|
||||
}
|
||||
|
|
|
@ -643,9 +643,11 @@ export default class RoomListStore {
|
|||
if (SettingsStore.getValue("feature_sliding_sync")) {
|
||||
logger.info("using SlidingRoomListStoreClass");
|
||||
const instance = new SlidingRoomListStoreClass(defaultDispatcher, SdkContextClass.instance);
|
||||
instance.start();
|
||||
RoomListStore.internalInstance = instance;
|
||||
} else {
|
||||
const instance = new RoomListStoreClass(defaultDispatcher);
|
||||
instance.start();
|
||||
RoomListStore.internalInstance = instance;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -17,7 +17,6 @@ import {
|
|||
MatrixEvent,
|
||||
ClientEvent,
|
||||
ISendEventResponse,
|
||||
MatrixClient,
|
||||
} from "matrix-js-sdk/src/matrix";
|
||||
import { KnownMembership } from "matrix-js-sdk/src/types";
|
||||
import { logger } from "matrix-js-sdk/src/logger";
|
||||
|
@ -1398,6 +1397,7 @@ export class SpaceStoreClass extends AsyncStoreWithClient<IState> {
|
|||
export default class SpaceStore {
|
||||
private static readonly internalInstance = (() => {
|
||||
const instance = new SpaceStoreClass();
|
||||
instance.start();
|
||||
return instance;
|
||||
})();
|
||||
|
||||
|
@ -1408,9 +1408,9 @@ export default class SpaceStore {
|
|||
/**
|
||||
* @internal for test only
|
||||
*/
|
||||
public static testInstance(client: MatrixClient): SpaceStoreClass {
|
||||
public static testInstance(): SpaceStoreClass {
|
||||
const store = new SpaceStoreClass();
|
||||
store.useUnitTestClient(client);
|
||||
store.start();
|
||||
return store;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -60,6 +60,7 @@ export class WidgetLayoutStore extends ReadyWatchingStore {
|
|||
public static get instance(): WidgetLayoutStore {
|
||||
if (!this.internalInstance) {
|
||||
this.internalInstance = new WidgetLayoutStore();
|
||||
this.internalInstance.start();
|
||||
}
|
||||
return this.internalInstance;
|
||||
}
|
||||
|
|
|
@ -27,6 +27,7 @@ export enum WidgetMessagingStoreEvent {
|
|||
export class WidgetMessagingStore extends AsyncStoreWithClient<{}> {
|
||||
private static readonly internalInstance = (() => {
|
||||
const instance = new WidgetMessagingStore();
|
||||
instance.start();
|
||||
return instance;
|
||||
})();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue