2022-08-26 08:35:55 -07:00
|
|
|
import { IgniteHtml } from '../ignite-html/ignite-html.js';
|
2020-10-26 15:27:43 -07:00
|
|
|
import { IgniteElement } from "../ignite-html/ignite-element.js";
|
|
|
|
import { IgniteTemplate, div, slot } from "../ignite-html/ignite-template.js";
|
|
|
|
|
|
|
|
class CollapsableRegion extends IgniteElement {
|
|
|
|
constructor() {
|
|
|
|
super();
|
|
|
|
}
|
|
|
|
|
|
|
|
get styles() {
|
2020-12-08 09:19:34 -08:00
|
|
|
return /*css*/`
|
2020-10-26 15:27:43 -07:00
|
|
|
mt-collapsable-region .title:hover {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
`;
|
|
|
|
}
|
|
|
|
|
|
|
|
get properties() {
|
|
|
|
return {
|
|
|
|
collapse: true,
|
|
|
|
title: "Placeholder"
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
return this.template.child(
|
|
|
|
new div()
|
|
|
|
.class("title")
|
|
|
|
.onClick(() => this.collapse = !this.collapse)
|
|
|
|
.child(this.title),
|
|
|
|
new div().hide(this.collapse).child(
|
|
|
|
new slot(this)
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class CollapsableRegionTemplate extends IgniteTemplate {
|
|
|
|
constructor(...children) {
|
|
|
|
super("mt-collapsable-region", children);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-26 08:35:55 -07:00
|
|
|
IgniteHtml.register("mt-collapsable-region", CollapsableRegion);
|
2020-10-26 15:27:43 -07:00
|
|
|
|
|
|
|
export {
|
|
|
|
CollapsableRegionTemplate as CollapsableRegion
|
2022-08-26 08:35:55 -07:00
|
|
|
}
|