From 6bc16a28f9a640cc1930830d0d027a606e6c19eb Mon Sep 17 00:00:00 2001 From: Coffee-crocodile <1147347984@qq.com> Date: Wed, 21 Jun 2023 12:04:28 +0800 Subject: [PATCH] fix(lint): resolve eslint error --- .eslintrc.js | 8 ++++++++ build/plugins/unplugin.ts | 2 +- package.json | 2 +- src/hooks/useAppRouter.ts | 22 +++++++++++----------- src/hooks/useClipBoard.ts | 2 +- src/hooks/useEcharts.ts | 5 ++--- src/router/guard/dynamic.ts | 2 +- src/service/http/handle.ts | 6 +++--- src/service/http/utils.ts | 8 ++++---- src/store/modules/app.ts | 16 ++++++---------- src/store/modules/auth.ts | 20 ++++++++++---------- src/store/modules/route.ts | 8 ++++---- src/store/modules/tab.ts | 12 ++++++------ src/utils/is.ts | 2 +- src/views/plugin/map/components/AMap.vue | 1 - src/views/plugin/map/components/BMap.vue | 1 - 16 files changed, 59 insertions(+), 58 deletions(-) diff --git a/.eslintrc.js b/.eslintrc.js index 0bf1591..4290cc5 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -3,4 +3,12 @@ process.env.ESLINT_TSCONFIG = 'tsconfig.json' module.exports = { extends: '@chansee97/eslint-config-vue', + rules: { + '@typescript-eslint/no-unsafe-call': 'off', + '@typescript-eslint/no-unsafe-assignment': 'off', + '@typescript-eslint/no-unsafe-member-access': 'off', + '@typescript-eslint/no-unsafe-argument': 'off', + '@typescript-eslint/no-unsafe-return': 'off', + '@typescript-eslint/restrict-template-expressions': 'off', + }, } diff --git a/build/plugins/unplugin.ts b/build/plugins/unplugin.ts index 9f10f5a..a27e3c5 100644 --- a/build/plugins/unplugin.ts +++ b/build/plugins/unplugin.ts @@ -10,7 +10,7 @@ import { createSvgIconsPlugin } from 'vite-plugin-svg-icons' // https://github.c export default [ AutoImport({ - imports: ['vue', 'vue-router', 'pinia'], + imports: ['vue', 'vue-router', 'pinia', '@vueuse/core'], include: [ /\.[tj]sx?$/, /\.vue$/, diff --git a/package.json b/package.json index 1b77599..feddbe7 100644 --- a/package.json +++ b/package.json @@ -41,7 +41,7 @@ "dev:prod": "vite --mode production", "build": "vue-tsc --noEmit && vite build", "preview": "vite preview", - "lint": "eslint --fix", + "lint": "eslint . --fix", "prepare": "husky install", "commit": "cz", "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md" diff --git a/src/hooks/useAppRouter.ts b/src/hooks/useAppRouter.ts index 65c4cdc..1b4fea0 100644 --- a/src/hooks/useAppRouter.ts +++ b/src/hooks/useAppRouter.ts @@ -11,13 +11,13 @@ export function useAppRouter(isSetup = true) { const route = router.currentRoute /* 路由跳转方法 */ - function routerPush(to: RouteLocationRaw) { - router.push(to) + async function routerPush(to: RouteLocationRaw) { + await router.push(to) } /* 路由跳转方法 */ - function routerReplace(to: RouteLocationRaw) { - router.replace(to) + async function routerReplace(to: RouteLocationRaw) { + await router.replace(to) } /* 前进后退方法 */ @@ -26,25 +26,25 @@ export function useAppRouter(isSetup = true) { } /* 跳转根页方法 */ - function toRoot() { - routerPush({ path: '/appRoot' }) + async function toRoot() { + await routerPush({ path: '/appRoot' }) } /* 跳转至登录页 */ - function toLogin(redirectUrl?: string) { + async function toLogin(redirectUrl?: string) { const redirect = redirectUrl || route.value.fullPath const targetUrl = { name: 'login', query: { redirect }, } - routerPush(targetUrl) + await routerPush(targetUrl) } /* 跳转重定向方法 */ - function toLoginRedirect() { + async function toLoginRedirect() { const { query } = route.value if (query?.redirect) - routerPush(query.redirect as string) + await routerPush(query.redirect as string) else - toRoot() + await toRoot() } return { diff --git a/src/hooks/useClipBoard.ts b/src/hooks/useClipBoard.ts index a98accc..2f4d05f 100644 --- a/src/hooks/useClipBoard.ts +++ b/src/hooks/useClipBoard.ts @@ -2,7 +2,7 @@ export function useClipBoard() { function isSupport() { return !navigator.clipboard } - async function copy(text: string) { + function copy(text: string) { if (isSupport()) return window.$message?.error('当前浏览器不支持复制!') diff --git a/src/hooks/useEcharts.ts b/src/hooks/useEcharts.ts index 5f574cf..a7e723c 100644 --- a/src/hooks/useEcharts.ts +++ b/src/hooks/useEcharts.ts @@ -30,7 +30,6 @@ import { import { LabelLayout, UniversalTransition } from 'echarts/features' import { CanvasRenderer } from 'echarts/renderers' -import { useElementSize } from '@vueuse/core' import { useAppStore } from '@/store' // 通过 ComposeOption 来组合出一个只有必须组件和图表的 Option 类型 @@ -109,7 +108,7 @@ export function useEcharts(options: Ref) { chart?.dispose() chart = null } - const sizeWatch = watch([width, height], ([newWidth, newHeight]) => { + const sizeWatch = watch([width, height], async ([newWidth, newHeight]) => { initialSize.width = newWidth initialSize.height = newHeight if (newWidth === 0 && newHeight === 0) { @@ -120,7 +119,7 @@ export function useEcharts(options: Ref) { return if (isRendered()) resize() - else render() + else await render() }) const OptionWatch = watch(options, (newValue) => { diff --git a/src/router/guard/dynamic.ts b/src/router/guard/dynamic.ts index 8ec7a90..216cddd 100644 --- a/src/router/guard/dynamic.ts +++ b/src/router/guard/dynamic.ts @@ -49,7 +49,7 @@ function createCatheRoutes(routes: AppRoute.Route[]) { }) .map(item => item.name) } -export async function createDynamicRoutes(routes: AppRoute.Route[]) { +export function createDynamicRoutes(routes: AppRoute.Route[]) { /* 复制一层 */ let resultRouter = JSON.parse(JSON.stringify(routes)) /* 设置路由重定向到子级第一个 */ diff --git a/src/service/http/handle.ts b/src/service/http/handle.ts index 36490af..9c8e231 100644 --- a/src/service/http/handle.ts +++ b/src/service/http/handle.ts @@ -102,7 +102,7 @@ export function handleBusinessError(data: Record, config: Service.B * @param {Service} error * @return {*} result */ -export async function handleServiceResult(data: any, error: Service.RequestError | null) { +export function handleServiceResult(data: any, error: Service.RequestError | null) { if (error) { const fail: Service.FailedResult = { error, @@ -123,7 +123,7 @@ export async function handleServiceResult(data: any, error: Service.Req * @return {*} */ export async function handleRefreshToken(config: AxiosRequestConfig) { - const { resetAuthStore } = useAuthStore() + const authStore = useAuthStore() const refreshToken = local.get('refreshToken') const { data } = await fetchUpdateToken(refreshToken) if (data) { @@ -136,6 +136,6 @@ export async function handleRefreshToken(config: AxiosRequestConfig) { return config } - resetAuthStore() + await authStore.resetAuthStore() return null } diff --git a/src/service/http/utils.ts b/src/service/http/utils.ts index bc1f0e1..432b7f8 100644 --- a/src/service/http/utils.ts +++ b/src/service/http/utils.ts @@ -16,7 +16,7 @@ export function showError(error: Service.RequestError) { * @param requestData - 请求数据 * @param contentType - 请求头的Content-Type */ -export async function transformRequestData( +export function transformRequestData( requestData: any, contentType?: UnionKey.ContentType, ) { @@ -29,16 +29,16 @@ export async function transformRequestData( // form-data类型转换 if (contentType === 'multipart/form-data') - data = await handleFormData(data) + data = handleFormData(data) return data } -async function handleFormData(data: Record) { +function handleFormData(data: Record) { const formData = new FormData() const entries = Object.entries(data) - entries.forEach(async ([key, value]) => { + entries.forEach(([key, value]) => { const isFileType = isFile(value) || (isArray(value) && value.length && isFile(value[0])) diff --git a/src/store/modules/app.ts b/src/store/modules/app.ts index 8aa9853..9de1ea0 100644 --- a/src/store/modules/app.ts +++ b/src/store/modules/app.ts @@ -21,12 +21,14 @@ interface AppStatus { const docEle = document.documentElement +const { isFullscreen, toggle } = useFullscreen(docEle) + export const useAppStore = defineStore('app-store', { state: (): AppStatus => { return { footerText: 'Copyright ©2023 Ench Admin', collapsed: false, - fullScreen: false, + fullScreen: isFullscreen.value, darkMode: false, grayMode: false, colorWeak: false, @@ -47,15 +49,9 @@ export const useAppStore = defineStore('app-store', { this.collapsed = !this.collapsed }, /* 切换全屏 */ - toggleFullScreen() { - if (!document.fullscreenElement) { - this.fullScreen = true - document.documentElement.requestFullscreen() - } - else if (document.exitFullscreen) { - this.fullScreen = false - document.exitFullscreen() - } + async toggleFullScreen() { + this.fullScreen = isFullscreen.value + await toggle() }, /* 切换主题 亮/深色 */ toggleDarkMode() { diff --git a/src/store/modules/auth.ts b/src/store/modules/auth.ts index 2b241f5..6547dfa 100644 --- a/src/store/modules/auth.ts +++ b/src/store/modules/auth.ts @@ -4,6 +4,7 @@ import { router } from '@/router' import { useAppRouter } from '@/hooks' import { local } from '@/utils' +const routeStore = useRouteStore() const emptyInfo: Auth.UserInfo = { userId: 0, userName: '', @@ -28,17 +29,16 @@ export const useAuthStore = defineStore('auth-store', { }, actions: { /* 登录退出,重置用户信息等 */ - resetAuthStore() { + async resetAuthStore() { const route = unref(router.currentRoute) const { toLogin } = useAppRouter(false) - const { resetRouteStore } = useRouteStore() // 清除本地缓存 this.clearAuthStorage() // 清空路由、菜单等数据 - resetRouteStore() + routeStore.resetRouteStore() this.$reset() if (route.meta.requiresAuth) - toLogin() + await toLogin() }, clearAuthStorage() { local.remove('token') @@ -66,14 +66,14 @@ export const useAuthStore = defineStore('auth-store', { const catchSuccess = await this.catchUserInfo(data) // 添加路由和菜单 - const { initAuthRoute } = useRouteStore() - await initAuthRoute() + // const { initAuthRoute } = useRouteStore() + await routeStore.initAuthRoute() // 登录写入信息成功 if (catchSuccess) { // 进行重定向跳转 const { toLoginRedirect } = useAppRouter(false) - toLoginRedirect() + await toLoginRedirect() // 触发用户提示 window.$notification?.success({ @@ -84,7 +84,7 @@ export const useAuthStore = defineStore('auth-store', { return } // 如果不成功则重置存储 - this.resetAuthStore() + await this.resetAuthStore() }, /* 缓存用户信息 */ @@ -107,8 +107,8 @@ export const useAuthStore = defineStore('auth-store', { return catchSuccess }, - toggleUserRole(role: Auth.RoleType) { - this.login(role, '123456') + async toggleUserRole(role: Auth.RoleType) { + await this.login(role, '123456') }, }, }) diff --git a/src/store/modules/route.ts b/src/store/modules/route.ts index f5eebc3..cf04cdc 100644 --- a/src/store/modules/route.ts +++ b/src/store/modules/route.ts @@ -160,16 +160,16 @@ export const useRouteStore = defineStore('route-store', { if (!routes) return // 根据用户返回的路由表来生成真实路由 - const appRoutes = await createDynamicRoutes(routes) + const appRoutes = createDynamicRoutes(routes) // 生成侧边菜单 this.createMenus(routes) // 插入路由表 router.addRoute(appRoutes) }, /* 初始化静态路由 */ - async initStaticRoute() { + initStaticRoute() { // 根据静态路由表来生成真实路由 - const appRoutes = await createDynamicRoutes(staticRoutes) + const appRoutes = createDynamicRoutes(staticRoutes) // 生成侧边菜单 this.createMenus(staticRoutes) // 插入路由表 @@ -180,7 +180,7 @@ export const useRouteStore = defineStore('route-store', { this.isInitAuthRoute = false if (this.authRouteMode === 'dynamic') await this.initDynamicRoute() - else await this.initStaticRoute() + else this.initStaticRoute() this.isInitAuthRoute = true }, diff --git a/src/store/modules/tab.ts b/src/store/modules/tab.ts index 919dbd5..ebc21d8 100644 --- a/src/store/modules/tab.ts +++ b/src/store/modules/tab.ts @@ -49,7 +49,7 @@ export const useTabStore = defineStore('tab-store', { this.tabs.push(route) }, - closeTab(name: string) { + async closeTab(name: string) { const { routerPush, toRoot } = useAppRouter(false) const tabsLength = this.tabs.length // 如果动态标签大于一个,才会标签跳转 @@ -60,11 +60,11 @@ export const useTabStore = defineStore('tab-store', { // 如果是关闭的当前页面,路由跳转到原先标签的后一个标签 if (this.currentTab === name && !isLast) { // 跳转到后一个标签 - routerPush(this.tabs[index + 1].path) + await routerPush(this.tabs[index + 1].path) } else if (this.currentTab === name && isLast) { // 已经是最后一个了,就跳转前一个 - routerPush(this.tabs[index - 1].path) + await routerPush(this.tabs[index - 1].path) } } // 删除标签 @@ -73,7 +73,7 @@ export const useTabStore = defineStore('tab-store', { }) // 删除后如果清空了,就跳转到默认首页 if (tabsLength - 1 === 0) - toRoot() + await toRoot() }, closeOtherTabs(name: string) { @@ -88,10 +88,10 @@ export const useTabStore = defineStore('tab-store', { const index = this.getTabIndex(name) this.tabs = this.tabs.filter((item, i) => i <= index) }, - closeAllTabs() { + async closeAllTabs() { const { toRoot } = useAppRouter(false) this.tabs.length = 0 - toRoot() + await toRoot() }, hasExistTab(name: string) { diff --git a/src/utils/is.ts b/src/utils/is.ts index 79b2813..4e800da 100644 --- a/src/utils/is.ts +++ b/src/utils/is.ts @@ -1,4 +1,4 @@ -const toString = Object.prototype.toString +const toString = Object.prototype.toString.bind({}) export function is(val: unknown, type: string) { return toString.call(val) === `[object ${type}]` diff --git a/src/views/plugin/map/components/AMap.vue b/src/views/plugin/map/components/AMap.vue index 3d9c4e8..b4ee420 100644 --- a/src/views/plugin/map/components/AMap.vue +++ b/src/views/plugin/map/components/AMap.vue @@ -1,5 +1,4 @@