import { defineComponent, inject, computed, unref, openBlock, createElementBlock, normalizeClass, normalizeStyle, withModifiers, renderSlot } from 'vue';
|
import '../../../utils/index.mjs';
|
import '../../../constants/index.mjs';
|
import '../../focus-trap/index.mjs';
|
import '../../roving-focus-group/index.mjs';
|
import '../../../hooks/index.mjs';
|
import { DROPDOWN_INJECTION_KEY } from './tokens.mjs';
|
import { dropdownMenuProps, DROPDOWN_COLLECTION_INJECTION_KEY as COLLECTION_INJECTION_KEY, FIRST_LAST_KEYS, LAST_KEYS } from './dropdown.mjs';
|
import { useDropdown } from './useDropdown.mjs';
|
import _export_sfc from '../../../_virtual/plugin-vue_export-helper.mjs';
|
import { useNamespace } from '../../../hooks/use-namespace/index.mjs';
|
import { FOCUS_TRAP_INJECTION_KEY } from '../../focus-trap/src/tokens.mjs';
|
import { ROVING_FOCUS_GROUP_INJECTION_KEY } from '../../roving-focus-group/src/tokens.mjs';
|
import { ROVING_FOCUS_COLLECTION_INJECTION_KEY as COLLECTION_INJECTION_KEY$1 } from '../../roving-focus-group/src/roving-focus-group.mjs';
|
import { composeRefs } from '../../../utils/vue/refs.mjs';
|
import { composeEventHandlers } from '../../../utils/dom/event.mjs';
|
import { EVENT_CODE } from '../../../constants/aria.mjs';
|
import { focusFirst } from '../../roving-focus-group/src/utils.mjs';
|
|
const _sfc_main = defineComponent({
|
name: "ElDropdownMenu",
|
props: dropdownMenuProps,
|
setup(props) {
|
const ns = useNamespace("dropdown");
|
const { _elDropdownSize } = useDropdown();
|
const size = _elDropdownSize.value;
|
const { focusTrapRef, onKeydown } = inject(FOCUS_TRAP_INJECTION_KEY, void 0);
|
const { contentRef, role, triggerId } = inject(DROPDOWN_INJECTION_KEY, void 0);
|
const { collectionRef: dropdownCollectionRef, getItems } = inject(COLLECTION_INJECTION_KEY, void 0);
|
const {
|
rovingFocusGroupRef,
|
rovingFocusGroupRootStyle,
|
tabIndex,
|
onBlur,
|
onFocus,
|
onMousedown
|
} = inject(ROVING_FOCUS_GROUP_INJECTION_KEY, void 0);
|
const { collectionRef: rovingFocusGroupCollectionRef } = inject(COLLECTION_INJECTION_KEY$1, void 0);
|
const dropdownKls = computed(() => {
|
return [ns.b("menu"), ns.bm("menu", size == null ? void 0 : size.value)];
|
});
|
const dropdownListWrapperRef = composeRefs(contentRef, dropdownCollectionRef, focusTrapRef, rovingFocusGroupRef, rovingFocusGroupCollectionRef);
|
const composedKeydown = composeEventHandlers((e) => {
|
var _a;
|
(_a = props.onKeydown) == null ? void 0 : _a.call(props, e);
|
}, (e) => {
|
const { currentTarget, code, target } = e;
|
const isKeydownContained = currentTarget.contains(target);
|
if (isKeydownContained) {
|
}
|
if (EVENT_CODE.tab === code) {
|
e.stopImmediatePropagation();
|
}
|
e.preventDefault();
|
if (target !== unref(contentRef))
|
return;
|
if (!FIRST_LAST_KEYS.includes(code))
|
return;
|
const items = getItems().filter((item) => !item.disabled);
|
const targets = items.map((item) => item.ref);
|
if (LAST_KEYS.includes(code)) {
|
targets.reverse();
|
}
|
focusFirst(targets);
|
});
|
const handleKeydown = (e) => {
|
composedKeydown(e);
|
onKeydown(e);
|
};
|
return {
|
size,
|
rovingFocusGroupRootStyle,
|
tabIndex,
|
dropdownKls,
|
role,
|
triggerId,
|
dropdownListWrapperRef,
|
handleKeydown,
|
onBlur,
|
onFocus,
|
onMousedown
|
};
|
}
|
});
|
const _hoisted_1 = ["role", "aria-labelledby"];
|
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
return openBlock(), createElementBlock("ul", {
|
ref: _ctx.dropdownListWrapperRef,
|
class: normalizeClass(_ctx.dropdownKls),
|
style: normalizeStyle(_ctx.rovingFocusGroupRootStyle),
|
tabindex: -1,
|
role: _ctx.role,
|
"aria-labelledby": _ctx.triggerId,
|
onBlur: _cache[0] || (_cache[0] = (...args) => _ctx.onBlur && _ctx.onBlur(...args)),
|
onFocus: _cache[1] || (_cache[1] = (...args) => _ctx.onFocus && _ctx.onFocus(...args)),
|
onKeydown: _cache[2] || (_cache[2] = withModifiers((...args) => _ctx.handleKeydown && _ctx.handleKeydown(...args), ["self"])),
|
onMousedown: _cache[3] || (_cache[3] = withModifiers((...args) => _ctx.onMousedown && _ctx.onMousedown(...args), ["self"]))
|
}, [
|
renderSlot(_ctx.$slots, "default")
|
], 46, _hoisted_1);
|
}
|
var DropdownMenu = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render], ["__file", "/home/runner/work/element-plus/element-plus/packages/components/dropdown/src/dropdown-menu.vue"]]);
|
|
export { DropdownMenu as default };
|
//# sourceMappingURL=dropdown-menu.mjs.map
|