mapcomplete/UI/UIEventSource.ts

45 lines
877 B
TypeScript
Raw Normal View History

2020-06-23 22:35:19 +00:00
export class UIEventSource<T>{
public data : T;
private _callbacks = [];
constructor(data: T) {
this.data = data;
}
2020-06-29 01:12:44 +00:00
public addCallback(callback: ((latestData : T) => void)) {
2020-06-23 22:35:19 +00:00
this._callbacks.push(callback);
return this;
}
public setData(t: T): void {
if (this.data === t) {
return;
}
this.data = t;
this.ping();
}
public ping(): void {
for (const callback of this._callbacks) {
callback(this.data);
2020-06-23 22:35:19 +00:00
}
}
public map<J>(f: ((T) => J)): UIEventSource<J> {
const self = this;
this.addCallback(function () {
newSource.setData(f(self.data));
newSource.ping();
2020-06-23 22:35:19 +00:00
});
const newSource = new UIEventSource<J>(
f(this.data)
);
2020-06-23 22:35:19 +00:00
return newSource;
}
}