Added async ability to ignite callback and async to ready to help UI not freeze up.

This commit is contained in:
Matt Mo 2021-12-06 09:32:31 -08:00
parent 02b7824ce0
commit 1fc825d990

View File

@ -448,9 +448,9 @@ class IgniteCallback {
this.detach = detach; this.detach = detach;
} }
invoke(...params) { async invoke(...params) {
if (this.callback) { if (this.callback) {
this.callback(...params); await this.callback(...params);
} }
} }
@ -516,8 +516,11 @@ class IgniteRenderingContext {
//Set a new timeout, it will only run once all elements are ready because //Set a new timeout, it will only run once all elements are ready because
//of the way single threaded timers work. //of the way single threaded timers work.
IgniteRenderingContext.ReadyTimer = setTimeout(() => { IgniteRenderingContext.ReadyTimer = setTimeout(async () => {
IgniteRenderingContext.ReadyCallbacks.forEach((ready) => ready.invoke()); for (var i = 0; i < IgniteRenderingContext.ReadyCallbacks.length; i++) {
IgniteRenderingContext.ReadyCallbacks[i].invoke();
}
IgniteRenderingContext.ReadyCallbacks = []; IgniteRenderingContext.ReadyCallbacks = [];
IgniteRenderingContext.ReadyTimer = null; IgniteRenderingContext.ReadyTimer = null;
}, 1); }, 1);