zoukankan      html  css  js  c++  java
  • Vite Vue3.0 使用 SVG Icon (自定义Vite插件)

    1. 安装 svg-sprite-loader

    npm i svg-sprite-loader --save-dev
    

    2. SvgIcon component

    <script setup>
    import {computed, useCssModule} from "vue";
    const props = defineProps({
      name: {
        type: String,
        required: true
      }
    })
    
    const styles = useCssModule()
    
    const iconName = computed(() => `#icon-${props.name}`);
    const svgClass = computed(() => {
      const className = [styles['svg-icon']]
      if (props.name) className.push(`icon-${props.name}`)
      return className
    })
    </script>
    
    <template>
      <svg :class="svgClass" v-bind="$attrs">
        <use :xlink:href="iconName"></use>
      </svg>
    </template>
    
    <style module="">
    .svg-icon {
       1em;
      height: 1em;
      fill: currentColor;
      vertical-align: middle;
      overflow: hidden;
    }
    </style>
    
    import svgIcon from './icon'
    
    export default {
        install: Vue => Vue.component('svg-icon', svgIcon)
    }
    
    

    3. 新建svgBuilder.js

    import {readFileSync, readdirSync} from 'fs'
    import path from 'path'
    
    let idPrefix = ''
    const svgTitle = /<svg([^>+].*?)>/
    const clearHeightWidth = /(width|height)="([^>+].*?)"/g
    
    const hasViewBox = /(viewBox="[^>+].*?")/g
    
    const clearReturn = /(
    )|(
    )/g
    
    const findSvgFile = (dir) => {
        const svgRes = []
        const directory = readdirSync(dir, {withFileTypes: true})
        for (const dirent of directory) {
            if (dirent?.isDirectory()) {
                svgRes.push(...findSvgFile(path.join(dir, dirent.name, '/')))
            } else {
                const svg = readFileSync(path.join(dir, dirent.name))
                    .toString()
                    .replace(clearReturn, '')
                    .replace(svgTitle, ($1, $2) => {
                        let width = 0
                        let height = 0
                        let content = $2.replace(
                            clearHeightWidth,
                            (s1, s2, s3) => {
                                if (s2 === 'width') {
                                    width = s3
                                } else if (s2 === 'height') {
                                    height = s3
                                }
                                return ''
                            }
                        )
                        if (!hasViewBox.test($2)) {
                            content += `viewBox="0 0 ${width} ${height}"`
                        }
                        return `<symbol id="${idPrefix}-${dirent.name.replace(
                            '.svg',
                            ''
                        )}" ${content}>`
                    })
                    .replace('</svg>', '</symbol>')
                svgRes.push(svg)
            }
        }
        return svgRes
    }
    
    const svgBuilder = (path, prefix = 'icon') => {
        if (!path) return
        idPrefix = prefix
        const res = findSvgFile(path)
        return {
            name: 'svg-transform',
            transformIndexHtml(html) {
                return html.replace(
                    '<body>',
                    `<body>
                    <svg xmlns="http://www.w3.org/2000/svg" 
                        xmlns:xlink="http://www.w3.org/1999/xlink" 
                        style="position: absolute;  0; height: 0">
                  ${res.join('')}
                  </svg>`
                )
            }
        }
    }
    
    export default svgBuilder
    
    

    4. main.js 中全局注册

    // ...
    import svgIcon from '@/components/svgIcon'
    // ...
    const app = createApp(App)
    app.use(svgIcon)
    

    5. src目录下新建icons文件夹内存放svg图标

    6. vite.config.js 中

    import svgBuilder from './plugins/svgBuilder'
    // ... 
    plugins: [
              // ...
              svgBuilder('./src/icons')
             ]
    

    7. 使用

    <!-- name 为 svg 的文件名 -->
    <svg-icon name="right">
    

    </svg([^>

    为之则易,不为则难。
  • 相关阅读:
    SQL Server 2005中的分区表(六):将已分区表转换成普通表
    关于SQL Server中分区表的文件与文件组的删除(转)
    MySQL修改root密码的几种方法
    Aptana 插件 for Eclipse 4.4
    IT励志与指导文章合集(链接)
    正则表达式(转)
    《疯狂原始人》温馨而搞笑片段截图
    指针函数与函数指针的区别(转)
    Linux内核@系统组成与内核配置编译
    2015年我国IT行业发展趋势分析(转)
  • 原文地址:https://www.cnblogs.com/coderDemo/p/15465504.html
Copyright © 2011-2022 走看看