refactor: remove config fold

This commit is contained in:
chansee97 2024-03-16 00:29:54 +08:00
parent 9b3e3d2113
commit 792fa106ac
11 changed files with 26 additions and 100 deletions

View File

@ -1,5 +1,21 @@
import type { ProxyOptions } from 'vite' 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代理字段 * @description: vite代理字段
* @param {*} envConfig - * @param {*} envConfig -

View File

@ -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',
},
}

View File

@ -1,3 +0,0 @@
export * from './sdk'
export * from './env'
export * from './system'

View File

@ -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'

View File

@ -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

View File

@ -1,5 +1,5 @@
import { createAlovaInstance } from './alova' import { createAlovaInstance } from './alova'
import { proxyConfig } from '@/config' import { proxyConfig } from '@/../build/proxy'
const { url, urlPattern } = proxyConfig[import.meta.env.MODE] const { url, urlPattern } = proxyConfig[import.meta.env.MODE]

View File

@ -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
}

View File

@ -1,7 +1,4 @@
import { decrypto, encrypto } from './crypto' const STORAGE_PREFIX = 'nova_'
// 读取缓存前缀
import { STORAGE_DEFAULT_CACHE_TIME, STORAGE_PREFIX } from '@/config'
interface StorageData<T> { interface StorageData<T> {
value: T value: T
@ -13,12 +10,12 @@ interface StorageData<T> {
function createLocalStorage<T extends Storage.Local>() { function createLocalStorage<T extends Storage.Local>() {
// 默认缓存期限为7天 // 默认缓存期限为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]> = { const storageData: StorageData<T[K]> = {
value, value,
expire: new Date().getTime() + expire * 1000, expire: new Date().getTime() + expire * 1000,
} }
const json = encrypto(storageData) const json = JSON.stringify(storageData)
window.localStorage.setItem(`${STORAGE_PREFIX}${String(key)}`, json) window.localStorage.setItem(`${STORAGE_PREFIX}${String(key)}`, json)
} }
@ -27,13 +24,7 @@ function createLocalStorage<T extends Storage.Local>() {
if (!json) if (!json)
return null return null
let storageData: StorageData<T[K]> | null = null const storageData: StorageData<T[K]> | null = JSON.parse(json)
try {
storageData = decrypto(json)
}
catch {
// 防止解析失败
}
if (storageData) { if (storageData) {
const { value, expire } = storageData const { value, expire } = storageData
@ -64,7 +55,7 @@ function createLocalStorage<T extends Storage.Local>() {
function createSessionStorage<T extends Storage.Session>() { function createSessionStorage<T extends Storage.Session>() {
function set<K extends keyof T>(key: K, value: T[K]) { 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) window.sessionStorage.setItem(`${STORAGE_PREFIX}${String(key)}`, json)
} }
function get<K extends keyof T>(key: K) { function get<K extends keyof T>(key: K) {
@ -72,13 +63,7 @@ function createSessionStorage<T extends Storage.Session>() {
if (!json) if (!json)
return null return null
let storageData: T[K] | null = null const storageData: T[K] | null = JSON.parse(json)
try {
storageData = decrypto(json)
}
catch {
// 防止解析失败
}
if (storageData) if (storageData)
return storageData return storageData

View File

@ -1,7 +1,5 @@
<script setup lang="ts"> <script setup lang="ts">
import { GAODE_MAP_SDK_URL } from '@/config' const { load } = useScriptTag('https://webapi.amap.com/maps?v=2.0&key=85e62187c6f8e51c797c87b1f36f787a')
const { load } = useScriptTag(GAODE_MAP_SDK_URL)
/* https://lbs.amap.com/api/jsapi-v2/summary 高德地图开发文档 */ /* https://lbs.amap.com/api/jsapi-v2/summary 高德地图开发文档 */
onMounted(() => { onMounted(() => {

View File

@ -1,7 +1,5 @@
<script setup lang="ts"> <script setup lang="ts">
import { BAIDU_MAP_SDK_URL } from '@/config' const { load } = useScriptTag('https://api.map.baidu.com/getscript?v=3.0&ak=MwqQwPxa5ipusyNmH1WT62y5DKhYxIgb&services=&t=20220816154130')
const { load } = useScriptTag(BAIDU_MAP_SDK_URL)
/* https://lbsyun.baidu.com/index.php?title=jspopular3.0 百度地图开发者文档 */ /* https://lbsyun.baidu.com/index.php?title=jspopular3.0 百度地图开发者文档 */
onMounted(() => { onMounted(() => {

View File

@ -2,8 +2,7 @@ import { resolve } from 'node:path'
import type { ConfigEnv } from 'vite' import type { ConfigEnv } from 'vite'
import { defineConfig, loadEnv } from 'vite' import { defineConfig, loadEnv } from 'vite'
import { createVitePlugins } from './build/plugins' import { createVitePlugins } from './build/plugins'
import { createViteProxy } from './build/proxy' import { createViteProxy, proxyConfig } from './build/proxy'
import { proxyConfig } from './src/config'
// https://vitejs.dev/config/ // https://vitejs.dev/config/
export default defineConfig(({ mode }: ConfigEnv) => { export default defineConfig(({ mode }: ConfigEnv) => {