mirror of
https://github.com/soybeanjs/soybean-admin.git
synced 2026-01-13 18:36:00 +08:00
79 lines
1.9 KiB
Vue
79 lines
1.9 KiB
Vue
<script lang="ts" setup>
|
|
import { computed, ref } from 'vue';
|
|
|
|
defineOptions({ name: 'CustomIconSelect' });
|
|
|
|
interface Props {
|
|
/** Selected icon */
|
|
value: string;
|
|
/** List of icons */
|
|
icons: string[];
|
|
/** Icon for when nothing is selected */
|
|
emptyIcon?: string;
|
|
}
|
|
|
|
const props = withDefaults(defineProps<Props>(), {
|
|
emptyIcon: 'mdi:apps'
|
|
});
|
|
|
|
interface Emits {
|
|
(e: 'update:value', val: string): void;
|
|
}
|
|
|
|
const emit = defineEmits<Emits>();
|
|
|
|
const modelValue = computed({
|
|
get() {
|
|
return props.value;
|
|
},
|
|
set(val: string) {
|
|
emit('update:value', val);
|
|
}
|
|
});
|
|
|
|
const selectedIcon = computed(() => modelValue.value || props.emptyIcon);
|
|
|
|
const searchValue = ref('');
|
|
|
|
const iconsList = computed(() => props.icons.filter(v => v.includes(searchValue.value)));
|
|
|
|
function handleChange(iconItem: string) {
|
|
modelValue.value = iconItem;
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<NPopover placement="bottom-end" trigger="click">
|
|
<template #trigger>
|
|
<NInput v-model:value="modelValue" readonly placeholder="点击选择图标">
|
|
<template #suffix>
|
|
<SvgIcon :icon="selectedIcon" class="p-5px text-30px" />
|
|
</template>
|
|
</NInput>
|
|
</template>
|
|
<template #header>
|
|
<NInput v-model:value="searchValue" placeholder="搜索图标"></NInput>
|
|
</template>
|
|
<div v-if="iconsList.length > 0" class="grid grid-cols-9 h-auto overflow-auto">
|
|
<span v-for="iconItem in iconsList" :key="iconItem" @click="handleChange(iconItem)">
|
|
<SvgIcon
|
|
:icon="iconItem"
|
|
class="m-2px cursor-pointer border-1px border-#d9d9d9 p-5px text-30px"
|
|
:class="{ 'border-primary': modelValue === iconItem }"
|
|
/>
|
|
</span>
|
|
</div>
|
|
<NEmpty v-else class="w-306px" description="你什么也找不到" />
|
|
</NPopover>
|
|
</template>
|
|
|
|
<style lang="scss" scoped>
|
|
:deep(.n-input-wrapper) {
|
|
padding-right: 0;
|
|
}
|
|
|
|
:deep(.n-input__suffix) {
|
|
border: 1px solid #d9d9d9;
|
|
}
|
|
</style>
|