ci(config): 整理全局配置内容

This commit is contained in:
Coffee-crocodile 2023-03-27 11:23:19 +08:00
parent d0108abc9e
commit b8cf5dc13c
17 changed files with 59 additions and 79 deletions

4
.env
View File

@ -2,10 +2,12 @@
VITE_BASE_URL=/ VITE_BASE_URL=/
# 项目名称 # 项目名称
VITE_APP_NAME=EnchAdmin VITE_APP_NAME=EnchAdmin
VITE_APP_TITLE=Ench管理系统 VITE_APP_TITLE=Ench管理系统
VITE_APP_DESC=EnchAdmin是一个中后台管理系统模版 VITE_APP_DESC=EnchAdmin是一个中后台管理系统模版
# 路由模式 # 路由模式
VITE_HASH_ROUTE = N VITE_ROUTE_MODE = web
# 权限路由模式: static dynamic # 权限路由模式: static dynamic
VITE_AUTH_ROUTE_MODE=dynamic VITE_AUTH_ROUTE_MODE=dynamic

View File

@ -1,3 +1,3 @@
VITE_HTTP_PROXY=N VITE_HTTP_PROXY=false
# 开启localStorage内容加密 # 开启localStorage内容加密
VITE_STORAGE_ENCRYPT=N VITE_STORAGE_ENCRYPT=false

View File

@ -1,11 +1,11 @@
# 是否开启压缩资源 # 是否开启压缩资源
VITE_COMPRESS_OPEN=N VITE_COMPRESS_OPEN=false
# 压缩算法 gzip | brotliCompress | deflate | deflateRaw # 压缩算法 gzip | brotliCompress | deflate | deflateRaw
VITE_COMPRESS_TYPE=gzip VITE_COMPRESS_TYPE=gzip
# 是否开启打包依赖分析 # 是否开启打包依赖分析
VITE_VISUALIZER=N VITE_VISUALIZER=false
# 开启localStorage内容加密 # 开启localStorage内容加密
VITE_STORAGE_ENCRYPT=Y VITE_STORAGE_ENCRYPT=false

View File

@ -1,15 +1,10 @@
{ {
//
"editor.tabSize": 2, "editor.tabSize": 2,
// eslint "editor.formatOnSave": false,
"eslint.format.enable": false,
"editor.codeActionsOnSave": { "editor.codeActionsOnSave": {
"source.fixAll.eslint": true "source.fixAll.eslint": true
}, },
"eslint.format.enable": true,
//
"eslint.validate": ["typescript", "javascript", "vue", "html"], "eslint.validate": ["typescript", "javascript", "vue", "html"],
//
"eslint.options": { "configFile": ".eslintrc.js" }, "eslint.options": { "configFile": ".eslintrc.js" },
//
"editor.formatOnSave": false,
} }

View File

