Improved ignite template deconstruct and construct functions. Simplified IgniteObject constructor.
This commit is contained in:
parent
018179ec56
commit
83e53ed4c3
@ -413,6 +413,7 @@ class IgniteProperty {
|
|||||||
/**
|
/**
|
||||||
* Return the value of the property if we try to convert
|
* Return the value of the property if we try to convert
|
||||||
* the property to a string.
|
* the property to a string.
|
||||||
|
* @ignore
|
||||||
*/
|
*/
|
||||||
IgniteProperty.prototype.toString = function () {
|
IgniteProperty.prototype.toString = function () {
|
||||||
if (this.value) {
|
if (this.value) {
|
||||||
@ -462,24 +463,7 @@ Array.prototype.getOldPropertyValues = function (property, oldValue) {
|
|||||||
* The outline of an IgniteObject which contains IgniteProperties.
|
* The outline of an IgniteObject which contains IgniteProperties.
|
||||||
*/
|
*/
|
||||||
class IgniteObject {
|
class IgniteObject {
|
||||||
/**
|
constructor() {
|
||||||
* Creates a new IgniteObject from an object and returns it.
|
|
||||||
* @param {Any} obj The object to create an IgniteObject out of.
|
|
||||||
* @returns {IgniteObject} The ignite object created.
|
|
||||||
*/
|
|
||||||
constructor(obj) {
|
|
||||||
//Only do this if the object is not an ignite object already.
|
|
||||||
if (!(obj instanceof IgniteObject)) {
|
|
||||||
Object.keys(obj).forEach(name => {
|
|
||||||
var prop = new IgniteProperty(obj[name]);
|
|
||||||
Object.defineProperty(this, name, {
|
|
||||||
get: () => { return (IgniteRendering.rendering ? prop : prop.value); },
|
|
||||||
set: (value) => { prop.value = value; }
|
|
||||||
});
|
|
||||||
});
|
|
||||||
} else {
|
|
||||||
return obj;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -1155,7 +1155,9 @@ class IgniteTemplate {
|
|||||||
}
|
}
|
||||||
|
|
||||||
//Invoke any refs we have and pass back the element reference.
|
//Invoke any refs we have and pass back the element reference.
|
||||||
this._refs.forEach((ref) => ref(this.element));
|
if (this._refs) {
|
||||||
|
this._refs.forEach((ref) => ref(this.element));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
//Set the classes on this element
|
//Set the classes on this element
|
||||||
@ -1285,16 +1287,7 @@ class IgniteTemplate {
|
|||||||
* there are no memory leaks.
|
* there are no memory leaks.
|
||||||
*/
|
*/
|
||||||
deconstruct() {
|
deconstruct() {
|
||||||
//Remove and disconnect all events
|
//Remove our element if we have one, this will destroy all events too.
|
||||||
if (this.element && this._events) {
|
|
||||||
var keys = Object.keys(this._events);
|
|
||||||
for (var i = 0; i < keys.length; i++) {
|
|
||||||
this.element.removeEventListener(keys[i], this._events[keys[i]]);
|
|
||||||
}
|
|
||||||
this._events = null;
|
|
||||||
}
|
|
||||||
|
|
||||||
//Remove our element if we have one.
|
|
||||||
if (this.element) {
|
if (this.element) {
|
||||||
this.element.remove();
|
this.element.remove();
|
||||||
this.element = null;
|
this.element = null;
|
||||||
@ -1307,40 +1300,28 @@ class IgniteTemplate {
|
|||||||
this.children[i].deconstruct();
|
this.children[i].deconstruct();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
this.children = null;
|
|
||||||
}
|
|
||||||
|
|
||||||
//Disconnect all callbacks
|
|
||||||
if (this._callbacks) {
|
|
||||||
this._callbacks.forEach((item) => item.disconnect());
|
|
||||||
this._callbacks = null;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//Stop observing resize events if we need to.
|
//Stop observing resize events if we need to.
|
||||||
if (this._resizeObserver) {
|
if (this._resizeObserver) {
|
||||||
this._resizeObserver.disconnect();
|
this._resizeObserver.disconnect();
|
||||||
this._resizeObserver = null;
|
this._resizeObserver = null;
|
||||||
this._resizeObserverCallback = null;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//Stop observing intersects if we need to.
|
//Stop observing intersects if we need to.
|
||||||
if (this._intersectObserver) {
|
if (this._intersectObserver) {
|
||||||
this._intersectObserver.disconnect();
|
this._intersectObserver.disconnect();
|
||||||
this._intersectObserver = null;
|
this._intersectObserver = null;
|
||||||
this._intersectObserverCallback = null;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//Remove any refs
|
//Invoke any refs and pass null.
|
||||||
if (this._refs) {
|
if (this._refs) {
|
||||||
//Pass null to our refs so that the reference is updated.
|
|
||||||
this._refs.forEach(ref => ref(null));
|
this._refs.forEach(ref => ref(null));
|
||||||
this._refs = null;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//Invoke any custom destructors
|
//Invoke any custom destructors
|
||||||
if (this._destructors) {
|
if (this._destructors) {
|
||||||
this._destructors.forEach(d => d());
|
this._destructors.forEach(d => d());
|
||||||
this._destructors = null;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user