Added ref functionality to get a ref from any template once it's created. Next up is property callback cleanup and disconnection upon element being removed.

This commit is contained in:
Matt Mo 2020-07-28 09:50:26 -07:00
parent b591a42370
commit 1adb844c97
3 changed files with 22 additions and 3 deletions

View File

@ -9,6 +9,7 @@ class IgniteTemplate {
this.tagName = null; this.tagName = null;
this.element = null; this.element = null;
this.properties = {}; this.properties = {};
this.refs = [];
if (items) { if (items) {
for (var i = 0; i < items.length; i++) { for (var i = 0; i < items.length; i++) {
@ -64,11 +65,26 @@ class IgniteTemplate {
return this; return this;
} }
ref(item) {
if (item instanceof IgniteProperty) {
this.refs.push((element) => {
item.value = element;
});
} else {
this.refs.push(item);
}
return this;
}
construct(parent) { construct(parent) {
//Construct this element if we haven't already //Construct this element if we haven't already
if (!this.element) { if (!this.element) {
this.element = window.document.createElement(this.tagName); this.element = window.document.createElement(this.tagName);
parent.appendChild(this.element); parent.appendChild(this.element);
//Invoke any refs we have
this.refs.forEach((ref) => { ref(this.element); });
} }
//Set the classes on this element //Set the classes on this element
@ -116,6 +132,8 @@ class IgniteTemplate {
onAttributeChanged(oldValue, newValue, attributeName) { onAttributeChanged(oldValue, newValue, attributeName) {
console.log(`Attribute changed, oldValue: ${oldValue} newValue: ${newValue} attribute: ${attributeName}`); console.log(`Attribute changed, oldValue: ${oldValue} newValue: ${newValue} attribute: ${attributeName}`);
console.log("this element:");
console.log(this.element);
if (newValue == null || newValue == undefined) { if (newValue == null || newValue == undefined) {
this.element.removeAttribute(attributeName); this.element.removeAttribute(attributeName);

View File

@ -15,12 +15,13 @@ class MainApp extends IgniteElement {
return [ return [
"title", "title",
"name", "name",
"href" "href",
"sheet"
]; ];
} }
render() { render() {
return new Sheet().property("name", this.name).property("href", this.href); return new Sheet().property("name", this.name).property("href", this.href).ref(this.sheet);
} }
} }

View File

@ -26,7 +26,7 @@ class Sheet extends IgniteElement {
new div( new div(
new html("<h2>this is before</h2>"), new html("<h2>this is before</h2>"),
new list(this.items, (item) => { new list(this.items, (item) => {
return new html(`<h1>${item}</h1>`) return new a(`${item}`).attribute("href", this.href)
}), }),
new html("<h2>this is after</h2>"), new html("<h2>this is after</h2>"),
new a("this is a link").attribute("href", this.href) new a("this is a link").attribute("href", this.href)