2020-07-28 09:04:04 -07:00
|
|
|
import { IgniteElement } from './ignite-element.js';
|
2020-07-29 11:21:02 -07:00
|
|
|
import { IgniteTemplate, div, html, list, a, slot } from './ignite-template.js';
|
2020-07-28 09:04:04 -07:00
|
|
|
|
|
|
|
class Sheet extends IgniteElement {
|
|
|
|
constructor() {
|
|
|
|
super();
|
|
|
|
}
|
|
|
|
|
2020-07-28 22:23:49 -07:00
|
|
|
get properties() {
|
2020-07-29 11:21:02 -07:00
|
|
|
return {
|
|
|
|
show: false,
|
|
|
|
items: ["1", "2"],
|
|
|
|
href: "www.google.com",
|
2020-07-30 08:32:44 -07:00
|
|
|
name: "default content",
|
2020-08-11 12:53:57 -07:00
|
|
|
color: "red",
|
2020-07-30 10:11:09 -07:00
|
|
|
linkClick: this.onClick1,
|
|
|
|
linkClick2: this.onClick2
|
2020-07-29 11:21:02 -07:00
|
|
|
};
|
2020-07-28 09:04:04 -07:00
|
|
|
}
|
|
|
|
|
2020-08-11 13:45:54 -07:00
|
|
|
get styles() {
|
|
|
|
return `
|
|
|
|
.sheet {
|
|
|
|
background-color: green;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
`;
|
|
|
|
}
|
|
|
|
|
2020-07-28 09:04:04 -07:00
|
|
|
render() {
|
|
|
|
return this.template
|
|
|
|
.class(this.show)
|
|
|
|
.child(
|
|
|
|
new div(
|
|
|
|
new html("<h2>this is before</h2>"),
|
|
|
|
new list(this.items, (item) => {
|
2020-07-29 11:21:02 -07:00
|
|
|
return new a(new html(`<h3>${item}</h3>`)).attribute("href", this.href)
|
2020-07-28 09:04:04 -07:00
|
|
|
}),
|
2020-07-29 11:21:02 -07:00
|
|
|
new html("<h2>this is after</h2>"),
|
|
|
|
new html("<h3>---- begin sheet's slot ----<h3>"),
|
|
|
|
new slot(this),
|
2020-07-30 08:32:44 -07:00
|
|
|
new html("<h3>---- end of slot ----</h3>"),
|
2020-08-11 12:53:57 -07:00
|
|
|
new a("I go nowhere, but you can click me ;)")
|
|
|
|
.on("click", this.linkClick).on("click", this.linkClick2)
|
|
|
|
.style("color", this.color, "important")
|
2020-08-11 13:45:54 -07:00
|
|
|
).class("sheet")
|
2020-07-28 09:04:04 -07:00
|
|
|
);
|
|
|
|
}
|
2020-07-30 08:32:44 -07:00
|
|
|
|
2020-07-30 10:11:09 -07:00
|
|
|
onClick1(event) {
|
|
|
|
console.log("Element was clicked 1!");
|
|
|
|
}
|
|
|
|
|
|
|
|
onClick2(event) {
|
|
|
|
console.log("Element was clicked 2!");
|
2020-07-30 08:32:44 -07:00
|
|
|
}
|
2020-07-28 09:04:04 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
class SheetTemplate extends IgniteTemplate {
|
|
|
|
constructor(...items) {
|
|
|
|
super(items);
|
|
|
|
|
|
|
|
this.tagName = "md-sheet";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
customElements.define("md-sheet", Sheet);
|
|
|
|
|
|
|
|
export { SheetTemplate as Sheet };
|