mapcomplete/Logic/UIEventSource.ts

155 lines
4.5 KiB
TypeScript
Raw Permalink Normal View History

2021-01-27 02:08:46 +00:00
import {Utils} from "../Utils";
2021-01-25 02:12:09 +00:00
export class UIEventSource<T> {
public data: T;
2021-01-25 02:12:09 +00:00
private readonly tag: string;
2020-06-23 22:35:19 +00:00
private _callbacks = [];
2021-01-25 02:12:09 +00:00
private static allSources : UIEventSource<any>[] = UIEventSource.PrepPerf();
2021-01-27 02:08:46 +00:00
static PrepPerf() : UIEventSource<any>[]{
if(Utils.runningFromConsole){
return [];
}
2021-01-25 02:12:09 +00:00
// @ts-ignore
2021-02-05 15:32:37 +00:00
window.mapcomplete_performance = () => {
2021-01-25 02:12:09 +00:00
console.log(UIEventSource.allSources.length, "uieventsources created");
const copy = [...UIEventSource.allSources];
copy.sort((a,b) => b._callbacks.length - a._callbacks.length);
console.log("Topten is:")
for (let i = 0; i < 10; i++) {
console.log(copy[i].tag, copy[i]);
}
return UIEventSource.allSources;
2021-01-25 02:12:09 +00:00
}
return [];
}
2020-06-23 22:35:19 +00:00
2021-01-25 02:12:09 +00:00
constructor(data: T, tag: string = "") {
this.tag = tag;
2020-06-23 22:35:19 +00:00
this.data = data;
2021-01-25 02:12:09 +00:00
UIEventSource.allSources.push(this);
}
public static flatten<X>(source: UIEventSource<UIEventSource<X>>, possibleSources: UIEventSource<any>[]): UIEventSource<X> {
const sink = new UIEventSource<X>(source.data?.data);
source.addCallback((latestData) => {
sink.setData(latestData?.data);
});
for (const possibleSource of possibleSources) {
possibleSource?.addCallback(() => {
sink.setData(source.data?.data);
})
}
return sink;
}
public static Chronic(millis: number, asLong: () => boolean = undefined): UIEventSource<Date> {
const source = new UIEventSource<Date>(undefined);
function run() {
source.setData(new Date());
if (asLong === undefined || asLong()) {
window.setTimeout(run, millis);
}
}
run();
return source;
2020-06-23 22:35:19 +00:00
}
public addCallback(callback: ((latestData: T) => void)): UIEventSource<T> {
2021-01-25 02:12:09 +00:00
if (callback === console.log) {
2020-10-05 23:37:02 +00:00
// This ^^^ actually works!
throw "Don't add console.log directly as a callback - you'll won't be able to find it afterwards. Wrap it in a lambda instead."
}
2020-06-23 22:35:19 +00:00
this._callbacks.push(callback);
return this;
}
public addCallbackAndRun(callback: ((latestData: T) => void)): UIEventSource<T> {
callback(this.data);
return this.addCallback(callback);
}
public setData(t: T): UIEventSource<T> {
2021-02-14 18:45:02 +00:00
if (this.data == t) { // MUST COMPARE BY REFERENCE!
2020-06-23 22:35:19 +00:00
return;
}
this.data = t;
this.ping();
return this;
2020-06-23 22:35:19 +00:00
}
public ping(): void {
for (const callback of this._callbacks) {
callback(this.data);
2020-06-23 22:35:19 +00:00
}
}
2020-07-08 09:23:36 +00:00
public map<J>(f: ((T) => J),
extraSources: UIEventSource<any>[] = [],
2021-01-25 02:12:09 +00:00
g: ((J) => T) = undefined): UIEventSource<J> {
2020-06-23 22:35:19 +00:00
const self = this;
const newSource = new UIEventSource<J>(
2021-04-23 18:09:27 +00:00
f(this.data),
"map("+this.tag+")"
);
2020-07-08 09:23:36 +00:00
const update = function () {
2020-06-23 22:35:19 +00:00
newSource.setData(f(self.data));
2020-07-08 09:23:36 +00:00
}
2020-07-20 11:28:45 +00:00
this.addCallbackAndRun(update);
2020-07-08 09:23:36 +00:00
for (const extraSource of extraSources) {
2020-08-31 11:25:13 +00:00
extraSource?.addCallback(update);
2020-07-08 09:23:36 +00:00
}
2021-01-25 02:12:09 +00:00
if (g !== undefined) {
newSource.addCallback((latest) => {
2020-09-10 17:33:06 +00:00
self.setData(g(latest));
})
}
2020-06-23 22:35:19 +00:00
return newSource;
}
2020-09-18 10:00:38 +00:00
public syncWith(otherSource: UIEventSource<T>, reverseOverride = false): UIEventSource<T> {
2020-07-20 22:07:04 +00:00
this.addCallback((latest) => otherSource.setData(latest));
const self = this;
otherSource.addCallback((latest) => self.setData(latest));
2020-09-18 10:00:38 +00:00
if (reverseOverride && otherSource.data !== undefined) {
this.setData(otherSource.data);
} else if (this.data === undefined) {
this.setData(otherSource.data);
} else {
2020-07-20 22:07:04 +00:00
otherSource.setData(this.data);
}
return this;
2020-07-20 22:07:04 +00:00
}
2021-01-25 02:12:09 +00:00
public stabilized(millisToStabilize): UIEventSource<T> {
2020-09-02 09:37:34 +00:00
const newSource = new UIEventSource<T>(this.data);
2020-09-02 09:37:34 +00:00
let currentCallback = 0;
this.addCallback(latestData => {
currentCallback++;
const thisCallback = currentCallback;
window.setTimeout(() => {
2021-01-25 02:12:09 +00:00
if (thisCallback === currentCallback) {
2020-09-02 09:37:34 +00:00
newSource.setData(latestData);
}
}, millisToStabilize)
});
2020-09-02 09:37:34 +00:00
return newSource;
}
2020-06-23 22:35:19 +00:00
}