123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390 |
- import {
- createPopper
- } from "./chunk.GADG7AUG.js";
- import {
- getNearestTabbableElement
- } from "./chunk.DVN52LS5.js";
- import {
- scrollIntoView
- } from "./chunk.XAZN5AQ5.js";
- import {
- animateTo,
- stopAnimations,
- waitForEvent
- } from "./chunk.CTCDC263.js";
- import {
- getAnimation,
- setDefaultAnimation
- } from "./chunk.NC36RJW4.js";
- import {
- event,
- watch
- } from "./chunk.XX234VRK.js";
- import {
- e as e2
- } from "./chunk.YXKHB4AC.js";
- import {
- T,
- e,
- h,
- n,
- o,
- r
- } from "./chunk.5PIDMFOE.js";
- import {
- __decorateClass
- } from "./chunk.IHGPZX35.js";
- // _uyihdawu1:/Users/claviska/Projects/shoelace/src/components/dropdown/dropdown.scss
- var dropdown_default = ":host {\n position: relative;\n box-sizing: border-box;\n}\n:host *, :host *:before, :host *:after {\n box-sizing: inherit;\n}\n\n[hidden] {\n display: none !important;\n}\n\n:host {\n display: inline-block;\n}\n\n.dropdown {\n position: relative;\n}\n\n.dropdown__trigger {\n display: block;\n}\n\n.dropdown__positioner {\n position: absolute;\n z-index: var(--sl-z-index-dropdown);\n}\n\n.dropdown__panel {\n max-height: 75vh;\n font-family: var(--sl-font-sans);\n font-size: var(--sl-font-size-medium);\n font-weight: var(--sl-font-weight-normal);\n color: var(--color);\n background-color: var(--sl-panel-background-color);\n border: solid 1px var(--sl-panel-border-color);\n border-radius: var(--sl-border-radius-medium);\n box-shadow: var(--sl-shadow-large);\n overflow: auto;\n overscroll-behavior: none;\n}\n\n.dropdown__positioner[data-popper-placement^=top] .dropdown__panel {\n transform-origin: bottom;\n}\n.dropdown__positioner[data-popper-placement^=bottom] .dropdown__panel {\n transform-origin: top;\n}\n.dropdown__positioner[data-popper-placement^=left] .dropdown__panel {\n transform-origin: right;\n}\n.dropdown__positioner[data-popper-placement^=right] .dropdown__panel {\n transform-origin: left;\n}";
- // src/components/dropdown/dropdown.ts
- var id = 0;
- var SlDropdown = class extends h {
- constructor() {
- super(...arguments);
- this.componentId = `dropdown-${++id}`;
- this.hasInitialized = false;
- this.open = false;
- this.placement = "bottom-start";
- this.disabled = false;
- this.closeOnSelect = true;
- this.distance = 2;
- this.skidding = 0;
- this.hoist = false;
- }
- connectedCallback() {
- super.connectedCallback();
- this.handleMenuItemActivate = this.handleMenuItemActivate.bind(this);
- this.handlePanelSelect = this.handlePanelSelect.bind(this);
- this.handleDocumentKeyDown = this.handleDocumentKeyDown.bind(this);
- this.handleDocumentMouseDown = this.handleDocumentMouseDown.bind(this);
- if (!this.containingElement) {
- this.containingElement = this;
- }
- this.updateComplete.then(() => {
- this.popover = createPopper(this.trigger, this.positioner, {
- placement: this.placement,
- strategy: this.hoist ? "fixed" : "absolute",
- modifiers: [
- {
- name: "flip",
- options: {
- boundary: "viewport"
- }
- },
- {
- name: "offset",
- options: {
- offset: [this.skidding, this.distance]
- }
- }
- ]
- });
- });
- }
- firstUpdated() {
- this.panel.hidden = !this.open;
- this.updateComplete.then(() => this.hasInitialized = true);
- }
- disconnectedCallback() {
- super.disconnectedCallback();
- this.hide();
- this.popover.destroy();
- }
- focusOnTrigger() {
- const slot = this.trigger.querySelector("slot");
- const trigger = slot.assignedElements({ flatten: true })[0];
- if (trigger && typeof trigger.focus === "function") {
- trigger.focus();
- }
- }
- getMenu() {
- const slot = this.panel.querySelector("slot");
- return slot.assignedElements({ flatten: true }).filter((el) => el.tagName.toLowerCase() === "sl-menu")[0];
- }
- handleDocumentKeyDown(event2) {
- var _a;
- if (event2.key === "Escape") {
- this.hide();
- this.focusOnTrigger();
- return;
- }
- if (event2.key === "Tab") {
- if (this.open && ((_a = document.activeElement) == null ? void 0 : _a.tagName.toLowerCase()) === "sl-menu-item") {
- event2.preventDefault();
- this.hide();
- this.focusOnTrigger();
- return;
- }
- setTimeout(() => {
- var _a2, _b;
- const activeElement = this.containingElement.getRootNode() instanceof ShadowRoot ? (_b = (_a2 = document.activeElement) == null ? void 0 : _a2.shadowRoot) == null ? void 0 : _b.activeElement : document.activeElement;
- if ((activeElement == null ? void 0 : activeElement.closest(this.containingElement.tagName.toLowerCase())) !== this.containingElement) {
- this.hide();
- return;
- }
- });
- }
- }
- handleDocumentMouseDown(event2) {
- const path = event2.composedPath();
- if (!path.includes(this.containingElement)) {
- this.hide();
- return;
- }
- }
- handleMenuItemActivate(event2) {
- const item = event2.target;
- scrollIntoView(item, this.panel);
- }
- handlePanelSelect(event2) {
- const target = event2.target;
- if (this.closeOnSelect && target.tagName.toLowerCase() === "sl-menu") {
- this.hide();
- this.focusOnTrigger();
- }
- }
- handlePopoverOptionsChange() {
- if (this.popover) {
- this.popover.setOptions({
- placement: this.placement,
- strategy: this.hoist ? "fixed" : "absolute",
- modifiers: [
- {
- name: "flip",
- options: {
- boundary: "viewport"
- }
- },
- {
- name: "offset",
- options: {
- offset: [this.skidding, this.distance]
- }
- }
- ]
- });
- }
- }
- handleTriggerClick() {
- this.open ? this.hide() : this.show();
- }
- handleTriggerKeyDown(event2) {
- const menu = this.getMenu();
- const menuItems = menu ? [...menu.querySelectorAll("sl-menu-item")] : [];
- const firstMenuItem = menuItems[0];
- const lastMenuItem = menuItems[menuItems.length - 1];
- if (event2.key === "Escape") {
- this.focusOnTrigger();
- this.hide();
- return;
- }
- if ([" ", "Enter"].includes(event2.key)) {
- event2.preventDefault();
- this.open ? this.hide() : this.show();
- return;
- }
- if (["ArrowDown", "ArrowUp"].includes(event2.key)) {
- event2.preventDefault();
- if (!this.open) {
- this.show();
- }
- if (event2.key === "ArrowDown" && firstMenuItem) {
- firstMenuItem.focus();
- return;
- }
- if (event2.key === "ArrowUp" && lastMenuItem) {
- lastMenuItem.focus();
- return;
- }
- }
- const ignoredKeys = ["Tab", "Shift", "Meta", "Ctrl", "Alt"];
- if (this.open && menu && !ignoredKeys.includes(event2.key)) {
- menu.typeToSelect(event2.key);
- return;
- }
- }
- handleTriggerKeyUp(event2) {
- if (event2.key === " ") {
- event2.preventDefault();
- }
- }
- handleTriggerSlotChange() {
- this.updateAccessibleTrigger();
- }
- updateAccessibleTrigger() {
- if (this.trigger) {
- const slot = this.trigger.querySelector("slot");
- const assignedElements = slot.assignedElements({ flatten: true });
- const accessibleTrigger = assignedElements.map(getNearestTabbableElement)[0];
- if (accessibleTrigger) {
- accessibleTrigger.setAttribute("aria-haspopup", "true");
- accessibleTrigger.setAttribute("aria-expanded", this.open ? "true" : "false");
- }
- }
- }
- async show() {
- if (this.open) {
- return;
- }
- this.open = true;
- return waitForEvent(this, "sl-after-show");
- }
- async hide() {
- if (!this.open) {
- return;
- }
- this.open = false;
- return waitForEvent(this, "sl-after-hide");
- }
- reposition() {
- if (!this.open) {
- return;
- }
- this.popover.update();
- }
- async handleOpenChange() {
- if (!this.hasInitialized || this.disabled) {
- return;
- }
- this.updateAccessibleTrigger();
- if (this.open) {
- this.slShow.emit();
- this.panel.addEventListener("sl-activate", this.handleMenuItemActivate);
- this.panel.addEventListener("sl-select", this.handlePanelSelect);
- document.addEventListener("keydown", this.handleDocumentKeyDown);
- document.addEventListener("mousedown", this.handleDocumentMouseDown);
- await stopAnimations(this);
- this.popover.update();
- this.panel.hidden = false;
- const { keyframes, options } = getAnimation(this, "dropdown.show");
- await animateTo(this.panel, keyframes, options);
- this.slAfterShow.emit();
- } else {
- this.slHide.emit();
- this.panel.removeEventListener("sl-activate", this.handleMenuItemActivate);
- this.panel.removeEventListener("sl-select", this.handlePanelSelect);
- document.addEventListener("keydown", this.handleDocumentKeyDown);
- document.removeEventListener("mousedown", this.handleDocumentMouseDown);
- await stopAnimations(this);
- const { keyframes, options } = getAnimation(this, "dropdown.hide");
- await animateTo(this.panel, keyframes, options);
- this.panel.hidden = true;
- this.slAfterHide.emit();
- }
- }
- render() {
- return T`
- <div
- part="base"
- id=${this.componentId}
- class=${e2({
- dropdown: true,
- "dropdown--open": this.open
- })}
- >
- <span
- part="trigger"
- class="dropdown__trigger"
- @click=${this.handleTriggerClick}
- @keydown=${this.handleTriggerKeyDown}
- @keyup=${this.handleTriggerKeyUp}
- >
- <slot name="trigger" @slotchange=${this.handleTriggerSlotChange}></slot>
- </span>
- <!-- Position the panel with a wrapper since the popover makes use of translate. This let's us add animations
- on the panel without interfering with the position. -->
- <div class="dropdown__positioner">
- <div
- part="panel"
- class="dropdown__panel"
- role="menu"
- aria-hidden=${this.open ? "false" : "true"}
- aria-labelledby=${this.componentId}
- >
- <slot></slot>
- </div>
- </div>
- </div>
- `;
- }
- };
- SlDropdown.styles = r(dropdown_default);
- __decorateClass([
- o(".dropdown__trigger")
- ], SlDropdown.prototype, "trigger", 2);
- __decorateClass([
- o(".dropdown__panel")
- ], SlDropdown.prototype, "panel", 2);
- __decorateClass([
- o(".dropdown__positioner")
- ], SlDropdown.prototype, "positioner", 2);
- __decorateClass([
- e({ type: Boolean, reflect: true })
- ], SlDropdown.prototype, "open", 2);
- __decorateClass([
- e()
- ], SlDropdown.prototype, "placement", 2);
- __decorateClass([
- e({ type: Boolean })
- ], SlDropdown.prototype, "disabled", 2);
- __decorateClass([
- e({ attribute: "close-on-select", type: Boolean, reflect: true })
- ], SlDropdown.prototype, "closeOnSelect", 2);
- __decorateClass([
- e({ attribute: false })
- ], SlDropdown.prototype, "containingElement", 2);
- __decorateClass([
- e({ type: Number })
- ], SlDropdown.prototype, "distance", 2);
- __decorateClass([
- e({ type: Number })
- ], SlDropdown.prototype, "skidding", 2);
- __decorateClass([
- e({ type: Boolean })
- ], SlDropdown.prototype, "hoist", 2);
- __decorateClass([
- event("sl-show")
- ], SlDropdown.prototype, "slShow", 2);
- __decorateClass([
- event("sl-after-show")
- ], SlDropdown.prototype, "slAfterShow", 2);
- __decorateClass([
- event("sl-hide")
- ], SlDropdown.prototype, "slHide", 2);
- __decorateClass([
- event("sl-after-hide")
- ], SlDropdown.prototype, "slAfterHide", 2);
- __decorateClass([
- watch("distance"),
- watch("hoist"),
- watch("placement"),
- watch("skidding")
- ], SlDropdown.prototype, "handlePopoverOptionsChange", 1);
- __decorateClass([
- watch("open")
- ], SlDropdown.prototype, "handleOpenChange", 1);
- SlDropdown = __decorateClass([
- n("sl-dropdown")
- ], SlDropdown);
- var dropdown_default2 = SlDropdown;
- setDefaultAnimation("dropdown.show", {
- keyframes: [
- { opacity: 0, transform: "scale(0.9)" },
- { opacity: 1, transform: "scale(1)" }
- ],
- options: { duration: 150, easing: "ease" }
- });
- setDefaultAnimation("dropdown.hide", {
- keyframes: [
- { opacity: 1, transform: "scale(1)" },
- { opacity: 0, transform: "scale(0.9)" }
- ],
- options: { duration: 150, easing: "ease" }
- });
- export {
- dropdown_default2 as dropdown_default
- };
|