You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
200 lines
6.4 KiB
200 lines
6.4 KiB
import VcTreeSelect, { TreeNode, SHOW_ALL, SHOW_PARENT, SHOW_CHILD } from '../vc-tree-select';
|
|
import { inject } from 'vue';
|
|
import classNames from 'classnames';
|
|
import { TreeSelectProps } from './interface';
|
|
import warning from '../_util/warning';
|
|
import { initDefaultProps, getOptionProps, getComponent, getSlot } from '../_util/props-util';
|
|
import { ConfigConsumerProps } from '../config-provider';
|
|
|
|
export { TreeData, TreeSelectProps } from './interface';
|
|
import LoadingOutlined from '@ant-design/icons-vue/LoadingOutlined';
|
|
import CaretDownOutlined from '@ant-design/icons-vue/CaretDownOutlined';
|
|
import DownOutlined from '@ant-design/icons-vue/DownOutlined';
|
|
import CloseOutlined from '@ant-design/icons-vue/CloseOutlined';
|
|
import CloseCircleOutlined from '@ant-design/icons-vue/CloseCircleOutlined';
|
|
import omit from 'omit.js';
|
|
const ATreeSelectNode = function ATreeSelectNode(props, ctx) {
|
|
return TreeNode(props, ctx);
|
|
};
|
|
Object.keys(TreeNode).forEach(key => (ATreeSelectNode[key] = TreeNode[key]));
|
|
const TreeSelect = {
|
|
TreeNode: ATreeSelectNode,
|
|
SHOW_ALL,
|
|
SHOW_PARENT,
|
|
SHOW_CHILD,
|
|
inheritAttrs: false,
|
|
name: 'ATreeSelect',
|
|
props: initDefaultProps(TreeSelectProps(), {
|
|
transitionName: 'slide-up',
|
|
choiceTransitionName: 'zoom',
|
|
showSearch: false,
|
|
}),
|
|
setup() {
|
|
return {
|
|
configProvider: inject('configProvider', ConfigConsumerProps),
|
|
};
|
|
},
|
|
created() {
|
|
warning(
|
|
this.multiple !== false || !this.treeCheckable,
|
|
'TreeSelect',
|
|
'`multiple` will alway be `true` when `treeCheckable` is true',
|
|
);
|
|
},
|
|
methods: {
|
|
saveTreeSelect(node) {
|
|
this.vcTreeSelect = node;
|
|
},
|
|
focus() {
|
|
this.vcTreeSelect.focus();
|
|
},
|
|
|
|
blur() {
|
|
this.vcTreeSelect.blur();
|
|
},
|
|
renderSwitcherIcon(prefixCls, { isLeaf, loading }) {
|
|
if (loading) {
|
|
return <LoadingOutlined class={`${prefixCls}-switcher-loading-icon`} />;
|
|
}
|
|
if (isLeaf) {
|
|
return null;
|
|
}
|
|
return <CaretDownOutlined class={`${prefixCls}-switcher-icon`} />;
|
|
},
|
|
onChange(...args) {
|
|
this.$emit('update:value', args[0]);
|
|
this.$emit('change', ...args);
|
|
},
|
|
updateTreeData(treeData) {
|
|
const { $slots } = this;
|
|
const defaultFields = {
|
|
children: 'children',
|
|
title: 'title',
|
|
key: 'key',
|
|
label: 'label',
|
|
value: 'value',
|
|
};
|
|
const replaceFields = { ...defaultFields, ...this.$props.replaceFields };
|
|
return treeData.map(item => {
|
|
const { slots = {} } = item;
|
|
const label = item[replaceFields.label];
|
|
const title = item[replaceFields.title];
|
|
const value = item[replaceFields.value];
|
|
const key = item[replaceFields.key];
|
|
const children = item[replaceFields.children];
|
|
let newLabel = typeof label === 'function' ? label() : label;
|
|
let newTitle = typeof title === 'function' ? title() : title;
|
|
if (!newLabel && slots.label && $slots[slots.label]) {
|
|
newLabel = $slots.label(item);
|
|
}
|
|
if (!newTitle && slots.title && $slots[slots.title]) {
|
|
newTitle = $slots.title(item);
|
|
}
|
|
const treeNodeProps = {
|
|
...item,
|
|
title: newTitle || newLabel,
|
|
value,
|
|
dataRef: item,
|
|
key,
|
|
};
|
|
if (children) {
|
|
return { ...treeNodeProps, children: this.updateTreeData(children) };
|
|
}
|
|
return treeNodeProps;
|
|
});
|
|
},
|
|
},
|
|
|
|
render() {
|
|
const props = getOptionProps(this);
|
|
const {
|
|
prefixCls: customizePrefixCls,
|
|
size,
|
|
dropdownStyle,
|
|
dropdownClassName,
|
|
getPopupContainer,
|
|
...restProps
|
|
} = props;
|
|
const { class: className } = this.$attrs;
|
|
const getPrefixCls = this.configProvider.getPrefixCls;
|
|
const prefixCls = getPrefixCls('select', customizePrefixCls);
|
|
|
|
const renderEmpty = this.configProvider.renderEmpty;
|
|
const notFoundContent = getComponent(this, 'notFoundContent');
|
|
const removeIcon = getComponent(this, 'removeIcon');
|
|
const clearIcon = getComponent(this, 'clearIcon');
|
|
const { getPopupContainer: getContextPopupContainer } = this.configProvider;
|
|
const rest = omit(restProps, [
|
|
'inputIcon',
|
|
'removeIcon',
|
|
'clearIcon',
|
|
'switcherIcon',
|
|
'suffixIcon',
|
|
]);
|
|
let suffixIcon = getComponent(this, 'suffixIcon');
|
|
suffixIcon = Array.isArray(suffixIcon) ? suffixIcon[0] : suffixIcon;
|
|
let treeData = props.treeData;
|
|
if (treeData) {
|
|
treeData = this.updateTreeData(treeData);
|
|
}
|
|
const cls = {
|
|
[`${prefixCls}-lg`]: size === 'large',
|
|
[`${prefixCls}-sm`]: size === 'small',
|
|
[className]: className,
|
|
};
|
|
|
|
// showSearch: single - false, multiple - true
|
|
let { showSearch } = restProps;
|
|
if (!('showSearch' in restProps)) {
|
|
showSearch = !!(restProps.multiple || restProps.treeCheckable);
|
|
}
|
|
|
|
let checkable = getComponent(this, 'treeCheckable');
|
|
if (checkable) {
|
|
checkable = <span class={`${prefixCls}-tree-checkbox-inner`} />;
|
|
}
|
|
|
|
const inputIcon = suffixIcon || <DownOutlined class={`${prefixCls}-arrow-icon`} />;
|
|
|
|
const finalRemoveIcon = removeIcon || <CloseOutlined class={`${prefixCls}-remove-icon`} />;
|
|
|
|
const finalClearIcon = clearIcon || (
|
|
<CloseCircleOutlined class={`${prefixCls}-clear-icon`} theme="filled" />
|
|
);
|
|
const VcTreeSelectProps = {
|
|
...this.$attrs,
|
|
...Object.assign(
|
|
{
|
|
switcherIcon: nodeProps => this.renderSwitcherIcon(prefixCls, nodeProps),
|
|
inputIcon,
|
|
removeIcon: finalRemoveIcon,
|
|
clearIcon: finalClearIcon,
|
|
...rest,
|
|
showSearch,
|
|
getPopupContainer: getPopupContainer || getContextPopupContainer,
|
|
dropdownClassName: classNames(dropdownClassName, `${prefixCls}-tree-dropdown`),
|
|
prefixCls,
|
|
dropdownStyle: { maxHeight: '100vh', overflow: 'auto', ...dropdownStyle },
|
|
treeCheckable: checkable,
|
|
notFoundContent: notFoundContent || renderEmpty('Select'),
|
|
__propsSymbol__: Symbol(),
|
|
},
|
|
treeData ? { treeData } : {},
|
|
),
|
|
class: cls,
|
|
onChange: this.onChange,
|
|
ref: this.saveTreeSelect,
|
|
children: getSlot(this),
|
|
};
|
|
return <VcTreeSelect {...VcTreeSelectProps} vSlots={omit(this.$slots, ['default'])} />;
|
|
},
|
|
};
|
|
|
|
/* istanbul ignore next */
|
|
TreeSelect.install = function(app) {
|
|
app.component(TreeSelect.name, TreeSelect);
|
|
app.component(TreeSelect.TreeNode.name, TreeSelect.TreeNode);
|
|
};
|
|
|
|
export default TreeSelect;
|