Super legit change, properties now return their value after render, but during render they return themselves so that templates can be setup correctly. This allows natural use of properties without having to .value after render. This also supports resetProperties()!

This commit is contained in:
Matt Mo 2020-07-29 12:32:16 -07:00
parent 1d5c85ea9d
commit 4f2d3aa63c

View File

@ -9,6 +9,7 @@ class IgniteElement extends HTMLElement {
this.template = null;
this.elements = [];
this.createProperties();
this.rendered = false;
}
/**
@ -34,7 +35,11 @@ class IgniteElement extends HTMLElement {
((propName) => {
Object.defineProperty(this, propName, {
get: function () {
return this[`_${propName}`];
if (this.rendered) {
return this[`_${propName}`].value;
} else {
return this[`_${propName}`];
}
},
set: function (value) {
@ -86,6 +91,9 @@ class IgniteElement extends HTMLElement {
//Construct our template.
this.template.construct(this.parentElement);
//Set rendered to true so that all future properties return their values.
this.rendered = true;
}
/**