2023-07-25 20:50:50 -07:00
|
|
|
import { IgniteHtml } from '../ignite-html/ignite-html.js';
|
|
|
|
import { IgniteElement } from "../ignite-html/ignite-element.js";
|
2023-07-25 23:20:43 -07:00
|
|
|
import { IgniteTemplate, button, ul, slot, span, div, html, converter } from "../ignite-html/ignite-template.js";
|
2023-07-25 20:50:50 -07:00
|
|
|
import { IgniteProperty } from "../ignite-html/ignite-html.js";
|
|
|
|
import { Popper } from "./popper.js";
|
|
|
|
|
|
|
|
class SearchSelect extends IgniteElement {
|
|
|
|
constructor() {
|
|
|
|
super();
|
|
|
|
}
|
|
|
|
|
|
|
|
get styles() {
|
|
|
|
return /*css*/`
|
|
|
|
mt-search-select>div:empty:before {
|
|
|
|
content: attr(data-placeholder);
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
|
|
|
`;
|
|
|
|
}
|
|
|
|
|
|
|
|
get properties() {
|
|
|
|
return {
|
|
|
|
inputElement: null,
|
|
|
|
placeholder: null,
|
|
|
|
options: null,
|
|
|
|
optionsRenderer: null,
|
|
|
|
value: null,
|
|
|
|
search: null
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
return this.template
|
2023-07-25 23:20:43 -07:00
|
|
|
.class("w-100 position-relative form-control form-control-lg d-flex flex-row")
|
2023-07-25 20:50:50 -07:00
|
|
|
.attribute("tabindex", "0")
|
|
|
|
.child(
|
|
|
|
new div()
|
2023-07-25 23:20:43 -07:00
|
|
|
.style("flex", 1)
|
|
|
|
.style("border", "none")
|
|
|
|
.style("outline", "none")
|
|
|
|
.style("overflow", "auto")
|
2023-07-25 20:50:50 -07:00
|
|
|
.attribute("contenteditable", true)
|
|
|
|
.ref(this.inputElement),
|
|
|
|
|
2023-07-25 23:20:43 -07:00
|
|
|
new div().child(
|
|
|
|
new converter(this.value, this.optionsRenderer)
|
|
|
|
),
|
|
|
|
|
|
|
|
new button().class("btn btn-none").child("<i class='fa-solid fa-times' />"),
|
|
|
|
|
2023-07-25 20:50:50 -07:00
|
|
|
new Popper().class("form-control form-control-lg shadow").property("show", true).child(
|
|
|
|
"Test"
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class Template extends IgniteTemplate {
|
|
|
|
constructor(...children) {
|
|
|
|
super("mt-search-select", children);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
IgniteHtml.register("mt-search-select", SearchSelect);
|
|
|
|
|
|
|
|
export {
|
|
|
|
Template as SearchSelect
|
|
|
|
}
|