-
Notifications
You must be signed in to change notification settings - Fork 905
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
27 changed files
with
1,083 additions
and
446 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
import { request } from '@/utils/request'; | ||
|
||
/** | ||
* @description Get sample options value | ||
*/ | ||
export function optionsListApi(params?: any) { | ||
return request<{ list: { id: string; name: string }[] }>( | ||
{ | ||
url: '/select/getDemoOptions', | ||
method: 'get', | ||
params, | ||
}, | ||
{ | ||
isMock: true, | ||
isGetDataDirectly: true, | ||
}, | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
141 changes: 141 additions & 0 deletions
141
src/components/core/schema-form/src/components/ApiSelect.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,141 @@ | ||
<template> | ||
<Select | ||
v-bind="getProps" | ||
:options="getOptions" | ||
@dropdown-visible-change="handleFetch" | ||
@change="handleChange" | ||
> | ||
<template v-for="item in Object.keys($slots)" #[item]="data"> | ||
<slot :name="item" v-bind="data || {}"></slot> | ||
</template> | ||
<template v-if="loading" #suffixIcon> | ||
<LoadingOutlined spin /> | ||
</template> | ||
<template v-if="loading" #notFoundContent> | ||
<span> | ||
<LoadingOutlined spin class="mr-1" /> | ||
{{ t('component.form.apiSelectNotFound') }} | ||
</span> | ||
</template> | ||
</Select> | ||
</template> | ||
<script lang="ts" setup> | ||
import { PropType, ref, watchEffect, computed, unref, watch } from 'vue'; | ||
import { get, omit } from 'lodash-es'; | ||
import { LoadingOutlined } from '@ant-design/icons-vue'; | ||
import { selectProps } from 'ant-design-vue/es/select'; | ||
import { Select } from 'ant-design-vue'; | ||
import { isFunction } from '@/utils/is'; | ||
import { useI18n } from '@/hooks/useI18n'; | ||
import { propTypes } from '@/utils/propTypes'; | ||
type OptionsItem = { label: string; value: string; disabled?: boolean }; | ||
defineOptions({ | ||
name: 'ApiSelect', | ||
inheritAttrs: false, | ||
}); | ||
const props = defineProps({ | ||
...selectProps(), | ||
value: [Array, Object, String, Number], | ||
numberToString: propTypes.bool, | ||
api: { | ||
type: Function as PropType<(arg?: Recordable) => Promise<any>>, | ||
default: null, | ||
}, | ||
// api params | ||
params: { | ||
type: Object as PropType<Recordable>, | ||
default: () => ({}), | ||
}, | ||
// support xxx.xxx.xx | ||
resultField: propTypes.string.def(''), | ||
labelField: propTypes.string.def('label'), | ||
valueField: propTypes.string.def('value'), | ||
immediate: propTypes.bool.def(true), | ||
alwaysLoad: propTypes.bool.def(false), | ||
}); | ||
const emit = defineEmits(['options-change', 'change']); | ||
const options = ref<OptionsItem[]>([]); | ||
const loading = ref(false); | ||
const isFirstLoad = ref(true); | ||
const emitData = ref<any[]>([]); | ||
const { t } = useI18n(); | ||
const getProps = computed(() => props as Recordable); | ||
// Embedded in the form, just use the hook binding to perform form verification | ||
const getOptions = computed(() => { | ||
const { labelField, valueField, numberToString } = props; | ||
return unref(options).reduce((prev, next: Recordable) => { | ||
if (next) { | ||
const value = next[valueField]; | ||
prev.push({ | ||
...omit(next, [labelField, valueField]), | ||
label: next[labelField], | ||
value: numberToString ? `${value}` : value, | ||
}); | ||
} | ||
return prev; | ||
}, [] as OptionsItem[]); | ||
}); | ||
watchEffect(() => { | ||
props.immediate && !props.alwaysLoad && fetch(); | ||
}); | ||
watch( | ||
() => props.params, | ||
() => { | ||
!unref(isFirstLoad) && fetch(); | ||
}, | ||
{ deep: true }, | ||
); | ||
async function fetch() { | ||
const api = props.api; | ||
if (!api || !isFunction(api)) return; | ||
options.value = []; | ||
try { | ||
loading.value = true; | ||
const res = await api(props.params); | ||
if (Array.isArray(res)) { | ||
options.value = res; | ||
emitChange(); | ||
return; | ||
} | ||
if (props.resultField) { | ||
options.value = get(res, props.resultField) || []; | ||
} | ||
emitChange(); | ||
} catch (error) { | ||
console.warn(error); | ||
} finally { | ||
loading.value = false; | ||
} | ||
} | ||
async function handleFetch(visible) { | ||
if (visible) { | ||
if (props.alwaysLoad) { | ||
await fetch(); | ||
} else if (!props.immediate && unref(isFirstLoad)) { | ||
await fetch(); | ||
isFirstLoad.value = false; | ||
} | ||
} | ||
} | ||
function emitChange() { | ||
emit('options-change', unref(getOptions)); | ||
} | ||
function handleChange(_, ...args) { | ||
emitData.value = args; | ||
} | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export { default as ApiSelect } from './ApiSelect.vue'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.