mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-16 21:24:59 +08:00
Convert MatrixClientBackedSettingsHandler to TS
This commit is contained in:
parent
5f5efa1448
commit
e3364ba7a4
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Copyright 2019 New Vector Ltd.
|
Copyright 2019, 2020 The Matrix.org Foundation C.I.C.
|
||||||
|
|
||||||
Licensed under the Apache License, Version 2.0 (the "License");
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
you may not use this file except in compliance with the License.
|
you may not use this file except in compliance with the License.
|
||||||
@ -15,6 +15,7 @@ limitations under the License.
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
import SettingsHandler from "./SettingsHandler";
|
import SettingsHandler from "./SettingsHandler";
|
||||||
|
import { MatrixClient } from "matrix-js-sdk/src/client";
|
||||||
|
|
||||||
// Dev note: This whole class exists in the event someone logs out and back in - we want
|
// Dev note: This whole class exists in the event someone logs out and back in - we want
|
||||||
// to make sure the right MatrixClient is listening for changes.
|
// to make sure the right MatrixClient is listening for changes.
|
||||||
@ -23,30 +24,30 @@ import SettingsHandler from "./SettingsHandler";
|
|||||||
* Represents the base class for settings handlers which need access to a MatrixClient.
|
* Represents the base class for settings handlers which need access to a MatrixClient.
|
||||||
* This class performs no logic and should be overridden.
|
* This class performs no logic and should be overridden.
|
||||||
*/
|
*/
|
||||||
export default class MatrixClientBackedSettingsHandler extends SettingsHandler {
|
export default abstract class MatrixClientBackedSettingsHandler extends SettingsHandler {
|
||||||
static _matrixClient;
|
private static _matrixClient: MatrixClient;
|
||||||
static _instances = [];
|
private static instances: MatrixClientBackedSettingsHandler[] = [];
|
||||||
|
|
||||||
static set matrixClient(client) {
|
public static set matrixClient(client: MatrixClient) {
|
||||||
const oldClient = MatrixClientBackedSettingsHandler._matrixClient;
|
const oldClient = MatrixClientBackedSettingsHandler._matrixClient;
|
||||||
MatrixClientBackedSettingsHandler._matrixClient = client;
|
MatrixClientBackedSettingsHandler._matrixClient = client;
|
||||||
|
|
||||||
for (const instance of MatrixClientBackedSettingsHandler._instances) {
|
for (const instance of MatrixClientBackedSettingsHandler.instances) {
|
||||||
instance.initMatrixClient(oldClient, client);
|
instance.initMatrixClient(oldClient, client);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
constructor() {
|
protected constructor() {
|
||||||
super();
|
super();
|
||||||
|
|
||||||
MatrixClientBackedSettingsHandler._instances.push(this);
|
MatrixClientBackedSettingsHandler.instances.push(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
get client() {
|
public get client(): MatrixClient {
|
||||||
return MatrixClientBackedSettingsHandler._matrixClient;
|
return MatrixClientBackedSettingsHandler.matrixClient;
|
||||||
}
|
}
|
||||||
|
|
||||||
initMatrixClient() {
|
protected initMatrixClient(oldClient: MatrixClient, newClient: MatrixClient) {
|
||||||
console.warn("initMatrixClient not overridden");
|
console.warn("initMatrixClient not overridden");
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user