@shoelace-style/shoelace
Version:
A forward-thinking library of web components.
120 lines (114 loc) • 3.64 kB
JavaScript
import {
breadcrumb_item_styles_default
} from "./chunk.Q5P7Y2HU.js";
import {
HasSlotController
} from "./chunk.NYIIDP5N.js";
import {
watch
} from "./chunk.CCJUT23E.js";
import {
component_styles_default
} from "./chunk.TUVJKY7S.js";
import {
ShoelaceElement
} from "./chunk.UYAO2JRR.js";
import {
__decorateClass
} from "./chunk.B3BW2AY6.js";
// src/components/breadcrumb-item/breadcrumb-item.component.ts
import { classMap } from "lit/directives/class-map.js";
import { html } from "lit";
import { ifDefined } from "lit/directives/if-defined.js";
import { property, query, state } from "lit/decorators.js";
var SlBreadcrumbItem = class extends ShoelaceElement {
constructor() {
super(...arguments);
this.hasSlotController = new HasSlotController(this, "prefix", "suffix");
this.renderType = "button";
this.rel = "noreferrer noopener";
}
setRenderType() {
const hasDropdown = this.defaultSlot.assignedElements({ flatten: true }).filter((i) => i.tagName.toLowerCase() === "sl-dropdown").length > 0;
if (this.href) {
this.renderType = "link";
return;
}
if (hasDropdown) {
this.renderType = "dropdown";
return;
}
this.renderType = "button";
}
hrefChanged() {
this.setRenderType();
}
handleSlotChange() {
this.setRenderType();
}
render() {
return html`
<div
part="base"
class=${classMap({
"breadcrumb-item": true,
"breadcrumb-item--has-prefix": this.hasSlotController.test("prefix"),
"breadcrumb-item--has-suffix": this.hasSlotController.test("suffix")
})}
>
<span part="prefix" class="breadcrumb-item__prefix">
<slot name="prefix"></slot>
</span>
${this.renderType === "link" ? html`
<a
part="label"
class="breadcrumb-item__label breadcrumb-item__label--link"
href="${this.href}"
target="${ifDefined(this.target ? this.target : void 0)}"
rel=${ifDefined(this.target ? this.rel : void 0)}
>
<slot @slotchange=${this.handleSlotChange}></slot>
</a>
` : ""}
${this.renderType === "button" ? html`
<button part="label" type="button" class="breadcrumb-item__label breadcrumb-item__label--button">
<slot @slotchange=${this.handleSlotChange}></slot>
</button>
` : ""}
${this.renderType === "dropdown" ? html`
<div part="label" class="breadcrumb-item__label breadcrumb-item__label--drop-down">
<slot @slotchange=${this.handleSlotChange}></slot>
</div>
` : ""}
<span part="suffix" class="breadcrumb-item__suffix">
<slot name="suffix"></slot>
</span>
<span part="separator" class="breadcrumb-item__separator" aria-hidden="true">
<slot name="separator"></slot>
</span>
</div>
`;
}
};
SlBreadcrumbItem.styles = [component_styles_default, breadcrumb_item_styles_default];
__decorateClass([
query("slot:not([name])")
], SlBreadcrumbItem.prototype, "defaultSlot", 2);
__decorateClass([
state()
], SlBreadcrumbItem.prototype, "renderType", 2);
__decorateClass([
property()
], SlBreadcrumbItem.prototype, "href", 2);
__decorateClass([
property()
], SlBreadcrumbItem.prototype, "target", 2);
__decorateClass([
property()
], SlBreadcrumbItem.prototype, "rel", 2);
__decorateClass([
watch("href", { waitUntilFirstUpdate: true })
], SlBreadcrumbItem.prototype, "hrefChanged", 1);
export {
SlBreadcrumbItem
};