From 09e4d7d3325ec442d7c98f6fc14649b9f740c9e8 Mon Sep 17 00:00:00 2001 From: chansee97 Date: Wed, 3 Apr 2024 11:21:07 +0800 Subject: [PATCH] refactor: modify icons usage --- .env.prod | 2 +- build/plugins.ts | 34 +++++++++---------- package.json | 1 - src/assets/{icons => svg-icons}/cool.svg | 0 src/assets/{icons => svg-icons}/logo.svg | 0 src/components/common/DarkModeSwitch.vue | 6 ++-- src/components/custom/CopyText.vue | 2 +- src/components/custom/IconSelect/index.vue | 4 +-- .../custom/{EIcon.vue => NovaIcon.vue} | 6 +++- src/layouts/components/common/BackTop.vue | 2 +- src/layouts/components/common/NoticeList.vue | 2 +- src/layouts/components/header/Breadcrumb.vue | 2 +- .../components/header/CollapaseButton.vue | 4 +-- src/layouts/components/header/FullScreen.vue | 4 +-- src/layouts/components/header/Notices.vue | 2 +- src/layouts/components/header/Search.vue | 2 +- src/layouts/components/header/Setting.vue | 2 +- src/layouts/components/sider/Logo.vue | 5 +-- src/layouts/components/tab/Reload.vue | 2 +- src/layouts/components/tab/TabBar.vue | 4 +-- src/modules/assets.ts | 1 - src/typings/env.d.ts | 2 +- src/typings/package.d.ts | 6 ---- src/views/dashboard/monitor/index.vue | 8 ++--- src/views/dashboard/workbench/index.vue | 12 +++---- src/views/list/cardList/index.vue | 2 +- src/views/list/commonList/index.vue | 10 +++--- src/views/login/components/Login/index.vue | 10 +++--- src/views/login/components/Register/index.vue | 8 ++--- unocss.config.ts | 5 --- 30 files changed, 69 insertions(+), 81 deletions(-) rename src/assets/{icons => svg-icons}/cool.svg (100%) rename src/assets/{icons => svg-icons}/logo.svg (100%) rename src/components/custom/{EIcon.vue => NovaIcon.vue} (79%) delete mode 100644 src/typings/package.d.ts diff --git a/.env.prod b/.env.prod index dcfba5c..29a3c4e 100644 --- a/.env.prod +++ b/.env.prod @@ -1,5 +1,5 @@ # 是否开启压缩资源 -VITE_COMPRESS_OPEN=N +VITE_BUILD_COMPRESS=N # 压缩算法 gzip | brotliCompress | deflate | deflateRaw VITE_COMPRESS_TYPE=gzip diff --git a/build/plugins.ts b/build/plugins.ts index 5b6eae5..0e18d54 100644 --- a/build/plugins.ts +++ b/build/plugins.ts @@ -1,4 +1,3 @@ -import path from 'node:path' import UnoCSS from '@unocss/vite' import vue from '@vitejs/plugin-vue' import vueJsx from '@vitejs/plugin-vue-jsx' @@ -7,13 +6,11 @@ import AutoImport from 'unplugin-auto-import/vite' import { NaiveUiResolver } from 'unplugin-vue-components/resolvers' import viteCompression from 'vite-plugin-compression' import Icons from 'unplugin-icons/vite' +import { FileSystemIconLoader } from 'unplugin-icons/loaders' // https://github.com/antfu/unplugin-icons import IconsResolver from 'unplugin-icons/resolver' -// https://github.com/vbenjs/vite-plugin-svg-icons/blob/main/README.zh_CN.md -import { createSvgIconsPlugin } from 'vite-plugin-svg-icons' - /** * @description: 设置vite插件配置 * @param {*} env - 环境变量配置 @@ -43,28 +40,31 @@ export function createVitePlugins(env: ImportMetaEnv) { // auto import components lib Components({ dts: 'src/typings/components.d.ts', - resolvers: [IconsResolver(), NaiveUiResolver()], + resolvers: [ + IconsResolver({ + prefix: false, + customCollections: [ + 'svg-icons', + ], + }), + NaiveUiResolver(), + ], }), // auto import iconify's icons Icons({ defaultStyle: 'display:inline-block', compiler: 'vue3', + customCollections: { + 'svg-icons': FileSystemIconLoader( + 'src/assets/svg-icons', + svg => svg.replace(/^ - - - + + + diff --git a/src/components/custom/CopyText.vue b/src/components/custom/CopyText.vue index 2119255..92d8496 100644 --- a/src/components/custom/CopyText.vue +++ b/src/components/custom/CopyText.vue @@ -14,7 +14,7 @@ const text = useVModel(props, 'modelValue', emit) {{ text }} - + diff --git a/src/components/custom/IconSelect/index.vue b/src/components/custom/IconSelect/index.vue index 3750a40..66b5db6 100644 --- a/src/components/custom/IconSelect/index.vue +++ b/src/components/custom/IconSelect/index.vue @@ -18,7 +18,7 @@ function handleSelectIcon(icon: string) { @@ -33,7 +33,7 @@ function handleSelectIcon(icon: string) { class="border border-gray-200 m-2px p-5px flex-center" @click="handleSelectIcon(item)" > - + diff --git a/src/components/custom/EIcon.vue b/src/components/custom/NovaIcon.vue similarity index 79% rename from src/components/custom/EIcon.vue rename to src/components/custom/NovaIcon.vue index f3aee98..8fc1283 100644 --- a/src/components/custom/EIcon.vue +++ b/src/components/custom/NovaIcon.vue @@ -2,19 +2,23 @@ import { Icon } from '@iconify/vue' interface iconPorps { + /* 图标名称 */ icon?: string + /* 图标颜色 */ color?: string + /* 图标大小 */ size?: number + /* 图标深度 */ depth?: 1 | 2 | 3 | 4 | 5 } const props = withDefaults(defineProps(), { size: 18, - icon: 'icon-park-outline:baby-feet', })