Added events to templates so that we can use properties or functions and have them setup on the constructed element for us.

This commit is contained in:
Matt Mo 2020-07-30 08:32:44 -07:00
parent 8b98026a5a
commit 68d301c16e
2 changed files with 67 additions and 2 deletions

View File

@ -12,6 +12,7 @@ class IgniteTemplate {
this.properties = {}; this.properties = {};
this.refs = []; this.refs = [];
this.callbacks = []; this.callbacks = [];
this.events = {};
if (items) { if (items) {
for (var i = 0; i < items.length; i++) { for (var i = 0; i < items.length; i++) {
@ -118,6 +119,22 @@ class IgniteTemplate {
return this; return this;
} }
/**
* Adds a event by its name and the func to invoke once the event fires.
* @param {String} eventName
* @param {Any} func
*/
on(eventName, func) {
if (func instanceof IgniteProperty) {
this.callbacks.push(func.attach((oldValue, newValue) => this.onEventChanged(oldValue, newValue, eventName)));
this.events[eventName] = func.value;
} else {
this.events[eventName] = func;
}
return this;
}
/** /**
* Constructs this template and adds it to the DOM if this template * Constructs this template and adds it to the DOM if this template
* has not already been constructed. * has not already been constructed.
@ -165,6 +182,14 @@ class IgniteTemplate {
} }
} }
//Set the events on this element
var keys = Object.keys(this.events);
for (var i = 0; i < keys.length; i++) {
if (this.events[keys[i]] !== null) {
this.element.addEventListener(keys[i], this.events[keys[i]]);
}
}
//Set the properties on this element //Set the properties on this element
var keys = Object.keys(this.properties); var keys = Object.keys(this.properties);
for (var i = 0; i < keys.length; i++) { for (var i = 0; i < keys.length; i++) {
@ -192,6 +217,16 @@ class IgniteTemplate {
*/ */
deconstruct() { deconstruct() {
console.log(`Deconstructing ${this.tagName}`); console.log(`Deconstructing ${this.tagName}`);
//Remove and disconnect all events
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. //Remove our element if we have one.
if (this.element) { if (this.element) {
this.element.remove(); this.element.remove();
@ -294,6 +329,28 @@ class IgniteTemplate {
ref.value = this.element; ref.value = this.element;
} }
} }
/**
* Called when a event was changed and we need to update it.
* @param {any} oldValue
* @param {any} newValue
* @param {any} eventName
*/
onEventChanged(oldValue, newValue, eventName) {
console.log(`Event changed: ${eventName}`);
if (this.element) {
if (oldValue !== null && oldValue !== undefined) {
this.element.removeEventListener(eventName, oldValue);
}
if (newValue !== null && newValue !== undefined) {
this.element.addEventListener(eventName, newValue);
}
this.events[eventName] = newValue;
}
}
} }
class div extends IgniteTemplate { class div extends IgniteTemplate {

View File

@ -11,7 +11,8 @@ class Sheet extends IgniteElement {
show: false, show: false,
items: ["1", "2"], items: ["1", "2"],
href: "www.google.com", href: "www.google.com",
name: "default content" name: "default content",
linkClick: this.onClick
}; };
} }
@ -27,10 +28,17 @@ class Sheet extends IgniteElement {
new html("<h2>this is after</h2>"), new html("<h2>this is after</h2>"),
new html("<h3>---- begin sheet's slot ----<h3>"), new html("<h3>---- begin sheet's slot ----<h3>"),
new slot(this), new slot(this),
new html("<h3>---- end of slot ----</h3>") new html("<h3>---- end of slot ----</h3>"),
new a("I go nowhere, but you can click me ;)").on("click", this.linkClick)
) )
); );
} }
onClick(event) {
console.log("Element was clicked!");
console.log("Event:");
console.log(event);
}
} }
class SheetTemplate extends IgniteTemplate { class SheetTemplate extends IgniteTemplate {