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;
}
invoke(...params) {
async invoke(...params) {
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
//of the way single threaded timers work.
IgniteRenderingContext.ReadyTimer = setTimeout(() => {
IgniteRenderingContext.ReadyCallbacks.forEach((ready) => ready.invoke());
IgniteRenderingContext.ReadyTimer = setTimeout(async () => {
for (var i = 0; i < IgniteRenderingContext.ReadyCallbacks.length; i++) {
IgniteRenderingContext.ReadyCallbacks[i].invoke();
}
IgniteRenderingContext.ReadyCallbacks = [];
IgniteRenderingContext.ReadyTimer = null;
}, 1);