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-07-28 09:04:04 -07:00
|
|
|
class IgniteProperty {
|
2020-08-22 16:15:45 -07:00
|
|
|
constructor(val) {
|
|
|
|
this.onChangeCallbacks = [];
|
|
|
|
this.onPushCallbacks = [];
|
|
|
|
this.onPopCallbacks = [];
|
2020-08-22 18:11:37 -07:00
|
|
|
this.callbacks = [];
|
2020-08-22 16:15:45 -07:00
|
|
|
this._value = val;
|
|
|
|
|
|
|
|
//Attempt to patch the value if it's a list.
|
2020-08-22 18:11:37 -07:00
|
|
|
this.patchList();
|
2020-07-28 09:04:04 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
get value() {
|
|
|
|
return this._value;
|
|
|
|
}
|
|
|
|
|
|
|
|
set value(val) {
|
|
|
|
var old = this._value;
|
|
|
|
this._value = val;
|
|
|
|
|
2020-08-22 18:11:37 -07:00
|
|
|
//Disconnect any existing callbacks
|
|
|
|
this.callbacks.forEach(callback => callback.disconnect());
|
|
|
|
this.callbacks = [];
|
|
|
|
|
2020-08-22 16:15:45 -07:00
|
|
|
//Attempt to patch the value if it's a list.
|
2020-08-22 18:11:37 -07:00
|
|
|
this.patchList();
|
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-22 18:11:37 -07:00
|
|
|
patchList() {
|
|
|
|
if (Array.isArray(this._value) && this._value.onPushCallbacks == undefined) {
|
|
|
|
this._value.onPushCallbacks = [];
|
|
|
|
this._value.onPopCallbacks = [];
|
2020-08-22 16:15:45 -07:00
|
|
|
|
|
|
|
this._value.push = function () {
|
|
|
|
var len = Array.prototype.push.apply(this, arguments);
|
2020-08-22 18:11:37 -07:00
|
|
|
this.onPushCallbacks.forEach((callback) => callback.invoke(arguments[0]));
|
2020-08-22 16:15:45 -07:00
|
|
|
return len;
|
|
|
|
};
|
|
|
|
|
|
|
|
this._value.pop = function () {
|
|
|
|
var len = Array.prototype.pop.apply(this, arguments);
|
2020-08-22 18:11:37 -07:00
|
|
|
this.onPopCallbacks.forEach((callback) => callback.invoke());
|
2020-08-22 16:15:45 -07:00
|
|
|
return len;
|
|
|
|
}
|
2020-08-22 18:11:37 -07:00
|
|
|
|
|
|
|
this._value.attachOnPush = function (func) {
|
|
|
|
var callback = new IgniteCallback(func, (detach) => this.detachOnPush(detach));
|
|
|
|
this.onPushCallbacks.push(callback);
|
|
|
|
return callback;
|
|
|
|
}
|
|
|
|
|
|
|
|
this._value.attachOnPop = function (func) {
|
|
|
|
var callback = new IgniteCallback(func, (detach) => this.detachOnPop(detach));
|
|
|
|
this.onPopCallbacks.push(callback);
|
|
|
|
return callback;
|
|
|
|
}
|
|
|
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
|
|
|
this.callbacks.push(this._value.attachOnPush(() => this.invokeOnPush()));
|
|
|
|
this.callbacks.push(this._value.attachOnPop(() => this.invokeOnPop()));
|
|
|
|
} else if (Array.isArray(this._value) && this._value.onPushCallbacks) {
|
|
|
|
this.callbacks.push(this._value.attachOnPush(() => this.invokeOnPush()));
|
|
|
|
this.callbacks.push(this._value.attachOnPop(() => this.invokeOnPop()));
|
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) {
|
|
|
|
for (var i = 0; i < this.onChangeCallbacks.length; i++) {
|
|
|
|
this.onChangeCallbacks[i].invoke(oldValue, newValue);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
invokeOnPush() {
|
|
|
|
for (var i = 0; i < this.onPushCallbacks.length; i++) {
|
|
|
|
this.onPushCallbacks[i].invoke(null, this._value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
invokeOnPop() {
|
|
|
|
for (var i = 0; i < this.onPopCallbacks.length; i++) {
|
|
|
|
this.onPopCallbacks[i].invoke(null, this._value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
attachOnChange(onChange) {
|
2020-08-22 18:11:37 -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-08-22 18:11:37 -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-08-22 18:11:37 -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-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-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-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-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) {
|
|
|
|
console.log("Invoke with params:", 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.
|
|
|
|
*/
|
|
|
|
class IgniteRenderingContext {
|
|
|
|
static enter() {
|
|
|
|
if (!IgniteRenderingContext.RenderCount) {
|
|
|
|
IgniteRenderingContext.RenderCount = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
IgniteRenderingContext.RenderCount++;
|
|
|
|
}
|
|
|
|
|
|
|
|
static leave() {
|
|
|
|
if (IgniteRenderingContext.RenderCount) {
|
|
|
|
IgniteRenderingContext.RenderCount--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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-07-28 22:23:49 -07:00
|
|
|
IgniteProperty
|
2020-07-28 09:04:04 -07:00
|
|
|
};
|