mirror of
https://github.com/vector-im/hydrogen-web.git
synced 2024-12-23 11:35:04 +01:00
typescriptifies SourceSubscriptionHandler
This commit is contained in:
parent
63e9b49ebe
commit
edeec896ae
@ -19,12 +19,13 @@ import {config} from "./config";
|
|||||||
import {FilteredMap} from "./FilteredMap.js";
|
import {FilteredMap} from "./FilteredMap.js";
|
||||||
import {MappedMap} from "./MappedMap.js";
|
import {MappedMap} from "./MappedMap.js";
|
||||||
import {SortedMapList} from "../list/SortedMapList.js";
|
import {SortedMapList} from "../list/SortedMapList.js";
|
||||||
|
import {SubscriptionHandle} from "../BaseObservable"
|
||||||
|
|
||||||
|
|
||||||
export class JoinedMap<K, V> extends BaseObservableMap<K, V> {
|
export class JoinedMap<K, V> extends BaseObservableMap<K, V> {
|
||||||
protected _sources: BaseObservableMap<K, V>[];
|
protected _sources: BaseObservableMap<K, V>[];
|
||||||
private _config: BaseObservableMapConfig<K, V>
|
private _config: BaseObservableMapConfig<K, V>
|
||||||
private _subscriptions?: SourceSubscriptionHandler[];
|
private _subscriptions?: SourceSubscriptionHandler<K, V>[];
|
||||||
|
|
||||||
constructor(sources: BaseObservableMap<K, V>[]) {
|
constructor(sources: BaseObservableMap<K, V>[]) {
|
||||||
super();
|
super();
|
||||||
@ -186,11 +187,15 @@ class JoinedIterator<K, V> implements Iterator<[K, V]> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
class SourceSubscriptionHandler {
|
class SourceSubscriptionHandler<K, V> {
|
||||||
constructor(source, joinedMap) {
|
private _source: BaseObservableMap<K, V>;
|
||||||
|
private _joinedMap: JoinedMap<K, V>;
|
||||||
|
private _subscription?: SubscriptionHandle;
|
||||||
|
|
||||||
|
constructor(source: BaseObservableMap<K, V>, joinedMap: JoinedMap<K, V>) {
|
||||||
this._source = source;
|
this._source = source;
|
||||||
this._joinedMap = joinedMap;
|
this._joinedMap = joinedMap;
|
||||||
this._subscription = null;
|
this._subscription = undefined;
|
||||||
}
|
}
|
||||||
|
|
||||||
subscribe() {
|
subscribe() {
|
||||||
@ -199,23 +204,23 @@ class SourceSubscriptionHandler {
|
|||||||
}
|
}
|
||||||
|
|
||||||
dispose() {
|
dispose() {
|
||||||
this._subscription = this._subscription();
|
if (this._subscription) this._subscription = this._subscription();
|
||||||
}
|
}
|
||||||
|
|
||||||
onAdd(key, value) {
|
onAdd(key: K, value: V) {
|
||||||
this._joinedMap.onAdd(this._source, key, value);
|
this._joinedMap.onAdd(this._source, key, value);
|
||||||
}
|
}
|
||||||
|
|
||||||
onRemove(key, value) {
|
onRemove(key: K, value: V) {
|
||||||
this._joinedMap.onRemove(this._source, key, value);
|
this._joinedMap.onRemove(this._source, key, value);
|
||||||
}
|
}
|
||||||
|
|
||||||
onUpdate(key, value, params) {
|
onUpdate(key: K, value: V, params: any) {
|
||||||
this._joinedMap.onUpdate(this._source, key, value, params);
|
this._joinedMap.onUpdate(this._source, key, value, params);
|
||||||
}
|
}
|
||||||
|
|
||||||
onReset() {
|
onReset() {
|
||||||
this._joinedMap.onReset(this._source);
|
this._joinedMap.onReset();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user