mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-04-05 04:22:49 +08:00
refactor: remove config fold
This commit is contained in:
parent
9b3e3d2113
commit
792fa106ac
@ -1,5 +1,21 @@
|
||||
import type { ProxyOptions } from 'vite'
|
||||
|
||||
/** 不同请求服务的环境配置 */
|
||||
export const proxyConfig: Record<ServiceEnvType, ServiceEnvConfig> = {
|
||||
dev: {
|
||||
url: 'http://localhost:3000',
|
||||
urlPattern: '/url-pattern',
|
||||
},
|
||||
test: {
|
||||
url: 'http://localhost:8080',
|
||||
urlPattern: '/url-pattern',
|
||||
},
|
||||
prod: {
|
||||
url: 'http://localhost:8080',
|
||||
urlPattern: '/url-pattern',
|
||||
},
|
||||
}
|
||||
|
||||
/**
|
||||
* @description: 生成vite代理字段
|
||||
* @param {*} envConfig - 环境变量配置
|
||||
|
@ -1,15 +0,0 @@
|
||||
/** 不同请求服务的环境配置 */
|
||||
export const proxyConfig: Record<ServiceEnvType, ServiceEnvConfig> = {
|
||||
dev: {
|
||||
url: 'http://localhost:3000',
|
||||
urlPattern: '/url-pattern',
|
||||
},
|
||||
test: {
|
||||
url: 'http://localhost:8080',
|
||||
urlPattern: '/url-pattern',
|
||||
},
|
||||
prod: {
|
||||
url: 'http://localhost:8080',
|
||||
urlPattern: '/url-pattern',
|
||||
},
|
||||
}
|
@ -1,3 +0,0 @@
|
||||
export * from './sdk'
|
||||
export * from './env'
|
||||
export * from './system'
|
@ -1,5 +0,0 @@
|
||||
/* 高德地图开发SDk */
|
||||
export const GAODE_MAP_SDK_URL = 'https://webapi.amap.com/maps?v=2.0&key=85e62187c6f8e51c797c87b1f36f787a'
|
||||
/* 百度地图开发SDk */
|
||||
export const BAIDU_MAP_SDK_URL
|
||||
= 'https://api.map.baidu.com/getscript?v=3.0&ak=MwqQwPxa5ipusyNmH1WT62y5DKhYxIgb&services=&t=20220816154130'
|
@ -1,11 +0,0 @@
|
||||
/** 本地存储前缀 */
|
||||
export const STORAGE_PREFIX = ''
|
||||
|
||||
/* 开启本地存储加密 */
|
||||
export const STORAGE_ENCRYPT = false
|
||||
|
||||
/** 本地存储加密密钥 */
|
||||
export const STORAGE_ENCRYPT_SECRET = '__CryptoJS_Secret__'
|
||||
|
||||
/** 本地存储缓存时长 */
|
||||
export const STORAGE_DEFAULT_CACHE_TIME = 60 * 60 * 24 * 7
|
@ -1,5 +1,5 @@
|
||||
import { createAlovaInstance } from './alova'
|
||||
import { proxyConfig } from '@/config'
|
||||
import { proxyConfig } from '@/../build/proxy'
|
||||
|
||||
const { url, urlPattern } = proxyConfig[import.meta.env.MODE]
|
||||
|
||||
|
@ -1,36 +0,0 @@
|
||||
import CryptoJS from 'crypto-js'
|
||||
import { isObject } from './is'
|
||||
import { STORAGE_ENCRYPT, STORAGE_ENCRYPT_SECRET } from '@/config'
|
||||
|
||||
/**
|
||||
* 加密数据
|
||||
* @param data - 数据
|
||||
*/
|
||||
export function encrypto(data: any) {
|
||||
let newData = data
|
||||
|
||||
if (isObject(data))
|
||||
newData = JSON.stringify(data)
|
||||
|
||||
if (!STORAGE_ENCRYPT)
|
||||
return newData
|
||||
|
||||
return CryptoJS.AES.encrypt(newData, STORAGE_ENCRYPT_SECRET).toString()
|
||||
}
|
||||
|
||||
/**
|
||||
* 解密数据
|
||||
* @param cipherText - 密文
|
||||
*/
|
||||
export function decrypto(cipherText: string) {
|
||||
if (!STORAGE_ENCRYPT)
|
||||
return JSON.parse(cipherText)
|
||||
|
||||
const bytes = CryptoJS.AES.decrypt(cipherText, STORAGE_ENCRYPT_SECRET)
|
||||
const originalText = bytes.toString(CryptoJS.enc.Utf8)
|
||||
|
||||
if (originalText)
|
||||
return JSON.parse(originalText)
|
||||
|
||||
return null
|
||||
}
|
@ -1,7 +1,4 @@
|
||||
import { decrypto, encrypto } from './crypto'
|
||||
|
||||
// 读取缓存前缀
|
||||
import { STORAGE_DEFAULT_CACHE_TIME, STORAGE_PREFIX } from '@/config'
|
||||
const STORAGE_PREFIX = 'nova_'
|
||||
|
||||
interface StorageData<T> {
|
||||
value: T
|
||||
@ -13,12 +10,12 @@ interface StorageData<T> {
|
||||
function createLocalStorage<T extends Storage.Local>() {
|
||||
// 默认缓存期限为7天
|
||||
|
||||
function set<K extends keyof T>(key: K, value: T[K], expire: number = STORAGE_DEFAULT_CACHE_TIME) {
|
||||
function set<K extends keyof T>(key: K, value: T[K], expire: number = 60 * 60 * 24 * 7) {
|
||||
const storageData: StorageData<T[K]> = {
|
||||
value,
|
||||
expire: new Date().getTime() + expire * 1000,
|
||||
}
|
||||
const json = encrypto(storageData)
|
||||
const json = JSON.stringify(storageData)
|
||||
window.localStorage.setItem(`${STORAGE_PREFIX}${String(key)}`, json)
|
||||
}
|
||||
|
||||
@ -27,13 +24,7 @@ function createLocalStorage<T extends Storage.Local>() {
|
||||
if (!json)
|
||||
return null
|
||||
|
||||
let storageData: StorageData<T[K]> | null = null
|
||||
try {
|
||||
storageData = decrypto(json)
|
||||
}
|
||||
catch {
|
||||
// 防止解析失败
|
||||
}
|
||||
const storageData: StorageData<T[K]> | null = JSON.parse(json)
|
||||
|
||||
if (storageData) {
|
||||
const { value, expire } = storageData
|
||||
@ -64,7 +55,7 @@ function createLocalStorage<T extends Storage.Local>() {
|
||||
|
||||
function createSessionStorage<T extends Storage.Session>() {
|
||||
function set<K extends keyof T>(key: K, value: T[K]) {
|
||||
const json = encrypto(value)
|
||||
const json = JSON.stringify(value)
|
||||
window.sessionStorage.setItem(`${STORAGE_PREFIX}${String(key)}`, json)
|
||||
}
|
||||
function get<K extends keyof T>(key: K) {
|
||||
@ -72,13 +63,7 @@ function createSessionStorage<T extends Storage.Session>() {
|
||||
if (!json)
|
||||
return null
|
||||
|
||||
let storageData: T[K] | null = null
|
||||
try {
|
||||
storageData = decrypto(json)
|
||||
}
|
||||
catch {
|
||||
// 防止解析失败
|
||||
}
|
||||
const storageData: T[K] | null = JSON.parse(json)
|
||||
|
||||
if (storageData)
|
||||
return storageData
|
||||
|
@ -1,7 +1,5 @@
|
||||
<script setup lang="ts">
|
||||
import { GAODE_MAP_SDK_URL } from '@/config'
|
||||
|
||||
const { load } = useScriptTag(GAODE_MAP_SDK_URL)
|
||||
const { load } = useScriptTag('https://webapi.amap.com/maps?v=2.0&key=85e62187c6f8e51c797c87b1f36f787a')
|
||||
/* https://lbs.amap.com/api/jsapi-v2/summary 高德地图开发文档 */
|
||||
|
||||
onMounted(() => {
|
||||
|
@ -1,7 +1,5 @@
|
||||
<script setup lang="ts">
|
||||
import { BAIDU_MAP_SDK_URL } from '@/config'
|
||||
|
||||
const { load } = useScriptTag(BAIDU_MAP_SDK_URL)
|
||||
const { load } = useScriptTag('https://api.map.baidu.com/getscript?v=3.0&ak=MwqQwPxa5ipusyNmH1WT62y5DKhYxIgb&services=&t=20220816154130')
|
||||
/* https://lbsyun.baidu.com/index.php?title=jspopular3.0 百度地图开发者文档 */
|
||||
|
||||
onMounted(() => {
|
||||
|
@ -2,8 +2,7 @@ import { resolve } from 'node:path'
|
||||
import type { ConfigEnv } from 'vite'
|
||||
import { defineConfig, loadEnv } from 'vite'
|
||||
import { createVitePlugins } from './build/plugins'
|
||||
import { createViteProxy } from './build/proxy'
|
||||
import { proxyConfig } from './src/config'
|
||||
import { createViteProxy, proxyConfig } from './build/proxy'
|
||||
|
||||
// https://vitejs.dev/config/
|
||||
export default defineConfig(({ mode }: ConfigEnv) => {
|
||||
|
Loading…
x
Reference in New Issue
Block a user