Added static css styling for templates via a styles property.
This commit is contained in:
parent
1d13c50711
commit
057960db8a
@ -19,6 +19,13 @@ class IgniteElement extends HTMLElement {
|
|||||||
return {};
|
return {};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns any CSS styling code for this ignite element.
|
||||||
|
*/
|
||||||
|
get styles() {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates the getters/setters for properties in this
|
* Creates the getters/setters for properties in this
|
||||||
* ignite element and initializes everything.
|
* ignite element and initializes everything.
|
||||||
@ -70,6 +77,16 @@ class IgniteElement extends HTMLElement {
|
|||||||
* this function is called by the DOM upon this element being created somewhere.
|
* this function is called by the DOM upon this element being created somewhere.
|
||||||
*/
|
*/
|
||||||
connectedCallback() {
|
connectedCallback() {
|
||||||
|
//See if a styling sheet has been created for this element if it's needed.
|
||||||
|
if (this.styles !== null && this.styles !== "") {
|
||||||
|
if (document.getElementsByClassName(`_${this.tagName}_styling_`).length == 0) {
|
||||||
|
var styleEl = document.createElement("style");
|
||||||
|
styleEl.classList.add(`_${this.tagName}_styling_`);
|
||||||
|
styleEl.innerHTML = this.styles;
|
||||||
|
document.body.prepend(styleEl);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
//If we don't already have a template, make sure we create one,
|
//If we don't already have a template, make sure we create one,
|
||||||
//this can happen if this element was constructed in the DOM instead of within a template.
|
//this can happen if this element was constructed in the DOM instead of within a template.
|
||||||
if (!this.template) {
|
if (!this.template) {
|
||||||
|
@ -26,6 +26,7 @@ class MainApp extends IgniteElement {
|
|||||||
.class(this.sheetClass)
|
.class(this.sheetClass)
|
||||||
.child(new html(`<h3>Im a child for sheet!</h3>`))
|
.child(new html(`<h3>Im a child for sheet!</h3>`))
|
||||||
)
|
)
|
||||||
|
.child(new Sheet())
|
||||||
.child(
|
.child(
|
||||||
new div(
|
new div(
|
||||||
new html(`<h1>This is a slot!`),
|
new html(`<h1>This is a slot!`),
|
||||||
|
11
src/sheet.js
11
src/sheet.js
@ -18,6 +18,15 @@ class Sheet extends IgniteElement {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
get styles() {
|
||||||
|
return `
|
||||||
|
.sheet {
|
||||||
|
background-color: green;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
`;
|
||||||
|
}
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
return this.template
|
return this.template
|
||||||
.class(this.show)
|
.class(this.show)
|
||||||
@ -34,7 +43,7 @@ class Sheet extends IgniteElement {
|
|||||||
new a("I go nowhere, but you can click me ;)")
|
new a("I go nowhere, but you can click me ;)")
|
||||||
.on("click", this.linkClick).on("click", this.linkClick2)
|
.on("click", this.linkClick).on("click", this.linkClick2)
|
||||||
.style("color", this.color, "important")
|
.style("color", this.color, "important")
|
||||||
)
|
).class("sheet")
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user