element-plus
Version:
A Component Library for Vue 3
251 lines (246 loc) • 6.92 kB
JavaScript
Object.defineProperty(exports, '__esModule', { value: true });
var vue = require('vue');
var lodashUnified = require('lodash-unified');
require('../../../utils/index.js');
require('../../virtual-list/index.js');
require('../../../hooks/index.js');
require('../../../constants/index.js');
var groupItem = require('./group-item.js');
var optionItem = require('./option-item.js');
var token = require('./token.js');
var index = require('../../../hooks/use-namespace/index.js');
var types = require('../../../utils/types.js');
var shared = require('@vue/shared');
var aria = require('../../../constants/aria.js');
var fixedSizeList = require('../../virtual-list/src/components/fixed-size-list.js');
var dynamicSizeList = require('../../virtual-list/src/components/dynamic-size-list.js');
var ElSelectMenu = vue.defineComponent({
name: "ElSelectDropdown",
props: {
data: {
type: Array,
required: true
},
hoveringIndex: Number,
width: Number
},
setup(props, {
slots,
expose
}) {
const select = vue.inject(token.selectV2InjectionKey);
const ns = index.useNamespace("select");
const cachedHeights = vue.ref([]);
const listRef = vue.ref();
const size = vue.computed(() => props.data.length);
vue.watch(() => size.value, () => {
var _a, _b;
(_b = (_a = select.popper.value).updatePopper) == null ? void 0 : _b.call(_a);
});
const isSized = vue.computed(() => types.isUndefined(select.props.estimatedOptionHeight));
const listProps = vue.computed(() => {
if (isSized.value) {
return {
itemSize: select.props.itemHeight
};
}
return {
estimatedSize: select.props.estimatedOptionHeight,
itemSize: (idx) => cachedHeights.value[idx]
};
});
const contains = (arr = [], target) => {
const {
props: {
valueKey
}
} = select;
if (!shared.isObject(target)) {
return arr.includes(target);
}
return arr && arr.some((item) => {
return lodashUnified.get(item, valueKey) === lodashUnified.get(target, valueKey);
});
};
const isEqual = (selected, target) => {
if (!shared.isObject(target)) {
return selected === target;
} else {
const {
valueKey
} = select.props;
return lodashUnified.get(selected, valueKey) === lodashUnified.get(target, valueKey);
}
};
const isItemSelected = (modelValue, target) => {
const {
valueKey
} = select.props;
if (select.props.multiple) {
return contains(modelValue, lodashUnified.get(target, valueKey));
}
return isEqual(modelValue, lodashUnified.get(target, valueKey));
};
const isItemDisabled = (modelValue, selected) => {
const {
disabled,
multiple,
multipleLimit
} = select.props;
return disabled || !selected && (multiple ? multipleLimit > 0 && modelValue.length >= multipleLimit : false);
};
const isItemHovering = (target) => props.hoveringIndex === target;
const scrollToItem = (index) => {
const list = listRef.value;
if (list) {
list.scrollToItem(index);
}
};
const resetScrollTop = () => {
const list = listRef.value;
if (list) {
list.resetScrollTop();
}
};
expose({
listRef,
isSized,
isItemDisabled,
isItemHovering,
isItemSelected,
scrollToItem,
resetScrollTop
});
const Item = (itemProps) => {
const {
index,
data,
style
} = itemProps;
const sized = vue.unref(isSized);
const {
itemSize,
estimatedSize
} = vue.unref(listProps);
const {
modelValue
} = select.props;
const {
onSelect,
onHover
} = select;
const item = data[index];
if (item.type === "Group") {
return vue.createVNode(groupItem["default"], {
"item": item,
"style": style,
"height": sized ? itemSize : estimatedSize
}, null);
}
const isSelected = isItemSelected(modelValue, item);
const isDisabled = isItemDisabled(modelValue, isSelected);
const isHovering = isItemHovering(index);
return vue.createVNode(optionItem["default"], vue.mergeProps(itemProps, {
"selected": isSelected,
"disabled": item.disabled || isDisabled,
"created": !!item.created,
"hovering": isHovering,
"item": item,
"onSelect": onSelect,
"onHover": onHover
}), {
default: (props2) => {
var _a;
return ((_a = slots.default) == null ? void 0 : _a.call(slots, props2)) || vue.createVNode("span", null, [item.label]);
}
});
};
const {
onKeyboardNavigate,
onKeyboardSelect
} = select;
const onForward = () => {
onKeyboardNavigate("forward");
};
const onBackward = () => {
onKeyboardNavigate("backward");
};
const onEscOrTab = () => {
select.expanded = false;
};
const onKeydown = (e) => {
const {
code
} = e;
const {
tab,
esc,
down,
up,
enter
} = aria.EVENT_CODE;
if (code !== tab) {
e.preventDefault();
e.stopPropagation();
}
switch (code) {
case tab:
case esc: {
onEscOrTab();
break;
}
case down: {
onForward();
break;
}
case up: {
onBackward();
break;
}
case enter: {
onKeyboardSelect();
break;
}
}
};
return () => {
var _a;
const {
data,
width
} = props;
const {
height,
multiple,
scrollbarAlwaysOn
} = select.props;
if (data.length === 0) {
return vue.createVNode("div", {
"class": ns.b("dropdown"),
"style": {
width: `${width}px`
}
}, [(_a = slots.empty) == null ? void 0 : _a.call(slots)]);
}
const List = vue.unref(isSized) ? fixedSizeList["default"] : dynamicSizeList["default"];
return vue.createVNode("div", {
"class": [ns.b("dropdown"), ns.is("multiple", multiple)]
}, [vue.createVNode(List, vue.mergeProps({
"ref": listRef
}, vue.unref(listProps), {
"className": ns.be("dropdown", "list"),
"scrollbarAlwaysOn": scrollbarAlwaysOn,
"data": data,
"height": height,
"width": width,
"total": data.length,
"onKeydown": onKeydown
}), {
default: (props2) => vue.createVNode(Item, props2, null)
})]);
};
}
});
exports["default"] = ElSelectMenu;
//# sourceMappingURL=select-dropdown.js.map
;