Fixed a bug with IgniteProperty toString. Added more documentation. Ready callbacks now support regular functions or callbacks.

This commit is contained in:
MattMo 2022-10-24 08:39:41 -07:00
parent 73bf9812dd
commit 118e4367df

View File

@ -356,7 +356,11 @@ class IgniteProperty {
* the property to a string. * the property to a string.
*/ */
IgniteProperty.prototype.toString = function () { IgniteProperty.prototype.toString = function () {
return this.value.toString(); if (this.value) {
return this.value.toString();
}
return null;
} }
/** /**
@ -485,12 +489,19 @@ class IgniteCallback {
this.detach = detach; this.detach = detach;
} }
/**
* Invokes this callback.
* @param {...any} params Any params to pass to the target function.
*/
async invoke(...params) { async invoke(...params) {
if (this.callback) { if (this.callback) {
await this.callback(...params); await this.callback(...params);
} }
} }
/**
* Invokes the detach callback for this callback if there is one.
*/
disconnect() { disconnect() {
this.callback = null; this.callback = null;
@ -508,6 +519,9 @@ class IgniteCallback {
* @ignore * @ignore
*/ */
class IgniteRendering { class IgniteRendering {
/**
* Increments the rendering counter. Must call leave() for each enter().
*/
static enter() { static enter() {
if (!IgniteRendering.RenderCount) { if (!IgniteRendering.RenderCount) {
IgniteRendering.RenderCount = 0; IgniteRendering.RenderCount = 0;
@ -516,12 +530,18 @@ class IgniteRendering {
IgniteRendering.RenderCount++; IgniteRendering.RenderCount++;
} }
/**
* Decrements the rendering counter, if 0, rendering() will return false.
*/
static leave() { static leave() {
if (IgniteRendering.RenderCount) { if (IgniteRendering.RenderCount) {
IgniteRendering.RenderCount--; IgniteRendering.RenderCount--;
} }
} }
/**
* Saves the current rendering state.
*/
static push() { static push() {
if (IgniteRendering.Stack == null) { if (IgniteRendering.Stack == null) {
IgniteRendering.Stack = []; IgniteRendering.Stack = [];
@ -531,12 +551,19 @@ class IgniteRendering {
IgniteRendering.RenderCount = 0; IgniteRendering.RenderCount = 0;
} }
/**
* Restores the last rendering state.
*/
static pop() { static pop() {
if (IgniteRendering.Stack && IgniteRendering.Stack.length > 0) { if (IgniteRendering.Stack && IgniteRendering.Stack.length > 0) {
IgniteRendering.RenderCount = IgniteRendering.Stack.pop(); IgniteRendering.RenderCount = IgniteRendering.Stack.pop();
} }
} }
/**
* Registers a callback function that will be invoked once rendering is complete.
* @param {IgniteCallback|Function} callback The callback function to invoke once rendering is complete.
*/
static ready(callback) { static ready(callback) {
//Setup the callbacks if it's not init'd. //Setup the callbacks if it's not init'd.
if (!IgniteRendering.ReadyCallbacks) { if (!IgniteRendering.ReadyCallbacks) {
@ -557,7 +584,13 @@ class IgniteRendering {
IgniteRendering.ReadyTimer = setTimeout(async () => { IgniteRendering.ReadyTimer = setTimeout(async () => {
IgniteRendering.ReadyTimerRunning = true; IgniteRendering.ReadyTimerRunning = true;
while (IgniteRendering.ReadyCallbacks.length > 0) { while (IgniteRendering.ReadyCallbacks.length > 0) {
IgniteRendering.ReadyCallbacks.shift().invoke(); var callback = IgniteRendering.ReadyCallbacks.shift();
if (callback instanceof IgniteCallback) {
callback.invoke();
} else if (callback instanceof Function) {
callback();
}
} }
IgniteRendering.ReadyCallbacks = []; IgniteRendering.ReadyCallbacks = [];
@ -567,12 +600,11 @@ class IgniteRendering {
} }
} }
/**
* Returns whether or not we are currently in a rendering state.
*/
static get rendering() { static get rendering() {
if (IgniteRendering.RenderCount && IgniteRendering.RenderCount > 0) { return IgniteRendering.RenderCount && IgniteRendering.RenderCount > 0;
return true;
}
return false;
} }
} }