2020-08-21 21:42:10 -07:00
|
|
|
/**
|
|
|
|
* The outline of a ignite property which is a managed property that
|
|
|
|
* can be used to invoke call back functions when the value of the property changes.
|
2020-08-30 21:55:21 -07:00
|
|
|
* @ignore
|
2020-08-21 21:42:10 -07:00
|
|
|
*/
|
2020-07-28 09:04:04 -07:00
|
|
|
class IgniteProperty {
|
2020-09-25 09:36:39 -07:00
|
|
|
constructor(val, onChange = null) {
|
2020-08-22 16:15:45 -07:00
|
|
|
this.onChangeCallbacks = [];
|
|
|
|
this.onPushCallbacks = [];
|
|
|
|
this.onPopCallbacks = [];
|
2020-10-07 08:30:03 -07:00
|
|
|
this.onShiftCallbacks = [];
|
|
|
|
this.onUnshiftCallbacks = [];
|
|
|
|
this.onSpliceCallbacks = [];
|
|
|
|
|
2020-08-23 11:50:31 -07:00
|
|
|
this.arrayCallbacks = [];
|
|
|
|
this.reflected = [];
|
2020-08-22 16:15:45 -07:00
|
|
|
this._value = val;
|
2020-08-23 11:50:31 -07:00
|
|
|
this.ignoreValueChange = false;
|
2020-08-22 16:15:45 -07:00
|
|
|
|
2020-09-25 09:36:39 -07:00
|
|
|
//If we were passed an onchange function attach it.
|
|
|
|
if (onChange) {
|
|
|
|
this.attachOnChange(onChange);
|
|
|
|
}
|
|
|
|
|
2020-08-22 16:15:45 -07:00
|
|
|
//Attempt to patch the value if it's a list.
|
2020-08-23 11:50:31 -07:00
|
|
|
this.patchArray();
|
2020-07-28 09:04:04 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
get value() {
|
|
|
|
return this._value;
|
|
|
|
}
|
|
|
|
|
|
|
|
set value(val) {
|
2020-08-23 11:50:31 -07:00
|
|
|
this.setValue(val, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
setValue(val, reflect) {
|
|
|
|
//If the ignore value change flag is set exit.
|
|
|
|
if (this.ignoreValueChange) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-07-28 09:04:04 -07:00
|
|
|
var old = this._value;
|
|
|
|
this._value = val;
|
|
|
|
|
2020-08-23 11:50:31 -07:00
|
|
|
//Attempt to patch the value if it's an array.
|
|
|
|
this.patchArray();
|
2020-08-22 16:15:45 -07:00
|
|
|
|
2020-07-28 22:23:49 -07:00
|
|
|
//Invoke any callbacks letting them know the value changed.
|
2020-08-22 16:15:45 -07:00
|
|
|
this.invokeOnChange(old, val);
|
2020-08-23 11:50:31 -07:00
|
|
|
|
2020-09-25 09:36:39 -07:00
|
|
|
//If we want to reflect the value then bubble it up.
|
2020-08-23 11:50:31 -07:00
|
|
|
if (reflect) {
|
|
|
|
this.ignoreValueChange = true; //Ignore changes incase we are connected to any reflected properties.
|
|
|
|
this.reflected.forEach(reflect => reflect.value = val);
|
|
|
|
this.ignoreValueChange = false;
|
|
|
|
}
|
2020-08-22 16:15:45 -07:00
|
|
|
}
|
|
|
|
|
2020-08-23 11:50:31 -07:00
|
|
|
patchArray() {
|
|
|
|
//Disconnect any existing array callbacks
|
|
|
|
if (this.arrayCallbacks.length > 0) {
|
|
|
|
this.arrayCallbacks.forEach(callback => callback.disconnect());
|
|
|
|
this.arrayCallbacks = [];
|
|
|
|
}
|
|
|
|
|
|
|
|
//If our value is an array and it hasn't been patched, then patch it.
|
2020-08-22 18:11:37 -07:00
|
|
|
if (Array.isArray(this._value) && this._value.onPushCallbacks == undefined) {
|
|
|
|
this._value.onPushCallbacks = [];
|
|
|
|
this._value.onPopCallbacks = [];
|
2020-10-07 08:30:03 -07:00
|
|
|
this._value.onShiftCallbacks = [];
|
|
|
|
this._value.onUnshiftCallbacks = [];
|
|
|
|
this._value.onSpliceCallbacks = [];
|
2020-08-22 16:15:45 -07:00
|
|
|
|
|
|
|
this._value.push = function () {
|
|
|
|
var len = Array.prototype.push.apply(this, arguments);
|
2020-10-07 08:30:03 -07:00
|
|
|
this.onPushCallbacks.forEach(callback => callback.invoke(Array.from(arguments)));
|
2020-08-22 16:15:45 -07:00
|
|
|
return len;
|
|
|
|
};
|
|
|
|
|
|
|
|
this._value.pop = function () {
|
|
|
|
var len = Array.prototype.pop.apply(this, arguments);
|
2020-10-07 08:30:03 -07:00
|
|
|
this.onPopCallbacks.forEach(callback => callback.invoke());
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
|
|
|
this._value.unshift = function () {
|
|
|
|
var len = Array.prototype.unshift.apply(this, arguments);
|
|
|
|
this.onUnshiftCallbacks.forEach(callback => callback.invoke(Array.from(arguments)));
|
2020-08-22 16:15:45 -07:00
|
|
|
return len;
|
|
|
|
}
|
2020-08-22 18:11:37 -07:00
|
|
|
|
2020-10-07 08:30:03 -07:00
|
|
|
this._value.shift = function () {
|
|
|
|
var len = Array.prototype.shift.apply(this, arguments);
|
|
|
|
this.onShiftCallbacks.forEach(callback => callback.invoke());
|
|
|
|
return len;
|
|
|
|
};
|
|
|
|
|
|
|
|
this._value.splice = function (start, deleteCount = 0, ...items) {
|
|
|
|
var removed = Array.prototype.splice.apply(this, arguments);
|
|
|
|
this.onSpliceCallbacks.forEach(callback => callback.invoke(start, deleteCount, items));
|
|
|
|
return removed;
|
|
|
|
}
|
|
|
|
|
2020-08-22 18:11:37 -07:00
|
|
|
this._value.attachOnPush = function (func) {
|
2020-10-07 08:30:03 -07:00
|
|
|
var callback = new IgniteCallback(func, detach => this.detachOnPush(detach));
|
2020-08-22 18:11:37 -07:00
|
|
|
this.onPushCallbacks.push(callback);
|
|
|
|
return callback;
|
|
|
|
}
|
|
|
|
|
|
|
|
this._value.attachOnPop = function (func) {
|
2020-10-07 08:30:03 -07:00
|
|
|
var callback = new IgniteCallback(func, detach => this.detachOnPop(detach));
|
2020-08-22 18:11:37 -07:00
|
|
|
this.onPopCallbacks.push(callback);
|
|
|
|
return callback;
|
|
|
|
}
|
|
|
|
|
2020-10-07 08:30:03 -07:00
|
|
|
this._value.attachOnUnshift = function (func) {
|
|
|
|
var callback = new IgniteCallback(func, detach => this.detachOnUnshift(detach));
|
|
|
|
this.onUnshiftCallbacks.push(callback);
|
|
|
|
return callback;
|
|
|
|
}
|
|
|
|
|
|
|
|
this._value.attachOnShift = function (func) {
|
|
|
|
var callback = new IgniteCallback(func, detach => this.detachOnShift(detach));
|
|
|
|
this.onShiftCallbacks.push(callback);
|
|
|
|
return callback;
|
|
|
|
}
|
|
|
|
|
|
|
|
this._value.attachonSplice = function (func) {
|
|
|
|
var callback = new IgniteCallback(func, detach => this.detachonSplice(detach));
|
|
|
|
this.onSpliceCallbacks.push(callback);
|
|
|
|
return callback;
|
|
|
|
}
|
|
|
|
|
2020-08-22 18:11:37 -07:00
|
|
|
this._value.detachOnPush = function (callback) {
|
|
|
|
this.onPushCallbacks = this.onPushCallbacks.filter(push => push != callback);
|
|
|
|
}
|
|
|
|
|
|
|
|
this._value.detachOnPop = function (callback) {
|
|
|
|
this.onPopCallbacks = this.onPopCallbacks.filter(pop => pop != callback);
|
|
|
|
}
|
|
|
|
|
2020-10-07 08:30:03 -07:00
|
|
|
this._value.detachOnUnshift = function (callback) {
|
|
|
|
this.onUnshiftCallbacks = this.onUnshiftCallbacks.filter(unshift => unshift != callback);
|
|
|
|
}
|
|
|
|
|
|
|
|
this._value.detachOnShift = function (callback) {
|
|
|
|
this.onShiftCallbacks = this.onShiftCallbacks.filter(shift => shift != callback);
|
|
|
|
}
|
|
|
|
|
|
|
|
this._value.detachonSplice = function (callback) {
|
|
|
|
this.onSpliceCallbacks = this.onSpliceCallbacks.filter(slice => slice != callback);
|
|
|
|
}
|
|
|
|
}
|
2020-10-20 13:18:26 -07:00
|
|
|
|
2020-10-07 08:30:03 -07:00
|
|
|
if (Array.isArray(this._value) && this._value.onPushCallbacks) {
|
2020-08-23 11:50:31 -07:00
|
|
|
//This array has already been patched but attach to it so we get callbacks.
|
2020-10-07 08:30:03 -07:00
|
|
|
this.arrayCallbacks.push(this._value.attachOnPush((items) => this.invokeOnPush(items)));
|
2020-08-23 11:50:31 -07:00
|
|
|
this.arrayCallbacks.push(this._value.attachOnPop(() => this.invokeOnPop()));
|
2020-10-07 08:30:03 -07:00
|
|
|
this.arrayCallbacks.push(this._value.attachOnShift(() => this.invokeOnShift()));
|
|
|
|
this.arrayCallbacks.push(this._value.attachOnUnshift((items) => this.invokeOnUnshift(items)));
|
|
|
|
this.arrayCallbacks.push(this._value.attachonSplice((start, deleteCount, items) => this.invokeonSplice(start, deleteCount, items)));
|
2020-07-28 09:04:04 -07:00
|
|
|
}
|
|
|
|
}
|
2020-07-28 22:23:49 -07:00
|
|
|
|
2020-08-22 16:15:45 -07:00
|
|
|
invokeOnChange(oldValue, newValue) {
|
2020-10-07 08:30:03 -07:00
|
|
|
this.onChangeCallbacks.forEach(callback => callback.invoke(oldValue, newValue));
|
2020-08-22 16:15:45 -07:00
|
|
|
}
|
|
|
|
|
2020-10-07 08:30:03 -07:00
|
|
|
invokeOnPush(items) {
|
|
|
|
this.onPushCallbacks.forEach(callback => callback.invoke(this._value, items));
|
2020-08-22 16:15:45 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
invokeOnPop() {
|
2020-10-07 08:30:03 -07:00
|
|
|
this.onPopCallbacks.forEach(callback => callback.invoke(this._value));
|
|
|
|
}
|
|
|
|
|
|
|
|
invokeOnShift() {
|
|
|
|
this.onShiftCallbacks.forEach(callback => callback.invoke(this._value));
|
|
|
|
}
|
|
|
|
|
|
|
|
invokeOnUnshift(items) {
|
|
|
|
this.onUnshiftCallbacks.forEach(callback => callback.invoke(this._value, items));
|
|
|
|
}
|
|
|
|
|
|
|
|
invokeonSplice(start, deleteCount, items) {
|
|
|
|
this.onSpliceCallbacks.forEach(callback => callback.invoke(this._value, start, deleteCount, items));
|
2020-08-22 16:15:45 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
attachOnChange(onChange) {
|
2020-10-07 08:30:03 -07:00
|
|
|
var callback = new IgniteCallback(onChange, detach => this.detachOnChange(detach));
|
2020-08-22 16:15:45 -07:00
|
|
|
this.onChangeCallbacks.push(callback);
|
|
|
|
return callback;
|
|
|
|
}
|
|
|
|
|
|
|
|
attachOnPush(onPush) {
|
2020-10-07 08:30:03 -07:00
|
|
|
var callback = new IgniteCallback(onPush, detach => this.detachOnPush(detach));
|
2020-08-22 16:15:45 -07:00
|
|
|
this.onPushCallbacks.push(callback);
|
|
|
|
return callback;
|
|
|
|
}
|
|
|
|
|
|
|
|
attachOnPop(onPop) {
|
2020-10-07 08:30:03 -07:00
|
|
|
var callback = new IgniteCallback(onPop, detach => this.detachOnPop(detach));
|
2020-08-22 16:15:45 -07:00
|
|
|
this.onPopCallbacks.push(callback);
|
2020-07-28 22:23:49 -07:00
|
|
|
return callback;
|
|
|
|
}
|
2020-07-28 09:04:04 -07:00
|
|
|
|
2020-10-07 08:30:03 -07:00
|
|
|
attachOnShift(onShift) {
|
|
|
|
var callback = new IgniteCallback(onShift, detach => this.detachOnShift(detach));
|
|
|
|
this.onShiftCallbacks.push(callback);
|
|
|
|
return callback;
|
|
|
|
}
|
|
|
|
|
|
|
|
attachOnUnshift(onUnshift) {
|
|
|
|
var callback = new IgniteCallback(onUnshift, detach => this.detachOnUnshift(detach));
|
|
|
|
this.onUnshiftCallbacks.push(callback);
|
|
|
|
return callback;
|
|
|
|
}
|
|
|
|
|
|
|
|
attachOnSplice(onSplice) {
|
|
|
|
var callback = new IgniteCallback(onSplice, detach => this.detachonSplice(detach));
|
|
|
|
this.onSpliceCallbacks.push(callback);
|
|
|
|
return callback;
|
|
|
|
}
|
|
|
|
|
2020-08-22 18:11:37 -07:00
|
|
|
detachOnChange(callback) {
|
|
|
|
this.onChangeCallbacks = this.onChangeCallbacks.filter(change => change != callback);
|
2020-08-22 16:15:45 -07:00
|
|
|
}
|
|
|
|
|
2020-08-22 18:11:37 -07:00
|
|
|
detachOnPush(callback) {
|
|
|
|
this.onPushCallbacks = this.onPushCallbacks.filter(push => push != callback);
|
2020-08-22 16:15:45 -07:00
|
|
|
}
|
|
|
|
|
2020-08-22 18:11:37 -07:00
|
|
|
detachOnPop(callback) {
|
|
|
|
this.onPopCallbacks = this.onPopCallbacks.filter(pop => pop != callback);
|
2020-08-22 16:15:45 -07:00
|
|
|
}
|
2020-10-07 08:30:03 -07:00
|
|
|
|
|
|
|
detachOnShift(callback) {
|
|
|
|
this.onShiftCallbacks = this.onShiftCallbacks.filter(shift => shift != callback);
|
|
|
|
}
|
|
|
|
|
|
|
|
detachOnUnshift(callback) {
|
|
|
|
this.onUnshiftCallbacks = this.onUnshiftCallbacks.filter(unshift => unshift != callback);
|
|
|
|
}
|
|
|
|
|
|
|
|
detachonSplice(callback) {
|
|
|
|
this.onSpliceCallbacks = this.onSpliceCallbacks.filter(slice => slice != callback);
|
|
|
|
}
|
2020-08-22 16:15:45 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-08-22 18:11:37 -07:00
|
|
|
* Return the value of the property if we try to convert
|
|
|
|
* the property to a string.
|
2020-08-22 16:15:45 -07:00
|
|
|
*/
|
2020-08-22 18:11:37 -07:00
|
|
|
IgniteProperty.prototype.toString = function () {
|
|
|
|
return this.value.toString();
|
2020-08-22 16:15:45 -07:00
|
|
|
}
|
|
|
|
|
2020-09-25 09:36:39 -07:00
|
|
|
/**
|
|
|
|
* Add a prototype to help get property values from an array
|
|
|
|
*/
|
|
|
|
Array.prototype.getPropertyValues = function () {
|
|
|
|
var ret = [];
|
2020-10-20 13:18:26 -07:00
|
|
|
this.forEach(prop => {
|
|
|
|
if (prop instanceof IgniteProperty) {
|
|
|
|
ret.push(prop.value);
|
|
|
|
} else {
|
|
|
|
ret.push(prop);
|
|
|
|
}
|
|
|
|
});
|
2020-09-25 09:36:39 -07:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Add a prototype to help get old property values from an array
|
|
|
|
*/
|
|
|
|
Array.prototype.getOldPropertyValues = function (property, oldValue) {
|
|
|
|
var ret = [];
|
|
|
|
this.forEach(prop => {
|
|
|
|
if (prop == property) {
|
|
|
|
ret.push(oldValue);
|
|
|
|
} else {
|
2020-10-20 13:18:26 -07:00
|
|
|
if (prop instanceof IgniteProperty) {
|
|
|
|
ret.push(prop.value);
|
|
|
|
} else {
|
|
|
|
ret.push(prop);
|
|
|
|
}
|
2020-09-25 09:36:39 -07:00
|
|
|
}
|
|
|
|
});
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2020-08-22 16:15:45 -07:00
|
|
|
/**
|
2020-08-22 18:11:37 -07:00
|
|
|
* The outline of a ignite callback that can be invoked and disconnected
|
|
|
|
* to help maintain and cleanup callbacks.
|
2020-08-30 21:55:21 -07:00
|
|
|
* @ignore
|
2020-08-21 21:42:10 -07:00
|
|
|
*/
|
2020-08-22 18:11:37 -07:00
|
|
|
class IgniteCallback {
|
|
|
|
constructor(callback, detach) {
|
2020-07-28 22:23:49 -07:00
|
|
|
this.callback = callback;
|
2020-08-22 18:11:37 -07:00
|
|
|
this.detach = detach;
|
2020-07-28 22:23:49 -07:00
|
|
|
}
|
2020-07-28 09:04:04 -07:00
|
|
|
|
2020-08-22 18:11:37 -07:00
|
|
|
invoke(...params) {
|
2020-07-28 22:23:49 -07:00
|
|
|
if (this.callback) {
|
2020-08-22 18:11:37 -07:00
|
|
|
this.callback(...params);
|
2020-07-28 22:23:49 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
disconnect() {
|
|
|
|
this.callback = null;
|
|
|
|
|
2020-08-22 18:11:37 -07:00
|
|
|
if (this.detach) {
|
|
|
|
this.detach(this);
|
2020-07-28 22:23:49 -07:00
|
|
|
}
|
|
|
|
}
|
2020-07-28 09:04:04 -07:00
|
|
|
}
|
|
|
|
|
2020-08-21 21:42:10 -07:00
|
|
|
/**
|
|
|
|
* The outline of a simple rendering context which allows us to
|
|
|
|
* know if we are currently rendering anything ignite related. This works
|
|
|
|
* because Javascript is single threaded, if events could break the current execution
|
|
|
|
* this would fail. But it's safe since events cannot do that.
|
2020-08-30 21:55:21 -07:00
|
|
|
* @ignore
|
2020-08-21 21:42:10 -07:00
|
|
|
*/
|
|
|
|
class IgniteRenderingContext {
|
|
|
|
static enter() {
|
|
|
|
if (!IgniteRenderingContext.RenderCount) {
|
|
|
|
IgniteRenderingContext.RenderCount = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
IgniteRenderingContext.RenderCount++;
|
|
|
|
}
|
|
|
|
|
|
|
|
static leave() {
|
|
|
|
if (IgniteRenderingContext.RenderCount) {
|
|
|
|
IgniteRenderingContext.RenderCount--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-25 09:36:39 -07:00
|
|
|
static push() {
|
|
|
|
if (IgniteRenderingContext.Stack == null) {
|
|
|
|
IgniteRenderingContext.Stack = [];
|
|
|
|
}
|
|
|
|
|
|
|
|
IgniteRenderingContext.Stack.push(IgniteRenderingContext.RenderCount);
|
|
|
|
IgniteRenderingContext.RenderCount = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static pop() {
|
|
|
|
if (IgniteRenderingContext.Stack && IgniteRenderingContext.Stack.length > 0) {
|
|
|
|
IgniteRenderingContext.RenderCount = IgniteRenderingContext.Stack.pop();
|
|
|
|
}
|
|
|
|
}
|
2020-09-28 09:02:57 -07:00
|
|
|
|
2020-09-11 07:57:37 -07:00
|
|
|
static ready(callback) {
|
|
|
|
//Setup the callbacks if it's not init'd.
|
|
|
|
if (!IgniteRenderingContext.ReadyCallbacks) {
|
|
|
|
IgniteRenderingContext.ReadyCallbacks = [];
|
|
|
|
}
|
|
|
|
|
|
|
|
//Add this ignite callback.
|
|
|
|
IgniteRenderingContext.ReadyCallbacks.push(callback);
|
|
|
|
|
|
|
|
//Clear the existing timer if there is one.
|
|
|
|
if (IgniteRenderingContext.ReadyTimer) {
|
|
|
|
clearTimeout(IgniteRenderingContext.ReadyTimer);
|
|
|
|
}
|
|
|
|
|
|
|
|
//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.ReadyCallbacks = [];
|
|
|
|
IgniteRenderingContext.ReadyTimer = null;
|
|
|
|
}, 1);
|
|
|
|
}
|
|
|
|
|
2020-08-21 21:42:10 -07:00
|
|
|
static get rendering() {
|
|
|
|
if (IgniteRenderingContext.RenderCount && IgniteRenderingContext.RenderCount > 0) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
window.IgniteRenderingContext = IgniteRenderingContext;
|
|
|
|
|
2020-07-28 09:04:04 -07:00
|
|
|
export {
|
2020-08-23 11:50:31 -07:00
|
|
|
IgniteProperty,
|
|
|
|
IgniteRenderingContext,
|
|
|
|
IgniteCallback
|
2020-07-28 09:04:04 -07:00
|
|
|
};
|