2020-07-28 09:04:04 -07:00
|
|
|
import { IgniteElement } from './ignite-element.js';
|
|
|
|
import { IgniteTemplate, div, html, list, a } from './ignite-template.js';
|
|
|
|
|
|
|
|
class Sheet extends IgniteElement {
|
|
|
|
constructor() {
|
|
|
|
super();
|
|
|
|
|
|
|
|
this.show = false;
|
|
|
|
this.items = [];
|
|
|
|
this.href = "www.google.com";
|
2020-07-28 22:23:49 -07:00
|
|
|
this.name = "default content";
|
2020-07-28 09:04:04 -07:00
|
|
|
}
|
|
|
|
|
2020-07-28 22:23:49 -07:00
|
|
|
get properties() {
|
2020-07-28 09:04:04 -07:00
|
|
|
return [
|
|
|
|
"show",
|
|
|
|
"name",
|
|
|
|
"items",
|
|
|
|
"href"
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
return this.template
|
|
|
|
.class(this.show)
|
|
|
|
.child(
|
|
|
|
new div(
|
|
|
|
new html("<h2>this is before</h2>"),
|
|
|
|
new list(this.items, (item) => {
|
2020-07-28 22:23:49 -07:00
|
|
|
return new a(this.name).attribute("href", this.href)
|
2020-07-28 09:04:04 -07:00
|
|
|
}),
|
2020-07-28 22:23:49 -07:00
|
|
|
new html("<h2>this is after</h2>")
|
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 };
|