element-plus
Version:
A Component Library for Vue 3
97 lines (94 loc) • 3.05 kB
JavaScript
import { defineComponent, inject, ref, computed, unref, provide, resolveComponent, openBlock, createBlock, withCtx, renderSlot } from 'vue';
import { ElCollectionItem } from './roving-focus-group.mjs';
import { ROVING_FOCUS_GROUP_INJECTION_KEY, ROVING_FOCUS_GROUP_ITEM_INJECTION_KEY } from './tokens.mjs';
import _export_sfc from '../../../_virtual/plugin-vue_export-helper.mjs';
import { useId } from '../../../hooks/use-id/index.mjs';
import { composeEventHandlers, getEventCode } from '../../../utils/dom/event.mjs';
import { EVENT_CODE } from '../../../constants/aria.mjs';
const _sfc_main = defineComponent({
components: {
ElRovingFocusCollectionItem: ElCollectionItem
},
props: {
focusable: {
type: Boolean,
default: true
},
active: Boolean
},
emits: ["mousedown", "focus", "keydown"],
setup(props, { emit }) {
const { currentTabbedId, onItemFocus, onItemShiftTab, onKeydown } = inject(
ROVING_FOCUS_GROUP_INJECTION_KEY,
void 0
);
const id = useId();
const rovingFocusGroupItemRef = ref();
const handleMousedown = composeEventHandlers(
(e) => {
emit("mousedown", e);
},
(e) => {
if (!props.focusable) {
e.preventDefault();
} else {
onItemFocus(unref(id));
}
}
);
const handleFocus = composeEventHandlers(
(e) => {
emit("focus", e);
},
() => {
onItemFocus(unref(id));
}
);
const handleKeydown = composeEventHandlers(
(e) => {
emit("keydown", e);
},
(e) => {
const { shiftKey, target, currentTarget } = e;
const code = getEventCode(e);
if (code === EVENT_CODE.tab && shiftKey) {
onItemShiftTab();
return;
}
if (target !== currentTarget)
return;
onKeydown(e);
}
);
const isCurrentTab = computed(() => currentTabbedId.value === unref(id));
provide(ROVING_FOCUS_GROUP_ITEM_INJECTION_KEY, {
rovingFocusGroupItemRef,
tabIndex: computed(() => unref(isCurrentTab) ? 0 : -1),
handleMousedown,
handleFocus,
handleKeydown
});
return {
id,
handleKeydown,
handleFocus,
handleMousedown
};
}
});
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
const _component_el_roving_focus_collection_item = resolveComponent("el-roving-focus-collection-item");
return openBlock(), createBlock(_component_el_roving_focus_collection_item, {
id: _ctx.id,
focusable: _ctx.focusable,
active: _ctx.active
}, {
default: withCtx(() => [
renderSlot(_ctx.$slots, "default")
]),
_: 3
}, 8, ["id", "focusable", "active"]);
}
var ElRovingFocusItem = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render], ["__file", "/home/runner/work/element-plus/element-plus/packages/components/roving-focus-group/src/roving-focus-item.vue"]]);
export { ElRovingFocusItem as default };
//# sourceMappingURL=roving-focus-item.mjs.map