@ -14,11 +14,11 @@ import mock from './mock';
export function setVitePlugins(env: ImportMetaEnv) { export function setVitePlugins(env: ImportMetaEnv) {
const plugins = [...vue, unocss(), ...unplugin, mock]; const plugins = [...vue, unocss(), ...unplugin, mock];
// 是否压缩 // 是否压缩
if (env.VITE_COMPRESS_OPEN === 'Y') { if (env.VITE_COMPRESS_OPEN) {
plugins.push(compress(env)); plugins.push(compress(env));
} }
// 是否依赖分析 // 是否依赖分析
if (env.VITE_VISUALIZER === 'Y') { if (env.VITE_VISUALIZER) {
plugins.push(visualizer as PluginOption); plugins.push(visualizer as PluginOption);
} }
return plugins; return plugins;

View File

@ -28,7 +28,7 @@
} }
}, },
"lint-staged": { "lint-staged": {
"./src/**/*.{vue,js,jsx,ts,tsx,json}": "eslint --fix" "*.{vue,js,jsx,ts,tsx,json}": "eslint --fix"
}, },
"dependencies": { "dependencies": {
"@vueuse/core": "^9.13.0", "@vueuse/core": "^9.13.0",

View File

@ -1,8 +1,5 @@
/** 请求服务的环境配置 */
type ServiceEnv = Record<ServiceEnvType, ServiceEnvConfig>;
/** 不同请求服务的环境配置 */ /** 不同请求服务的环境配置 */
const serviceEnv: ServiceEnv = { export const proxyConfig: Record<ServiceEnvType, ServiceEnvConfig> = {
development: { development: {
url: 'https://mock.mengxuegu.com/mock/61e4df7c17249f68847fc191/api', url: 'https://mock.mengxuegu.com/mock/61e4df7c17249f68847fc191/api',
urlPattern: '/url-pattern', urlPattern: '/url-pattern',
@ -21,14 +18,4 @@ const serviceEnv: ServiceEnv = {
secondUrl: 'http://localhost:8081', secondUrl: 'http://localhost:8081',
secondUrlPattern: '/second-url-pattern', secondUrlPattern: '/second-url-pattern',
}, },
}; };
/**
*
* @param env
*/
export function getServiceEnvConfig(mode: ServiceEnvType = 'development') {
const config = serviceEnv[mode];
return config;
}

View File

@ -3,10 +3,10 @@ import { createRouter, createWebHistory, createWebHashHistory, RouteRecordRaw }
import { setupRouterGuard } from './guard'; import { setupRouterGuard } from './guard';
import { routes } from './routes'; import { routes } from './routes';
const { VITE_HASH_ROUTE = 'N', VITE_BASE_URL } = import.meta.env; const { VITE_ROUTE_MODE = 'hash', VITE_BASE_URL } = import.meta.env;
export const router = createRouter({ export const router = createRouter({
history: VITE_HASH_ROUTE === 'Y' ? createWebHashHistory(VITE_BASE_URL) : createWebHistory(VITE_BASE_URL), history: VITE_ROUTE_MODE === 'hash' ? createWebHashHistory(VITE_BASE_URL) : createWebHistory(VITE_BASE_URL),
routes, routes,
}); });
// 安装vue路由 // 安装vue路由
export async function setupRouter(app: App) { export async function setupRouter(app: App) {

View File

@ -1,9 +1,9 @@
import { getServiceEnvConfig } from '@/config'; import { proxyConfig } from '@/config';
import { createRequest } from './request'; import { createRequest } from './request';
const { url, urlPattern } = getServiceEnvConfig(import.meta.env.MODE); const { url, urlPattern } = proxyConfig[import.meta.env.MODE];
const isHttpProxy = import.meta.env.VITE_HTTP_PROXY === 'Y'; const isHttpProxy = import.meta.env.VITE_HTTP_PROXY || false;
export const request = createRequest({ baseURL: isHttpProxy ? urlPattern : url }); export const request = createRequest({ baseURL: isHttpProxy ? urlPattern : url });

12
src/typings/env.d.ts vendored
View File

@ -25,22 +25,22 @@ interface ImportMetaEnv {
readonly VITE_APP_TITLE: string; readonly VITE_APP_TITLE: string;
readonly VITE_APP_DESC: string; readonly VITE_APP_DESC: string;
/** 开启请求代理 */ /** 开启请求代理 */
readonly VITE_HTTP_PROXY?: 'Y' | 'N'; readonly VITE_HTTP_PROXY?: boolean;
/** 是否开启打包依赖分析 */ /** 是否开启打包依赖分析 */
readonly VITE_VISUALIZER?: 'Y' | 'N'; readonly VITE_VISUALIZER?: boolean;
/** 是否开启打包压缩 */ /** 是否开启打包压缩 */
readonly VITE_COMPRESS_OPEN?: 'Y' | 'N'; readonly VITE_COMPRESS_OPEN?: boolean;
/** 压缩算法类型 */ /** 压缩算法类型 */
readonly VITE_COMPRESS_TYPE?: 'gzip' | 'brotliCompress' | 'deflate' | 'deflateRaw'; readonly VITE_COMPRESS_TYPE?: 'gzip' | 'brotliCompress' | 'deflate' | 'deflateRaw';
/** hash路由模式 */ /** hash路由模式 */
readonly VITE_HASH_ROUTE?: 'Y' | 'N'; readonly VITE_ROUTE_MODE?: 'hash' | 'web';
/** 路由加载模式 */ /** 路由加载模式 */
readonly VITE_AUTH_ROUTE_MODE?: 'static' | 'dynamic'; readonly VITE_AUTH_ROUTE_MODE?: 'static' | 'dynamic';
/** 本地存储内容开启加密 */ /** 本地存储内容开启加密 */
readonly VITE_STORAGE_ENCRYPT?: 'Y' | 'N'; readonly VITE_STORAGE_ENCRYPT?: boolean;
/** 后端服务的环境类型 */ /** 后端服务的环境类型 */
readonly MODE?: ServiceEnvType; readonly MODE: ServiceEnvType;
} }
interface ImportMeta { interface ImportMeta {

View File

@ -7,3 +7,29 @@ interface Window {
declare const AMap: any; declare const AMap: any;
declare const BMap: any; declare const BMap: any;
interface GolbalConfig {
app: {
proxyUrl: Record<ServiceEnvType, ServiceEnvConfig>;
};
}
declare namespace NaiveUI {
type ThemeColor = 'default' | 'error' | 'primary' | 'info' | 'success' | 'warning';
}
declare namespace UnionKey {
/* http请求头content-type类型 */
type ContentType = 'application/json' | 'application/x-www-form-urlencoded' | 'multipart/form-data';
}
declare namespace Storage {
interface Session {
demoKey: string;
}
interface Local {
userInfo: Auth.UserInfo;
token: string;
refreshToken: string;
tabsRoutes: string;
login_account: any;
}
}

View File

@ -1,3 +0,0 @@
declare namespace NaiveUI {
type ThemeColor = 'default' | 'error' | 'primary' | 'info' | 'success' | 'warning';
}

View File

@ -42,11 +42,4 @@ declare namespace Service {
/** 自定义的请求结果 */ /** 自定义的请求结果 */
type RequestResult<T = any> = SuccessResult<T> | FailedResult; type RequestResult<T = any> = SuccessResult<T> | FailedResult;
} }
/** 菜单项配置 */
type GlobalMenuOption = import('naive-ui').MenuOption & {
key: string;
label: string;
icon?: () => import('vue').VNodeChild;
children?: GlobalMenuOption[];
};

View File

@ -1,14 +0,0 @@
declare namespace Storage {
interface Session {
demoKey: string
}
interface Local {
userInfo: Auth.UserInfo;
token: string;
refreshToken: string;
tabsRoutes: string;
login_account:any;
}
}

View File

@ -1,4 +0,0 @@
declare namespace UnionKey {
/* http请求头content-type类型 */
type ContentType = 'application/json' | 'application/x-www-form-urlencoded' | 'multipart/form-data';
}

View File

@ -15,7 +15,7 @@ export function encrypto(data: any) {
newData = JSON.stringify(data); newData = JSON.stringify(data);
} }
if (VITE_STORAGE_ENCRYPT === 'N') { if (VITE_STORAGE_ENCRYPT) {
return newData; return newData;
} }
@ -27,7 +27,7 @@ export function encrypto(data: any) {
* @param cipherText - * @param cipherText -
*/ */
export function decrypto(cipherText: string) { export function decrypto(cipherText: string) {
if (VITE_STORAGE_ENCRYPT === 'N') { if (!VITE_STORAGE_ENCRYPT) {
return JSON.parse(cipherText); return JSON.parse(cipherText);
} }

View File

@ -1,7 +1,7 @@
import { defineConfig, loadEnv, ConfigEnv } from 'vite'; import { defineConfig, loadEnv, ConfigEnv } from 'vite';
import { createViteProxy, setVitePlugins } from './build'; import { createViteProxy, setVitePlugins } from './build';
import { resolve } from 'path'; import { resolve } from 'path';
import { getServiceEnvConfig } from './src/config'; import { proxyConfig } from '@/config';
// 当前执行node命令时文件夹的地址工作目录 // 当前执行node命令时文件夹的地址工作目录
const rootPath: string = resolve(process.cwd()); const rootPath: string = resolve(process.cwd());
@ -14,9 +14,7 @@ export default defineConfig(({ command, mode }: ConfigEnv) => {
// 根据当前工作目录中的 `mode` 加载 .env 文件 // 根据当前工作目录中的 `mode` 加载 .env 文件
// 设置第三个参数为 '' 来加载所有环境变量,而不管是否有 `VITE_` 前缀。 // 设置第三个参数为 '' 来加载所有环境变量,而不管是否有 `VITE_` 前缀。
const env = loadEnv(mode, process.cwd(), '') as unknown as ImportMetaEnv; const env = loadEnv(mode, process.cwd(), '') as unknown as ImportMetaEnv;
const isOpenProxy = env.VITE_HTTP_PROXY === 'Y'; const envConfig = proxyConfig[mode as ServiceEnvType];
const envConfig = getServiceEnvConfig(mode as ServiceEnvType);
return { return {
base: env.VITE_BASE_URL, base: env.VITE_BASE_URL,
@ -31,7 +29,7 @@ export default defineConfig(({ command, mode }: ConfigEnv) => {
host: '0.0.0.0', host: '0.0.0.0',
port: 3000, port: 3000,
open: false, open: false,
proxy: isOpenProxy ? createViteProxy(envConfig) : undefined, proxy: env.VITE_HTTP_PROXY ? createViteProxy(envConfig) : undefined,
}, },
preview: { preview: {
port: 5211, port: 5211,