diff --git a/.eslintrc.cjs b/.eslintrc.cjs index 3af6394f..16c14f94 100644 --- a/.eslintrc.cjs +++ b/.eslintrc.cjs @@ -114,7 +114,7 @@ module.exports = { 'no-multi-assign': 2, // 禁止连续声明变量 'prefer-arrow-callback': 2, // 强制使用箭头函数作为回调 'vue/multi-word-component-names': [ - 'off', + 'error', { ignores: [], }, @@ -136,5 +136,35 @@ module.exports = { allowNamedExports: false, }, ], + 'vue/component-definition-name-casing': ['error', 'PascalCase'], + 'vue/html-closing-bracket-newline': [ + 'error', + { + singleline: 'never', + multiline: 'always', + }, + ], + 'vue/v-on-event-hyphenation': ['error', 'never'], + 'vue/component-tags-order': [ + 'error', + { + order: ['template', 'script', 'style'], + }, + ], + 'vue/no-v-html': ['error'], + 'vue/no-v-text': ['error'], + 'vue/component-api-style': [ + 'error', + ['script-setup', 'composition', 'composition-vue2'], + ], + 'vue/component-name-in-template-casing': [ + 'error', + 'PascalCase', + { + registeredComponentsOnly: true, + globals: ['RouterView'], + }, + ], + 'vue/no-unused-refs': ['error'], }, } diff --git a/CHANGELOG.md b/CHANGELOG.md index 9d4bd3a5..c5be564f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,8 @@ - 新增 Route Meta keepAlive 配置开启页面缓存(可以在 AppConfig APP_KEEP_ALIVE 中进行缓存的配置管理) - 回退使用自动导入路由模块方式,具体使用方法查看 [路由配置](https://github.com/XiaoDaiGua-Ray/ray-template/blob/main/src/router/README.md) - 新增 Route Meta order 配置,配置菜单顺序 +- 新增 useVueRouter 方法,让你在 setup 环境之外使用 router hook +- 补充引入了一些 eslint 规则 - 支持更多 appConfig 配置 ### 补充 diff --git a/components.d.ts b/components.d.ts index 3e725e7c..11f5125e 100644 --- a/components.d.ts +++ b/components.d.ts @@ -7,8 +7,9 @@ export {} declare module '@vue/runtime-core' { export interface GlobalComponents { - RayTransitionComponent: typeof import('./src/components/RayTransitionComponent/index.vue')['default'] + RayTransitionComponent: typeof import('./src/components/RayTransitionComponent/TransitionComponent.vue')['default'] RouterLink: typeof import('vue-router')['RouterLink'] RouterView: typeof import('vue-router')['RouterView'] + TransitionComponent: typeof import('./src/components/RayTransitionComponent/TransitionComponent.vue')['default'] } } diff --git a/src/appConfig/requestConfig.ts b/src/appConfig/requestConfig.ts new file mode 100644 index 00000000..47099502 --- /dev/null +++ b/src/appConfig/requestConfig.ts @@ -0,0 +1,22 @@ +/** + * + * @author Ray + * + * @date 2023-06-02 + * + * @workspace ray-template + * + * @remark 今天也是元气满满撸代码的一天 + */ + +import type { AxiosConfig } from '@/types/appConfig' + +/** axios 相关配置 */ +export const AXIOS_CONFIG: AxiosConfig = { + baseURL: '', // `import.meta.env`, + withCredentials: false, // 是否允许跨域携带 `cookie` + timeout: 5 * 1000, + headers: { + 'Content-Type': 'application/json', + }, +} diff --git a/src/appConfig/routerConfig.ts b/src/appConfig/routerConfig.ts index 237d3189..da455618 100644 --- a/src/appConfig/routerConfig.ts +++ b/src/appConfig/routerConfig.ts @@ -22,3 +22,33 @@ export const viewScrollContainerId = 'rayLayoutContentWrapperScopeSelector' * 可以控制内容区域当前滚动位置 */ export const LAYOUT_CONTENT_REF = ref() + +/** 是否启用路由切换时顶部加载条 */ +export const SETUP_ROUTER_LOADING_BAR = true + +/** 是否启用路由守卫, 如果设置为 false 则不会触发路由切换校验 */ +export const SETUP_ROUTER_GUARD = true + +/** + * + * 路由白名单(不进行权限校验路由) + * + * 路由表单白名单 + * + * 如果需要启用该功能, 则需要配置路由 name 属性, 并且需要一一对应(对大小写敏感) + * 如果未设置, 则不会生效 + * + * 配置该路由白名单列表后, 则不会对配置中的路由列表进行鉴权处理(配合 basic.ts 中的方法进行使用) + * + * 配置动态路由菜单 + * 可以根据权限与白名单进行过滤, 但是 meta hidden 属性拥有最高的控制权限 + * 如果 mete hidden 设置为 false 则永远不会显示菜单选项 + */ +export const WHITE_ROUTES = ['login', 'error-page', 'doc'] + +/** + * + * 超级管理员 + * 配置默认超级管理员, 默认拥有全部最高权限 + */ +export const SUPER_ADMIN = ['admin'] diff --git a/src/axios/canceler.ts b/src/axios/helper/canceler.ts similarity index 100% rename from src/axios/canceler.ts rename to src/axios/helper/canceler.ts diff --git a/src/axios/helper/interceptor.ts b/src/axios/helper/interceptor.ts new file mode 100644 index 00000000..fae3a3a8 --- /dev/null +++ b/src/axios/helper/interceptor.ts @@ -0,0 +1,33 @@ +/** + * + * @author Ray + * + * @date 2023-06-02 + * + * @workspace ray-template + * + * @remark 今天也是元气满满撸代码的一天 + */ + +/** axios 拦截器工具 */ + +import type { RawAxiosRequestHeaders, AxiosRequestConfig } from 'axios' +import type { RequestHeaderOptions } from '../type' + +/** + * + * @param instance axios instance + * @param options axios headers options + * + * @remark 自定义 `axios` 请求头配置 + */ +export const appendRequestHeaders = ( + instance: AxiosRequestConfig, + options: RequestHeaderOptions[], +) => { + const requestHeaders = instance.headers as RawAxiosRequestHeaders + + options.forEach((curr) => { + requestHeaders[curr.key] = curr.value + }) +} diff --git a/src/axios/instance.ts b/src/axios/instance.ts index e7acada1..b4621c79 100644 --- a/src/axios/instance.ts +++ b/src/axios/instance.ts @@ -18,39 +18,15 @@ import axios from 'axios' import { getDetermineEnv } from '@use-utils/hook' -import RequestCanceler from './canceler' +import RequestCanceler from './helper/canceler' +import { AXIOS_CONFIG } from '@/appConfig/requestConfig' +import { appendRequestHeaders } from './helper/interceptor' -import type { RawAxiosRequestHeaders, AxiosRequestConfig } from 'axios' -import type { RequestHeaderOptions, AxiosInstanceExpand } from './type' +import type { AxiosInstanceExpand } from './type' const canceler = new RequestCanceler() -/** - * - * @param instance axios instance - * @param options axios headers options - * - * @remark 自定义 `axios` 请求头配置 - */ -const appendRequestHeaders = ( - instance: AxiosRequestConfig, - options: RequestHeaderOptions[], -) => { - const requestHeaders = instance.headers as RawAxiosRequestHeaders - - options.forEach((curr) => { - requestHeaders[curr.key] = curr.value - }) -} - -const server: AxiosInstanceExpand = axios.create({ - baseURL: '', // `import.meta.env`, - withCredentials: false, // 是否允许跨域携带 `cookie` - timeout: 5 * 1000, - headers: { - 'Content-Type': 'application/json', - }, -}) +const server: AxiosInstanceExpand = axios.create(AXIOS_CONFIG) server.interceptors.request.use( (request) => { diff --git a/src/axios/type.ts b/src/axios/type.ts index e5e5d8bb..22714fd4 100644 --- a/src/axios/type.ts +++ b/src/axios/type.ts @@ -75,7 +75,7 @@ export interface AxiosInstanceExpand extends Axios { config?: AxiosRequestConfig, ): Promise - defaults: Omit & { + defaults: Omit & { headers: HeadersDefaults & { [key: string]: AxiosHeaderValue } diff --git a/src/components/RayTransitionComponent/index.vue b/src/components/RayTransitionComponent/TransitionComponent.vue similarity index 97% rename from src/components/RayTransitionComponent/index.vue rename to src/components/RayTransitionComponent/TransitionComponent.vue index ff7e12c5..de49154b 100644 --- a/src/components/RayTransitionComponent/index.vue +++ b/src/components/RayTransitionComponent/TransitionComponent.vue @@ -1,5 +1,5 @@