68 lines
1.7 KiB
JavaScript
Raw Normal View History

import { IgniteHtml } from '../ignite-html/ignite-html.js';
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";
class Chip extends IgniteElement {
constructor() {
super();
}
get properties() {
return {
2020-10-05 18:23:18 -07:00
onDelete: () => { },
background: null,
color: null,
readOnly: false
}
}
get styles() {
return /*css*/`
mt-chip {
border-radius: 1em;
background-color: #e0e0e0;
padding-top: 0.3em;
padding-bottom: 0.3em;
padding-left: 0.6em;
padding-right: 0.6em;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
}
2020-10-05 18:23:18 -07:00
mt-chip:hover {
filter: brightness(0.9);
}
`;
}
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()
.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())
.hide(this.readOnly)
2020-10-05 18:23:18 -07:00
);
}
}
class ChipTemplate extends IgniteTemplate {
constructor(...children) {
super("mt-chip", children);
}
}
IgniteHtml.register("mt-chip", Chip);
export {
ChipTemplate as Chip
}