2020-07-28 09:04:04 -07:00
|
|
|
import { IgniteProperty } from './ignite-html.js';
|
|
|
|
import { IgniteTemplate } from './ignite-template.js';
|
|
|
|
|
|
|
|
class IgniteElement extends HTMLElement {
|
|
|
|
constructor() {
|
|
|
|
super();
|
|
|
|
|
2020-07-28 22:23:49 -07:00
|
|
|
this.onDisconnected = null;
|
2020-07-28 09:04:04 -07:00
|
|
|
this.template = null;
|
|
|
|
this.createProperties();
|
|
|
|
}
|
|
|
|
|
2020-07-28 22:23:49 -07:00
|
|
|
/**
|
|
|
|
* Returns the properties for this ignite element.
|
|
|
|
*/
|
|
|
|
get properties() {
|
2020-07-28 09:04:04 -07:00
|
|
|
return [];
|
|
|
|
}
|
|
|
|
|
2020-07-28 22:23:49 -07:00
|
|
|
/**
|
|
|
|
* Creates the getters/setters for properties in this
|
|
|
|
* ignite element and initializes everything.
|
|
|
|
*/
|
2020-07-28 09:04:04 -07:00
|
|
|
createProperties() {
|
2020-07-28 22:23:49 -07:00
|
|
|
var props = this.properties;
|
2020-07-28 09:04:04 -07:00
|
|
|
|
|
|
|
for (var i = 0; i < props.length; i++) {
|
|
|
|
this[`_${props[i]}`] = new IgniteProperty();
|
|
|
|
|
|
|
|
((propName) => {
|
|
|
|
Object.defineProperty(this, propName, {
|
|
|
|
get: function () {
|
|
|
|
return this[`_${propName}`];
|
|
|
|
},
|
|
|
|
|
|
|
|
set: function (value) {
|
|
|
|
this[`_${propName}`].value = value;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
})(props[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-28 22:23:49 -07:00
|
|
|
/**
|
|
|
|
* Setups this ignite element and constructs it's template when
|
|
|
|
* this function is called by the DOM upon this element being created somewhere.
|
|
|
|
*/
|
2020-07-28 09:04:04 -07:00
|
|
|
connectedCallback() {
|
|
|
|
this.template = new IgniteTemplate();
|
|
|
|
this.template.element = this;
|
2020-07-28 22:23:49 -07:00
|
|
|
this.template.tagName = this.tagName;
|
2020-07-28 09:04:04 -07:00
|
|
|
|
2020-07-28 22:23:49 -07:00
|
|
|
//Make sure the render template is our template, if not, add it as a child.
|
|
|
|
var renderTemplate = this.render();
|
|
|
|
if (renderTemplate !== this.template && renderTemplate) {
|
|
|
|
this.template.child(renderTemplate);
|
|
|
|
} else if (!renderTemplate) {
|
|
|
|
console.warn(`RenderTemplate was null for element: ${this.tagName}, is render() returning null or not returning anything?`);
|
|
|
|
}
|
|
|
|
|
|
|
|
//Construct our template.
|
|
|
|
this.template.construct(this.parentElement);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Cleanups this element and deconstructs everything when this element is removed from
|
|
|
|
* the DOM.
|
|
|
|
*/
|
|
|
|
disconnectedCallback() {
|
|
|
|
//If we still have a reference to our template, deconstruct it.
|
|
|
|
if (this.template) {
|
|
|
|
this.template.deconstruct();
|
|
|
|
}
|
|
|
|
|
|
|
|
//If we have a onDisconnected callback, call it and then remove the reference.
|
|
|
|
if (this.onDisconnected) {
|
|
|
|
this.onDisconnected();
|
|
|
|
this.onDisconnected = null;
|
|
|
|
}
|
2020-07-28 09:04:04 -07:00
|
|
|
}
|
|
|
|
|
2020-07-28 22:23:49 -07:00
|
|
|
/**
|
|
|
|
* Returns the template to be rendered for this element.
|
|
|
|
*/
|
2020-07-28 09:04:04 -07:00
|
|
|
render() {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export {
|
|
|
|
IgniteElement
|
|
|
|
};
|