mirror of
https://gitee.com/h_mo/uniapp-vue3-vite-ts-template
synced 2025-04-05 06:12:44 +08:00
30 lines
834 B
TypeScript
30 lines
834 B
TypeScript
import type { CreateStorageParams } from './storageCache';
|
|
import { cacheCipher, DEFAULT_CACHE_TIME, DEFAULT_PREFIX_KEY, enableStorageEncryption } from '@/settings/encryptionSetting';
|
|
import { createStorage } from './storageCache';
|
|
|
|
const options: Partial<CreateStorageParams> = {
|
|
prefixKey: DEFAULT_PREFIX_KEY,
|
|
key: cacheCipher.key,
|
|
iv: cacheCipher.iv,
|
|
hasEncrypt: enableStorageEncryption,
|
|
timeout: DEFAULT_CACHE_TIME,
|
|
};
|
|
|
|
export const storage = createStorage(options);
|
|
|
|
export function setCache(key: string, value: any, expire?: number | null): void {
|
|
storage.set(key, value, expire);
|
|
}
|
|
|
|
export function getCache<T = any>(key: string): T {
|
|
return storage.get<T>(key);
|
|
}
|
|
|
|
export function removeCache(key: string): void {
|
|
return storage.remove(key);
|
|
}
|
|
|
|
export function clearCache(): void {
|
|
return storage.clear();
|
|
}
|