ruoyiUI-vue3/src/components/IconSelect/index.vue

119 lines
2.8 KiB
Vue
Raw Normal View History

2021-11-30 01:55:37 +00:00
<template>
<div class="icon-body">
<el-input
v-model="iconName"
class="icon-search"
2021-11-30 01:55:37 +00:00
clearable
placeholder="请输入图标名称"
@clear="filterIcons"
@input="filterIcons"
>
<template #suffix><i class="el-icon-search el-input__icon" /></template>
</el-input>
<div class="icon-list">
<el-scrollbar>
<div class="list-container">
<div v-for="(item, index) in iconList" class="icon-item-wrapper" :key="index" @click="selectedIcon(item)">
<div :class="['icon-item', { active: activeIcon === item }]">
<svg-icon :icon-class="item" class-name="icon" style="height: 30px;width: 16px;" />
<span :title="item">{{ item }}</span>
</div>
</div>
</div>
</el-scrollbar>
2021-11-30 01:55:37 +00:00
</div>
</div>
</template>
<script setup>
import icons from './requireIcons'
const props = defineProps({
activeIcon: {
type: String
}
});
2021-11-30 01:55:37 +00:00
const iconName = ref('');
const iconList = ref(icons);
const emit = defineEmits(['selected']);
function filterIcons() {
iconList.value = icons
if (iconName.value) {
iconList.value = icons.filter(item => item.indexOf(iconName.value) !== -1)
}
}
function selectedIcon(name) {
emit('selected', name)
document.body.click()
}
function reset() {
iconName.value = ''
iconList.value = icons
}
defineExpose({
reset
})
</script>
<style lang='scss' scoped>
.icon-body {
width: 100%;
padding: 10px;
.icon-search {
position: relative;
margin-bottom: 5px;
2021-11-30 01:55:37 +00:00
}
.icon-list {
height: 200px;
:deep(.el-scrollbar) {
height: 100%;
.el-scrollbar__wrap {
overflow-x: hidden;
}
}
.list-container {
display: flex;
flex-wrap: wrap;
.icon-item-wrapper {
width: calc(100% / 3);
height: 30px;
line-height: 30px;
margin-bottom: -5px;
cursor: pointer;
display: flex;
.icon-item {
display: flex;
max-width: 100%;
height: 100%;
padding: 0 2px;
&:hover {
background: #ececec;
border-radius: 5px;
}
.icon {
flex-shrink: 0;
}
span {
display: inline-block;
vertical-align: -0.15em;
fill: currentColor;
padding-left: 2px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
}
.icon-item.active {
background: #ececec;
border-radius: 5px;
}
}
}
2021-11-30 01:55:37 +00:00
}
}
</style>