1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
| /**
| * 配置浏览器本地存储的方式,可直接存储对象数组。
| */
|
| import WebStorageCache from 'web-storage-cache'
|
| type CacheType = 'localStorage' | 'sessionStorage'
|
| export const CACHE_KEY = {
| // 用户相关
| ROLE_ROUTERS: 'roleRouters',
| USER: 'user',
| // 系统设置
| IS_DARK: 'isDark',
| LANG: 'lang',
| THEME: 'theme',
| LAYOUT: 'layout',
| DICT_CACHE: 'dictCache',
| // 登录表单
| LoginForm: 'loginForm',
| TenantId: 'tenantId'
| }
|
| export const useCache = (type: CacheType = 'localStorage') => {
| const wsCache: WebStorageCache = new WebStorageCache({
| storage: type
| })
|
| return {
| wsCache
| }
| }
|
| export const deleteUserCache = () => {
| const { wsCache } = useCache()
| wsCache.delete(CACHE_KEY.USER)
| wsCache.delete(CACHE_KEY.ROLE_ROUTERS)
| // 注意,不要清理 LoginForm 登录表单
| }
|
|