SVG图片选择库组件封装及使用

需求

需求: 在项目中通常需要做菜单管理,想要让左侧菜单好看一点,一般都会选择添加图标,需要自定义选择喜欢的图标,得提供一个有选择项的图标库

延伸需求:在项目中通常可能有好几个图标选择库,可能每个可选择图标库里的图标都不能相同,这就需要我们做区分展示

前置条件

需要使用到svg图片,以前有写下载使用svg图片的文章,可以参考一下
链接:在vue中使用svg

图例

1. 菜单图标库

在这里插入图片描述
在这里插入图片描述

2. 场景图标库

在这里插入图片描述
在这里插入图片描述

实现

svg文件

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

可以在svg文件夹的下级创建scene文件夹,在svg文件夹中的svg图片属于菜单图标库(不包含scene文件夹中的图片),scene文件夹中的svg图片属于场景图标库,如果想美观一点可以把菜单图标库的图标用文件夹归纳一下,重要的是icons文件夹下的index.js文件中的匹配

index.js文件

import Vue from 'vue'
import SvgIcon from '@/components/SvgIcon'// svg componentVue.component('svg-icon', SvgIcon)const req = require.context('./svg', false, /\.svg$/)
//温馨提示:要想使用scene文件夹中的图片一定要写这个哦
const scenereq = require.context('./svg/scene', false, /\.svg$/) 
const requireAll = requireContext => requireContext.keys().map(requireContext)
requireAll(req)
requireAll(scenereq)

1. 菜单图标组件

组件(@/components/IconSelect)
  1. index.vue文件
<template><div class="icon-body"><el-input v-model="name" style="position: relative;" clearable placeholder="请输入图标名称" @clear="filterIcons" @input.native="filterIcons"><i slot="suffix" class="el-icon-search el-input__icon" /></el-input><div class="icon-list"><div v-for="(item, index) in iconList" :key="index" @click="selectedIcon(item)"><svg-icon :icon-class="item" style="height: 30px;width: 16px;" /><span>{{ item }}</span></div></div></div>
</template>
<script>
import icons from './requireIcons'
export default {name: 'IconSelect',data() {return {name: '',iconList:icons}},mounted(){},methods: {filterIcons() {this.iconList = iconsif (this.name) {this.iconList = this.iconList.filter(item => item.includes(this.name))}},selectedIcon(name) {this.$emit('selected', name)document.body.click()},reset() {this.name = ''this.iconList = icons}}
}
</script>
<style rel="stylesheet/scss" lang="scss" scoped>.icon-body {width: 100%;padding: 10px;.icon-list {height: 200px;overflow-y: scroll;div {height: 30px;line-height: 30px;margin-bottom: -5px;cursor: pointer;width: 33%;float: left;}span {display: inline-block;vertical-align: -0.15em;fill: currentColor;overflow: hidden;}}}
</style>
  1. requireIcons.js
