Revert "feat: ApiSelect增加远程搜索功能"

This reverts commit 56c5dce99f.
This commit is contained in:
雪忆 2024-07-29 15:18:30 +08:00
parent 56c5dce99f
commit f314826230

View File

@ -3,7 +3,6 @@
@dropdown-visible-change="handleFetch"
v-bind="$attrs"
@change="handleChange"
@search="debounceSearchFn"
:options="getOptions"
v-model:value="state"
>
@ -21,37 +20,26 @@
</template>
</Select>
</template>
<script lang="ts" setup>
import { computed, PropType, ref, unref, watch } from 'vue';
import { PropType, ref, computed, unref, watch } from 'vue';
import { Select } from 'ant-design-vue';
import type { SelectValue } from 'ant-design-vue/es/select';
import { isEmpty, isFunction } from '@/utils/is';
import { isFunction } from '@/utils/is';
import { useRuleFormItem } from '@/hooks/component/useFormItem';
import { assignIn, get, isEqual, omit } from 'lodash-es';
import { get, omit, isEqual } from 'lodash-es';
import { LoadingOutlined } from '@ant-design/icons-vue';
import { useI18n } from '@/hooks/web/useI18n';
import { propTypes } from '@/utils/propTypes';
import { useDebounceFn } from '@vueuse/core';
type OptionsItem = { label?: string; value?: string; disabled?: boolean; [name: string]: any };
type ApiSearchOption = {
//
searchName?: string;
//
beforeFetch?: (value?: string) => Promise<string>;
//
interceptFetch?: (value?: string) => Promise<boolean>;
};
defineOptions({ name: 'ApiSelect', inheritAttrs: false });
const props = defineProps({
value: { type: [Array, Object, String, Number] as PropType<SelectValue> },
numberToString: propTypes.bool,
api: {
type: Function as PropType<(arg?: any) => Promise<OptionsItem[] | Recordable>>,
type: Function as PropType<(arg?: any) => Promise<OptionsItem[] | Recordable<any>>>,
default: null,
},
// api params
@ -66,10 +54,6 @@
type: Array<OptionsItem>,
default: [],
},
apiSearch: {
type: Object as PropType<ApiSearchOption>,
default: () => null,
},
beforeFetch: {
type: Function as PropType<Fn>,
default: null,
@ -88,7 +72,6 @@
//
const isFirstLoaded = ref(false);
const emitData = ref<OptionsItem[]>([]);
const searchParams = ref<any>({});
const { t } = useI18n();
// Embedded in the form, just use the hook binding to perform form verification
@ -127,29 +110,16 @@
{ deep: true, immediate: props.immediate },
);
watch(
() => searchParams.value,
(value, oldValue) => {
if (isEmpty(value) || isEqual(value, oldValue)) return;
(async () => {
await fetch();
searchParams.value = {};
})();
},
{ deep: true, immediate: props.immediate },
);
async function fetch() {
let { api, beforeFetch, afterFetch, params, resultField } = props;
if (!api || !isFunction(api) || loading.value) return;
optionsRef.value = [];
try {
loading.value = true;
let apiParams = assignIn({}, params, searchParams.value);
if (beforeFetch && isFunction(beforeFetch)) {
apiParams = (await beforeFetch(apiParams)) || apiParams;
params = (await beforeFetch(params)) || params;
}
let res = await api(apiParams);
let res = await api(params);
if (afterFetch && isFunction(afterFetch)) {
res = (await afterFetch(res)) || res;
}
@ -182,32 +152,6 @@
}
}
let debounceSearchFn = useDebounceFn(handleSearch, 500);
async function handleSearch(value: any) {
if (!props.apiSearch) {
return;
}
const { searchName, beforeFetch, interceptFetch } = props.apiSearch;
if (!searchName) {
return;
}
value = value || undefined;
if (beforeFetch && isFunction(beforeFetch)) {
value = (await beforeFetch(value)) || value;
}
if (interceptFetch && isFunction(interceptFetch)) {
if (!(await interceptFetch(value))) {
return;
}
}
searchParams.value = {
[searchName]: value,
};
}
function emitChange() {
emit('options-change', unref(getOptions));
}