Working on bootstrap menu component to easily use with Ignite.

This commit is contained in:
Matt Mo 2020-09-18 13:53:30 -07:00
parent e3d2e08b6c
commit 653bacb2c0
2 changed files with 32 additions and 0 deletions

29
dropdown-menu.js Normal file
View File

@ -0,0 +1,29 @@
import { IgniteElement } from "../ignite-html/ignite-element.js";
import { IgniteTemplate, button, ul, slot } from "../ignite-html/ignite-template.js";
class DropdownMenu extends IgniteElement {
constructor() {
super();
}
render() {
return this.template.child(
new button().class("dropdown-toggle").attribute("data-toggle", "dropdown").child("menu click"),
new ul().class("dropdown-menu").child(
new slot(this)
)
);
}
}
class DropdownMenuTemplate extends IgniteTemplate {
constructor(...children) {
super("bt-dropdown-menu", children);
}
}
customElements.define("bt-dropdown-menu", DropdownMenu);
export {
DropdownMenuTemplate as DropdownMenu
};

3
ignite-bootstrap.js Normal file
View File

@ -0,0 +1,3 @@
import { DropdownMenu } from "./dropdown-menu.js";
export { DropdownMenu }