2022-08-26 08:35:55 -07:00
|
|
|
import { IgniteHtml } from '../ignite-html/ignite-html.js';
|
2020-09-24 09:28:14 -07:00
|
|
|
import { IgniteElement } from "../ignite-html/ignite-element.js";
|
2020-10-05 18:23:18 -07:00
|
|
|
import { IgniteTemplate, slot, button, span } from "../ignite-html/ignite-template.js";
|
2020-09-24 09:28:14 -07:00
|
|
|
|
|
|
|
class Chip extends IgniteElement {
|
|
|
|
constructor() {
|
|
|
|
super();
|
|
|
|
}
|
|
|
|
|
|
|
|
get properties() {
|
|
|
|
return {
|
2020-10-05 18:23:18 -07:00
|
|
|
onDelete: () => { },
|
|
|
|
background: null,
|
2020-12-13 16:30:37 -08:00
|
|
|
color: null,
|
|
|
|
readOnly: false
|
2020-09-24 09:28:14 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
get styles() {
|
2020-12-08 09:19:34 -08:00
|
|
|
return /*css*/`
|
2020-09-24 09:28:14 -07:00
|
|
|
mt-chip {
|
|
|
|
border-radius: 1em;
|
|
|
|
background-color: #e0e0e0;
|
|
|
|
padding-top: 0.3em;
|
|
|
|
padding-bottom: 0.3em;
|
|
|
|
padding-left: 0.6em;
|
|
|
|
padding-right: 0.6em;
|
2020-10-12 14:30:39 -07:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
2020-09-24 09:28:14 -07:00
|
|
|
}
|
2020-10-05 18:23:18 -07:00
|
|
|
|
|
|
|
mt-chip:hover {
|
|
|
|
filter: brightness(0.9);
|
|
|
|
}
|
2020-09-24 09:28:14 -07:00
|
|
|
`;
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
2020-10-05 18:23:18 -07:00
|
|
|
return this.template
|
|
|
|
.style("background", this.background)
|
|
|
|
.style("color", this.color)
|
|
|
|
.child(
|
|
|
|
new slot(this),
|
|
|
|
new button()
|
2020-11-13 14:44:31 -08:00
|
|
|
.class("btn ml-2 p-0")
|
|
|
|
.child(`<i class="fal fa-times"></i>`)
|
|
|
|
.style("color", this.color)
|
|
|
|
.style("line-height", "1")
|
|
|
|
.style("border", "none")
|
2020-10-05 18:23:18 -07:00
|
|
|
.onClick(() => this.onDelete())
|
2020-12-13 16:30:37 -08:00
|
|
|
.hide(this.readOnly)
|
2020-10-05 18:23:18 -07:00
|
|
|
);
|
2020-09-24 09:28:14 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class ChipTemplate extends IgniteTemplate {
|
|
|
|
constructor(...children) {
|
|
|
|
super("mt-chip", children);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-26 08:35:55 -07:00
|
|
|
IgniteHtml.register("mt-chip", Chip);
|
2020-09-24 09:28:14 -07:00
|
|
|
|
|
|
|
export {
|
|
|
|
ChipTemplate as Chip
|
|
|
|
}
|