From b13b156bb927d491f11bc810ad7e39e3357577c0 Mon Sep 17 00:00:00 2001 From: chansee97 Date: Thu, 29 Feb 2024 15:05:08 +0800 Subject: [PATCH] chore: remove mockjs --- build/config/proxy.ts | 7 +- build/plugins/compress.ts | 4 +- build/plugins/index.ts | 5 +- build/plugins/mock.ts | 10 - build/plugins/unplugin.ts | 13 +- mock/index.ts | 6 - mock/module/index.ts | 3 - mock/module/list.ts | 28 - mock/module/user.ts | 493 ------------------ mock/utils.ts | 16 - package.json | 4 +- .../custom/Editor/MarkDownEditor/index.vue | 4 +- src/directive/copy.ts | 3 +- src/hooks/useSystem.ts | 12 +- src/service/api/login.ts | 6 +- src/service/http/handle.ts | 6 +- src/service/http/index.ts | 4 +- src/service/http/request.ts | 1 - src/store/modules/auth.ts | 4 +- src/store/modules/route.ts | 4 +- src/styles/css/reset.css | 214 ++++---- src/typings/api.d.ts | 40 +- src/typings/business.d.ts | 61 ++- src/typings/global.d.ts | 46 +- src/typings/package.d.ts | 6 +- src/typings/route.d.ts | 30 +- src/typings/router.d.ts | 3 +- src/typings/service.d.ts | 91 ++-- src/typings/shims-vue.d.ts | 7 +- src/views/list/commonList/index.vue | 49 +- src/views/userCenter/index.vue | 2 +- tsconfig.json | 28 +- unocss.config.ts | 4 +- vite.config.ts | 9 +- 34 files changed, 332 insertions(+), 891 deletions(-) delete mode 100644 build/plugins/mock.ts delete mode 100644 mock/index.ts delete mode 100644 mock/module/index.ts delete mode 100644 mock/module/list.ts delete mode 100644 mock/module/user.ts delete mode 100644 mock/utils.ts diff --git a/build/config/proxy.ts b/build/config/proxy.ts index 478e973..71c7460 100644 --- a/build/config/proxy.ts +++ b/build/config/proxy.ts @@ -2,7 +2,7 @@ import type { ProxyOptions } from 'vite' /** * @description: 生成vite代理字段 - * @param {*} env - 环境变量配置 + * @param {*} envConfig - 环境变量配置 */ export function createViteProxy(envConfig: ServiceEnvConfig) { const proxy: Record = { @@ -11,11 +11,6 @@ export function createViteProxy(envConfig: ServiceEnvConfig) { changeOrigin: true, rewrite: path => path.replace(new RegExp(`^${envConfig.urlPattern}`), ''), }, - [envConfig.secondUrlPattern]: { - target: envConfig.secondUrl, - changeOrigin: true, - rewrite: path => path.replace(new RegExp(`^${envConfig.secondUrlPattern}`), ''), - }, } return proxy diff --git a/build/plugins/compress.ts b/build/plugins/compress.ts index fcb7b33..3664c5a 100644 --- a/build/plugins/compress.ts +++ b/build/plugins/compress.ts @@ -1,4 +1,6 @@ -import viteCompression from 'vite-plugin-compression' // https://github.com/vbenjs/vite-plugin-compression/blob/main/README.zh_CN.md +import viteCompression from 'vite-plugin-compression' + +// https://github.com/vbenjs/vite-plugin-compression/blob/main/README.zh_CN.md export default (env: ImportMetaEnv) => { // 默认使用gzip压缩 diff --git a/build/plugins/index.ts b/build/plugins/index.ts index d9088f0..53d0606 100644 --- a/build/plugins/index.ts +++ b/build/plugins/index.ts @@ -3,9 +3,6 @@ import UnoCSS from '@unocss/vite' import vue from './vue' import compress from './compress' import unplugin from './unplugin' -import mock from './mock' - -// import { viteMockServe } from 'vite-plugin-mock' // https://github.com/vbenjs/vite-plugin-mock/blob/main/README.zh_CN.md /** * @description: 设置vite插件配置 @@ -13,7 +10,7 @@ import mock from './mock' * @return {*} */ export function setVitePlugins(env: ImportMetaEnv) { - const plugins: PluginOption[] = [...vue, UnoCSS(), ...unplugin, mock] + const plugins: PluginOption[] = [...vue, UnoCSS(), ...unplugin] // 是否压缩 if (env.VITE_COMPRESS_OPEN === 'Y') plugins.push(compress(env)) diff --git a/build/plugins/mock.ts b/build/plugins/mock.ts deleted file mode 100644 index aa6fb56..0000000 --- a/build/plugins/mock.ts +++ /dev/null @@ -1,10 +0,0 @@ -import { viteMockServe } from 'vite-plugin-mock' // https://github.com/vbenjs/vite-plugin-mock/blob/main/README.zh_CN.md - -export default viteMockServe({ - mockPath: 'mock', - prodEnabled: true, - injectCode: ` - import { setupMockServer } from '../mock'; - setupMockServer(); - `, -}) diff --git a/build/plugins/unplugin.ts b/build/plugins/unplugin.ts index a27e3c5..6f7af90 100644 --- a/build/plugins/unplugin.ts +++ b/build/plugins/unplugin.ts @@ -3,10 +3,14 @@ import Components from 'unplugin-vue-components/vite' import AutoImport from 'unplugin-auto-import/vite' import { NaiveUiResolver } from 'unplugin-vue-components/resolvers' -import Icons from 'unplugin-icons/vite' // https://github.com/antfu/unplugin-icons +import Icons from 'unplugin-icons/vite' + +// https://github.com/antfu/unplugin-icons import IconsResolver from 'unplugin-icons/resolver' -import { createSvgIconsPlugin } from 'vite-plugin-svg-icons' // https://github.com/vbenjs/vite-plugin-svg-icons/blob/main/README.zh_CN.md +import { createSvgIconsPlugin } from 'vite-plugin-svg-icons' + +// https://github.com/vbenjs/vite-plugin-svg-icons/blob/main/README.zh_CN.md export default [ AutoImport({ @@ -15,7 +19,8 @@ export default [ /\.[tj]sx?$/, /\.vue$/, /\.vue\?vue/, - /\.md$/], + /\.md$/, + ], dts: 'src/typings/auto-imports.d.ts', }), Components({ @@ -29,7 +34,7 @@ export default [ }), createSvgIconsPlugin({ // 指定需要缓存的图标文件夹 - iconDirs: [path.resolve(process.cwd(), 'src/assets/icons')], + iconDirs: [path.resolve(__dirname, 'src/assets/icons')], // 指定symbolId格式 symbolId: 'icon-[dir]-[name]', // inject: 'body-last', diff --git a/mock/index.ts b/mock/index.ts deleted file mode 100644 index 82b67d5..0000000 --- a/mock/index.ts +++ /dev/null @@ -1,6 +0,0 @@ -import { createProdMockServer } from 'vite-plugin-mock/es/createProdMockServer' -import api from './module' - -export function setupMockServer() { - createProdMockServer(api) -} diff --git a/mock/module/index.ts b/mock/module/index.ts deleted file mode 100644 index 332bebb..0000000 --- a/mock/module/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -import user from './user' - -export default [...user] diff --git a/mock/module/list.ts b/mock/module/list.ts deleted file mode 100644 index ec75d8b..0000000 --- a/mock/module/list.ts +++ /dev/null @@ -1,28 +0,0 @@ -import { mock } from 'mockjs' -import { resultSuccess } from '../utils' - -const userList = mock({ - 'list|20': [ - { - 'id': '@id', - 'name': '@cname', - 'age|20-36': 36, - 'gender|1': ['0', '1', null], - 'email': '@email("qq.com")', - 'address': '@county(true)', - 'role|1': ['super', 'admin', 'user'], - 'disabled|1': true, - }, - ], -}) - -export default [ - { - url: '/mock/userList', - timeout: 1000, - method: 'get', - response: () => { - return resultSuccess(userList.list) - }, - }, -] diff --git a/mock/module/user.ts b/mock/module/user.ts deleted file mode 100644 index 4f8fd83..0000000 --- a/mock/module/user.ts +++ /dev/null @@ -1,493 +0,0 @@ -import Mock from 'mockjs' -import { resultFailed, resultSuccess } from '../utils' - -const Random = Mock.Random - -const token = () => Random.string('upper', 32, 32) - -const userData = [ - { - userId: '1', - username: 'super', - password: '123456', - nickName: '超级管理员大人', - avatar: 'https://s2.loli.net/2023/08/26/6Xh3wuCV2eMZnEp.png', - role: 'super', - }, - { - userId: '2', - username: 'admin', - password: '123456', - nickName: '管理员大人', - avatar: 'https://s2.loli.net/2023/08/26/6Xh3wuCV2eMZnEp.png', - role: 'admin', - }, - { - userId: '3', - username: 'user', - password: '123456', - nickName: '用户大人', - avatar: 'https://s2.loli.net/2023/08/26/6Xh3wuCV2eMZnEp.png', - role: 'user', - }, -] -const userRoutes = [ - { - name: 'dashboard', - path: '/dashboard', - meta: { - title: '仪表盘', - requiresAuth: true, - icon: 'icon-park-outline:analysis', - }, - children: [ - { - name: 'dashboard_workbench', - path: '/dashboard/workbench', - meta: { - title: '工作台', - requiresAuth: true, - icon: 'icon-park-outline:alarm', - }, - }, - { - name: 'dashboard_monitor', - path: '/dashboard/monitor', - meta: { - title: '监控页', - requiresAuth: true, - icon: 'icon-park-outline:anchor', - }, - }, - ], - }, - { - name: 'test', - path: '/test', - meta: { - title: '多级菜单演示', - requiresAuth: true, - icon: 'icon-park-outline:list', - }, - children: [ - { - name: 'test1', - path: '/test/test1', - meta: { - title: '接口功能测试', - requiresAuth: true, - icon: 'icon-park-outline:list', - }, - }, - { - name: 'test2', - path: '/test/test2', - meta: { - title: '多级菜单子页', - requiresAuth: true, - icon: 'icon-park-outline:list', - }, - children: [ - { - name: 'test2_detail', - path: '/test/test2/detail', - meta: { - title: '多级菜单的详情页', - requiresAuth: true, - icon: 'icon-park-outline:list', - hide: true, - activeMenu: '/test/test2', - }, - }, - ], - }, - { - name: 'test3', - path: '/test/test3', - meta: { - title: '多级菜单', - requiresAuth: true, - icon: 'icon-park-outline:list', - }, - children: [ - { - name: 'test4', - path: '/test/test3/test4', - meta: { - title: '多级菜单3-1', - requiresAuth: true, - icon: 'icon-park-outline:list', - }, - }, - ], - }, - ], - }, - { - name: 'list', - path: '/list', - meta: { - title: '列表页', - requiresAuth: true, - icon: 'icon-park-outline:list-two', - }, - children: [ - { - name: 'list_commonList', - path: '/list/commonList', - meta: { - title: '常用列表', - requiresAuth: true, - icon: 'icon-park-outline:list-view', - }, - }, - { - name: 'list_cardList', - path: '/list/cardList', - meta: { - title: '卡片列表', - requiresAuth: true, - icon: 'icon-park-outline:view-grid-list', - }, - }, - ], - }, - { - name: 'plugin', - path: '/plugin', - meta: { - title: '组件示例', - requiresAuth: true, - icon: 'icon-park-outline:application-one', - }, - children: [ - { - name: 'plugin_charts', - path: '/plugin/charts', - meta: { - title: '图表', - requiresAuth: true, - icon: 'icon-park-outline:chart-line', - }, - children: [ - { - name: 'plugin_echarts', - path: '/plugin/charts/echarts', - meta: { - title: 'ECharts', - requiresAuth: true, - icon: 'icon-park-outline:chart-proportion', - }, - }, - { - name: 'plugin_antV', - path: '/plugin/charts/antV', - meta: { - title: 'antV', - requiresAuth: true, - icon: 'ant-design:ant-design-outlined', - }, - }, - ], - }, - { - name: 'PluginMap', - path: '/plugin/map', - meta: { - title: '地图', - requiresAuth: true, - icon: 'carbon:map', - keepAlive: true, - }, - }, - { - name: 'plugin_editor', - path: '/plugin/editor', - meta: { - title: '编辑器', - requiresAuth: true, - icon: 'icon-park-outline:editor', - }, - children: [ - { - name: 'plugin_md', - path: '/plugin/editor/md', - meta: { - title: 'MarkDown', - requiresAuth: true, - icon: 'ri:markdown-line', - }, - }, - { - name: 'plugin_rich', - path: '/plugin/editor/rich', - meta: { - title: '富文本', - requiresAuth: true, - icon: 'icon-park-outline:edit-one', - }, - }, - ], - }, - { - name: 'plugin_clipboard', - path: '/plugin/clipboard', - meta: { - title: '剪贴板', - requiresAuth: true, - icon: 'icon-park-outline:clipboard', - }, - }, - { - name: 'plugin_icons', - path: '/plugin/icons', - meta: { - title: '图标', - requiresAuth: true, - icon: 'icon-park-outline:winking-face-with-open-eyes', - }, - }, - { - name: 'plugin_QRCode', - path: '/plugin/QRCode', - meta: { - title: '二维码', - requiresAuth: true, - icon: 'icon-park-outline:two-dimensional-code', - }, - }, - ], - }, - { - name: 'docments', - path: '/docments', - meta: { - title: '外链文档', - requiresAuth: true, - icon: 'icon-park-outline:file-doc', - }, - children: [ - { - name: 'docments_vue', - path: '/docments/vue', - meta: { - title: 'vue', - requiresAuth: true, - icon: 'logos:vue', - }, - }, - { - name: 'docments_vite', - path: '/docments/vite', - meta: { - title: 'vite', - requiresAuth: true, - icon: 'logos:vitejs', - }, - }, - { - name: 'docments_vueuse', - path: '/docments/vueuse', - meta: { - title: 'VueUse(外链)', - requiresAuth: true, - icon: 'logos:vueuse', - herf: 'https://vueuse.org/guide/', - }, - }, - ], - }, - { - name: 'permission', - path: '/permission', - meta: { - title: '权限示例', - requiresAuth: true, - icon: 'icon-park-outline:people-safe', - }, - children: [ - { - name: 'permission_permission', - path: '/permission/permission', - meta: { - title: '权限示例', - requiresAuth: true, - icon: 'icon-park-outline:right-user', - }, - }, - { - name: 'permission_justSuper', - path: '/permission/justSuper', - meta: { - title: '超管super可见', - requiresAuth: true, - roles: ['super'], - icon: 'icon-park-outline:wrong-user', - }, - }, - ], - }, - { - name: 'error', - path: '/error', - meta: { - title: '异常页', - requiresAuth: true, - icon: 'icon-park-outline:error-computer', - }, - children: [ - { - name: '403', - path: '/error/403', - meta: { - title: '403页', - requiresAuth: true, - icon: 'carbon:error', - order: 3, - }, - }, - { - name: '404', - path: '/error/404', - meta: { - title: '404页', - requiresAuth: true, - icon: 'icon-park-outline:error', - order: 2, - }, - }, - { - name: '500', - path: '/error/500', - meta: { - title: '500页', - requiresAuth: true, - icon: 'carbon:data-error', - order: 1, - }, - }, - ], - }, - { - name: 'setting', - path: '/setting', - meta: { - title: '系统设置', - requiresAuth: true, - icon: 'icon-park-outline:setting', - }, - children: [ - { - name: 'setting_account', - path: '/setting/account', - meta: { - title: '用户设置', - requiresAuth: true, - icon: 'icon-park-outline:every-user', - }, - }, - { - name: 'setting_dictionary', - path: '/setting/dictionary', - meta: { - title: '字典设置', - requiresAuth: true, - icon: 'icon-park-outline:book-one', - }, - }, - { - name: 'setting_menu', - path: '/setting/menu', - meta: { - title: '菜单设置', - requiresAuth: true, - icon: 'icon-park-outline:application-menu', - }, - }, - { - name: 'setting_system', - path: '/setting/system', - meta: { - title: '系统配置', - requiresAuth: true, - icon: 'icon-park-outline:coordinate-system', - }, - }, - ], - }, - { - name: 'userCenter', - path: '/userCenter', - meta: { - title: '个人中心', - requiresAuth: true, - icon: 'carbon:user-avatar-filled-alt', - }, - }, - { - name: 'about', - path: '/about', - meta: { - title: '关于', - requiresAuth: true, - icon: 'icon-park-outline:info', - }, - }, -] - -export default [ - { - url: '/mock/auth/login', - method: 'post', - response: (options: Service.MockOption) => { - const { username = undefined, password = undefined } = options.body - - if (!username || !password) - return resultFailed(null, '账号密码不全') - - const userInfo = userData.find(item => item.username === username && item.password === password) - - if (userInfo) { - return { - code: 200, - message: 'ok', - data: { - id: userInfo.userId, - accessToken: token(), - refreshToken: token(), - }, - } - } - return resultFailed(null, '账号密码错误') - }, - }, - { - url: '/mock/updateToken', - method: 'post', - response: () => { - return resultSuccess({ token: token(), refreshToken: token() }) - }, - }, - { - url: '/mock/getUserInfo', - method: 'get', - response: (options: any) => { - const { userId } = options.query - if (!userId) - return resultFailed(null, '未传入用户id!') - - const userInfo = userData.find(item => item.userId === userId) - if (userInfo) - return resultSuccess(userInfo) - - return resultFailed(null, '未找到用户信息,请检查提交参数') - }, - }, - { - url: '/mock/getUserRoutes', - method: 'post', - response: () => { - return resultSuccess(userRoutes) - }, - }, -] diff --git a/mock/utils.ts b/mock/utils.ts deleted file mode 100644 index db3c3c5..0000000 --- a/mock/utils.ts +++ /dev/null @@ -1,16 +0,0 @@ -import Mock from 'mockjs' - -export function resultSuccess(data: any, msg?: string) { - return Mock.mock({ - code: 200, - data, - msg: msg || 'success', - }) -} -export function resultFailed(data: any, msg?: string) { - return Mock.mock({ - code: 500, - data, - msg: msg || 'failed', - }) -} diff --git a/package.json b/package.json index d96e7ec..adbcd65 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,6 @@ { "name": "nova-admin", + "type": "module", "version": "0.1.0", "private": true, "description": "", @@ -70,14 +71,12 @@ "@iconify-json/icon-park-outline": "^1.1.15", "@iconify/vue": "^4.1.1", "@types/crypto-js": "^4.2.2", - "@types/mockjs": "^1.0.10", "@types/node": "^20.11.22", "@types/qs": "^6.9.12", "@vitejs/plugin-vue": "^5.0.4", "@vitejs/plugin-vue-jsx": "^3.1.0", "eslint": "^8.57.0", "lint-staged": "^15.2.2", - "mockjs": "^1.1.0", "naive-ui": "^2.38.1", "sass": "^1.71.1", "simple-git-hooks": "^2.9.0", @@ -89,7 +88,6 @@ "vite": "^5.1.4", "vite-bundle-visualizer": "^1.0.1", "vite-plugin-compression": "^0.5.1", - "vite-plugin-mock": "^3.0.1", "vite-plugin-svg-icons": "^2.0.1", "vue-tsc": "^1.8.27" }, diff --git a/src/components/custom/Editor/MarkDownEditor/index.vue b/src/components/custom/Editor/MarkDownEditor/index.vue index a1ef978..5667afa 100644 --- a/src/components/custom/Editor/MarkDownEditor/index.vue +++ b/src/components/custom/Editor/MarkDownEditor/index.vue @@ -1,7 +1,9 @@