Added a bootstrap modal template to help work with modals.
This commit is contained in:
parent
d4568c1e62
commit
81f13416ae
@ -1,7 +1,9 @@
|
||||
import { DropdownMenu } from "./dropdown-menu.js";
|
||||
import { DropdownButton } from "./dropdown-button.js";
|
||||
import { Modal } from "./modal.js";
|
||||
|
||||
export {
|
||||
DropdownMenu,
|
||||
DropdownButton
|
||||
DropdownButton,
|
||||
Modal
|
||||
}
|
52
modal.js
Normal file
52
modal.js
Normal 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
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user