xk
2023-12-21 6bb79180fc798b1a0b1a6c22f7c13ddb3a45a3b5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<template>
  <TreeSelect
    v-bind="getAttrs"
    @change="handleChange"
    :field-names="fieldNames"
    :load-data="async ? onLoadData : undefined"
  >
    <template #[item]="data" v-for="item in Object.keys($slots)">
      <slot :name="item" v-bind="data || {}"></slot>
    </template>
    <template #suffixIcon v-if="loading">
      <LoadingOutlined spin />
    </template>
  </TreeSelect>
</template>
 
<script lang="ts" setup>
  import { type Recordable } from '@vben/types';
  import { type PropType, computed, watch, ref, onMounted, unref, useAttrs } from 'vue';
  import { TreeSelect } from 'ant-design-vue';
  import { isArray, isFunction } from '@/utils/is';
  import { get } from 'lodash-es';
  import { propTypes } from '@/utils/propTypes';
  import { LoadingOutlined } from '@ant-design/icons-vue';
 
  defineOptions({ name: 'ApiTreeSelect' });
 
  const props = defineProps({
    api: { type: Function as PropType<(arg?: any) => Promise<Recordable<any>>> },
    params: { type: Object },
    immediate: { type: Boolean, default: true },
    async: { type: Boolean, default: false },
    resultField: propTypes.string.def(''),
    labelField: propTypes.string.def('title'),
    valueField: propTypes.string.def('value'),
    childrenField: propTypes.string.def('children'),
  });
 
  const emit = defineEmits(['options-change', 'change', 'load-data']);
 
  const attrs = useAttrs();
  const treeData = ref<Recordable<any>[]>([]);
  const isFirstLoaded = ref<Boolean>(false);
  const loading = ref(false);
  const getAttrs = computed(() => {
    return {
      ...(props.api ? { treeData: unref(treeData) } : {}),
      ...attrs,
    };
  });
  const fieldNames = {
    children: props.childrenField,
    value: props.valueField,
    label: props.labelField,
  };
 
  function handleChange(...args) {
    emit('change', ...args);
  }
 
  watch(
    () => props.params,
    () => {
      !unref(isFirstLoaded) && fetch();
    },
    { deep: true },
  );
 
  watch(
    () => props.immediate,
    (v) => {
      v && !isFirstLoaded.value && fetch();
    },
  );
 
  onMounted(() => {
    props.immediate && fetch();
  });
 
  function onLoadData(treeNode) {
    return new Promise((resolve: (value?: unknown) => void) => {
      if (isArray(treeNode.children) && treeNode.children.length > 0) {
        resolve();
        return;
      }
      emit('load-data', { treeData, treeNode, resolve });
    });
  }
 
  async function fetch() {
    const { api } = props;
    if (!api || !isFunction(api) || loading.value) return;
    loading.value = true;
    treeData.value = [];
    let result;
    try {
      result = await api(props.params);
    } catch (e) {
      console.error(e);
    }
    loading.value = false;
    if (!result) return;
    if (!isArray(result)) {
      result = get(result, props.resultField);
    }
    treeData.value = (result as Recordable<any>[]) || [];
    isFirstLoaded.value = true;
    emit('options-change', treeData.value);
  }
</script>