const req = require.context('../../icons/svg', false, /\.svg$/)
const requireAll = requireContext => requireContext.keys()const re = /\.\/(.*)\.svg/const icons = requireAll(req).map(i => {return i.match(re)[1]
})export default icons
使用
<el-form-item label="菜单图标"><el-popover placement="bottom-start" width="460" trigger="click" @show="$refs['IconSelect'].reset()"><IconSelect ref="IconSelect" @selected="selected"/><el-input slot="reference" v-model="form.icon" placeholder="点击选择图标"><svg-icon v-if="form.icon" slot="prefix" :icon-class="form.icon" class="el-input__icon" style="height: 32px;width: 16px;"/><i v-else slot="prefix" class="el-icon-search el-input__icon" /></el-input></el-popover>
</el-form-item>
<script>
import IconSelect from '@/components/IconSelect'
export default {components: { IconSelect},data(){return{form:{icon:undefined}}},methods:{// 选择图标selected(name) {this.form.icon = name},}
}
</script>

2. 场景图标组件

组件(@/components/SceneIconSelect)
  1. index.vue文件
<template><el-popover placement="bottom-start" width="368" trigger="click" popper-class="sence-icon-popover" @show="reset"><div class="icon-body"><div class="icon-list"><div v-for="(item, index) in iconList" :key="index" @click="selectedIcon(item)"><svg-icon :icon-class="item" :class="selectIcon===item?'active-svg':'svg'" /></div></div></div><div slot="reference" class="sence-icon"><svg-icon slot="prefix" :icon-class="selectIcon" class="el-input__icon" style="height:24px;width:24px;fill:#606266;"/></div></el-popover>
</template>
<script>
import icons from './requireIcons'
export default {name: 'SceneIcon',props:{selectIcon:String},data(){return{name: '',iconList:icons}},methods:{filterIcons() {this.iconList = iconsif (this.name) {this.iconList = this.iconList.filter(item => item.includes(this.name))}},selectedIcon(name) {this.$emit('selected', name)document.body.click()},reset() {this.name = ''this.iconList = icons}}
}
</script>
<style rel="stylesheet/scss" lang="scss" scoped>
.icon-body {width: 100%;.icon-list {height: 128px;overflow-y: auto;padding: 13px;div {height: 24px;line-height: 24px;margin: 5px;cursor: pointer;width: 24px;float: left;display: flex;align-items: center;justify-content: center;.svg{width: 24px;height: 24px;}.active-svg{width: 24px;height: 24px;fill: $--color-mian !important;}&:hover,&:active,&:focus{.svg{fill: $--color-mian !important;}}}}
}
.sence-icon{width: 32px;height: 32px;display: flex;align-items: center;justify-content: center;border: 1px solid #DCDFE6;
}
</style>
<style lang="scss">
.sence-icon-popover{padding: 0 !important;border-radius: 0;border: 1px solid #DCDFE6;.popper__arrow{border-bottom-color: #DCDFE6 !important;}
}
</style>
  1. requireIcons.js
const req = require.context('../../icons/svg/scene', false, /\.svg$/)
const requireAll = requireContext => requireContext.keys()const re = /\.\/(.*)\.svg/const icons = requireAll(req).map(i => {return i.match(re)[1]
})export default icons
使用
<el-form-item label="场景图标" prop="icon"><SceneIconSelect ref="SceneIconSelect" v-model="form.icon" @selected="selected" :selectIcon="form.icon"></SceneIconSelect>
</el-form-item>
<el-form-item label="图标背景色" prop="color" class="picker-color"><el-color-picker v-model="form.color" :class="form.color?'color-picker':'none-color-picker'"></el-color-picker>
</el-form-item>
<script>
import SceneIconSelect from '@/components/SceneIconSelect'
export default {components: { SceneIconSelect},data(){return{form:{icon:'检修', //默认图标color:'#0095FF' //默认颜色}}},methods:{// 选择图标selected(name) {this.form.icon = name},}
}
</script>
<style lang="scss" scped>
.picker-color{::v-deep .el-form-item__content{height: 32px;}.color-picker{::v-deep .el-color-picker__trigger{padding: 0;border: 0;border-radius: 0;.el-color-picker__color{border: 0;border-radius: 0;}}}.none-color-picker{::v-deep .el-color-picker__trigger{padding: 0;border: 0;border-radius: 0;.el-color-picker__color{border: 1px solid #DCDFE6;border-radius: 0;}}}
}
</style>

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/180497.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

CentOS 系列:CentOS 7文件系统的组成

CentOS 7文件系统的组成 文件系统的组成Linux的一些重要目录文件和目录名主机名文件权限绝对路径和相对路径绝对路径相对路径 文件系统的组成 一切从根开始 文件路径中只有第一个/是根目录&#xff0c;后面的/是分隔符 文件名区分大小写 除斜线(/)以外&#xff0c;其他的字符…

ruoyi-plus使用Statistic统计组件升级element-plus

原本使用的就是gitee上lionli的ruoyi-plus版本的代码。但是在使用过程中作首页数据看板时想使用elementui的Statistic统计组件。结果在浏览器控制台报错找不到组件el-statistic 于是查看elementui的历史版本&#xff0c;发现是在新版中才有这个组件&#xff0c;旧版本是没这个组…

第六届传智杯第四题(abb)

描述 leafee 最近爱上了 abb 型语句&#xff0c;比如“叠词词”、“恶心心” leafee 拿到了一个只含有小写字母的字符串&#xff0c;她想知道有多少个 "abb" 型的子序列&#xff1f; 定义&#xff1a; abb 型字符串满足以下条件&#xff1a; 字符串长度为 3 。字符…

高防CDN可以起到什么作用?

高防CDN相对于普通的CDN加速&#xff0c;除了具备基础的加速功效外&#xff0c;高防CDN在每一节点上均有相应配置的防御功效&#xff0c;不仅具备了隐藏源站不被攻击的优势&#xff0c;也具备了访问加速&#xff0c;多节点防御的功效。随着互联网的不断发展&#xff0c;网络上的…

网络安全技术

网络安全概述 网络安全基础要素 机密性&#xff0c;完整性&#xff0c;可用性&#xff0c;可控性&#xff0c;可审查性 常见网络攻击和特点 1.网络监听 使用sniffer软件或主机接口设置成混杂模式&#xff0c;监听网络中的报文 使用加密技术防范 2.重放攻击 攻击者发送一…

【运维】hive 高可用详解: Hive MetaStore HA、hive server HA原理详解;hive高可用实现

文章目录 一. hive高可用原理说明1. Hive MetaStore HA2. hive server HA 二. hive高可用实现1. 配置2. beeline链接测试3. zookeeper相关操作 一. hive高可用原理说明 1. Hive MetaStore HA Hive元数据存储在MetaStore中&#xff0c;包括表的定义、分区、表的属性等信息。 hi…

软件工程 课堂测验 选择填空

系统流程图用图形符号表示系统中各个元素&#xff0c;表达了系统中各个元素之间的 信息流动 喷泉模型是一种以用户需求为动力&#xff0c;以 对象 为驱动的模型。 软件生存周期中最长的是 维护 阶段。 变换流的DFD由三部分组成&#xff0c;不属于其中一部分的是 事务中心 软…

前端面试灵魂提问

1.自我介绍 2.在实习中&#xff0c;你负责那一模块 3.any与unknow的异同 相同点&#xff1a;any和unkonwn 可以接受任何值 不同点&#xff1a;any会丢掉类型限制&#xff0c;可以用any 类型的变量随意做任何事情。unknown 变量会强制执行类型检查&#xff0c;所以在使用一个…

Python 多层级导包

假如我的项目层级结构如下&#xff0c;project文件夹为项目根路径&#xff1a; project/ ├── first/ │ ├── __init__.py │ ├── second/ │ │ ├── __init__.py │ │ └── second_test.py │ └── first_test.py └── main.py假设项目入口文…

工具及方法 - 如何阅读epub文件:使用Adobe Digital Editions

EPUB&#xff08;Electronic Publication的缩写&#xff0c;电子出版&#xff09;是一种电子图书标准&#xff0c;由国际数字出版论坛&#xff08;IDPF&#xff09;提出&#xff1b;其中包括3种文件格式标准&#xff08;文件的扩展名为.epub&#xff09;&#xff0c;这个格式已…

【模电】晶闸管

晶闸管 结构和等效模型工作原理晶闸管的伏安特性晶闸管的主要参数额定正向平均电流 I F I\tiny F IF维持电流 I H I\tiny H IH触发电压 U G U\tiny G UG和触发电流 I G I\tiny G IG正向重复峰值电压 U D R M U\tiny DRM UDRM反向重复峰值电压 U R R M U\tiny RRM URRM 晶体闸流…

对Laxcus分布式操作系统的认知、价值、痛点解决的回答

下面是一位网友的提问&#xff0c;回答贴出来供大家参考&#xff0c;欢迎在下方留言评论。 问&#xff1a; Laxcus分布式操作系统有哪些与众不同的地方&#xff1f;它的价值在哪里&#xff1f;解决了哪些市场痛点&#xff1f;我公司现在已经使用Linux操作系统部署了一堆服务器…

设计模式-模板方法模式

定义 模板方法模式是一种行为型设计模式&#xff0c;它定义了一个算法的步骤&#xff0c;并允许子类别为一个或多个步骤提供其实践方式。这种模式允许子类在不改变算法结构的情况下&#xff0c;重新定义算法的特定步骤。 模板方法模式的结构包括抽象类和具体子类。抽象类负责…

android 内存分析(待续)

/proc/meminfo memory状态解读 命令&#xff1a;adb shell cat /proc/meminfo内存分布log 查看方式 命令&#xff1a;adb shell cat /proc/meminfo 用途:可以整体的了解memory使用情况 我们说的可用memory一般以MemAvailable的数据为准。所以了解MemAvailable的组成可以帮助…

【LeetCode刷题-链表】--86.分隔链表

86.分隔链表 /*** Definition for singly-linked list.* public class ListNode {* int val;* ListNode next;* ListNode() {}* ListNode(int val) { this.val val; }* ListNode(int val, ListNode next) { this.val val; this.next next; }* }*/ class…

建筑木模板厂家批发

在建筑施工中&#xff0c;木模板是一种常见且重要的施工材料&#xff0c;用于搭建混凝土浇筑的支撑结构。选择合适的建筑木模板厂家进行批发&#xff0c;对于施工质量和效率至关重要。本文将介绍建筑木模板厂家批发的重要性&#xff0c;并推荐贵港市能强优品木业作为专业的建筑…

将文件读入C中的字符数组

当您使用 C 编程语言时&#xff0c;您可能会遇到一些需要将文件读入字符数组的问题&#xff0c;例如分析每个字符的频率&#xff0c;或者将所有句子的每个起始词从小写转换为大写&#xff0c;反之亦然。该解决方案非常简单&#xff0c;但对于不太了解文件读取或写入的人来说可能…

MVVM 模式与 MVC 模式:构建高效应用的选择

&#x1f90d; 前端开发工程师&#xff08;主业&#xff09;、技术博主&#xff08;副业&#xff09;、已过CET6 &#x1f368; 阿珊和她的猫_CSDN个人主页 &#x1f560; 牛客高级专题作者、在牛客打造高质量专栏《前端面试必备》 &#x1f35a; 蓝桥云课签约作者、已在蓝桥云…

世岩清上:什么是元宇宙

元宇宙是一个虚拟的数字世界&#xff0c;它是一种全新的互联网形式&#xff0c;是一个可以提供身临其境体验的虚拟世界。元宇宙融合了现实和虚拟&#xff0c;允许用户在这个数字空间中自由探索、创造和交互。 元宇宙的概念源于科幻小说和电影&#xff0c;它最早出现在1992年的…

【SQL SERVER】定时任务

oracle是定时JOB&#xff0c;sqlserver是创建作业&#xff0c;通过sqlserver代理实现 先看SQL SERVER代理得服务有没有开 选择计算机右键——>管理——>服务与应用程序——>服务——>SQL server 代理 然后把SQL server 代理&#xff08;MSSQLSERVER&#xff09;启…