Added a bootstrap modal template to help work with modals.

This commit is contained in:
Matt Mo 2020-09-29 14:25:30 -07:00
parent d4568c1e62
commit 81f13416ae
2 changed files with 55 additions and 1 deletions

View File

@ -1,7 +1,9 @@
import { DropdownMenu } from "./dropdown-menu.js"; import { DropdownMenu } from "./dropdown-menu.js";
import { DropdownButton } from "./dropdown-button.js"; import { DropdownButton } from "./dropdown-button.js";
import { Modal } from "./modal.js";
export { export {
DropdownMenu, DropdownMenu,
DropdownButton DropdownButton,
Modal
} }

52
modal.js Normal file
View File

@ -0,0 +1,52 @@
import { IgniteElement } from "../ignite-html/ignite-element.js";
import { IgniteTemplate, div, slot } from "../ignite-html/ignite-template.js";
class Modal extends IgniteElement {
constructor() {
super();
}
get properties() {
return {
dialogClasses: null,
modal: null,
modalInstance: null
};
}
render() {
return this.template.child(
new div().class("modal").ref(this.modal).child(
new div().class("modal-dialog").class(this.dialogClasses).child(
new div().class("modal-content").child(
new slot(this)
)
)
)
)
}
ready() {
this.modalInstance = new bootstrap.Modal(this.modal);
}
show() {
this.modalInstance.show();
}
hide() {
this.modalInstance.hide();
}
}
customElements.define("bt-modal", Modal);
class ModalTemplate extends IgniteTemplate {
constructor(...children) {
super("bt-modal", children);
}
}
export {
ModalTemplate as Modal
}