refactor: simplify wrapper storage

This commit is contained in:
张传龙 2022-07-01 23:27:05 +08:00
parent 90aa54d4a4
commit 57bc68e7b0
7 changed files with 34 additions and 37 deletions

14
pnpm-lock.yaml generated
View File

@ -30,7 +30,7 @@ specifiers:
vite: ^2.9.9 vite: ^2.9.9
vite-plugin-html: ^3.2.0 vite-plugin-html: ^3.2.0
vite-plugin-mock: ^2.9.6 vite-plugin-mock: ^2.9.6
vite-plugin-vue-setup-extend: ^0.3.0 vite-plugin-vue-setup-extend-plus: ^0.1.0
vue: ^3.2.31 vue: ^3.2.31
vue-router: ^4.0.15 vue-router: ^4.0.15
@ -68,7 +68,7 @@ devDependencies:
vite: 2.9.9_sass@1.49.10 vite: 2.9.9_sass@1.49.10
vite-plugin-html: 3.2.0_vite@2.9.9 vite-plugin-html: 3.2.0_vite@2.9.9
vite-plugin-mock: 2.9.6_mockjs@1.1.0+vite@2.9.9 vite-plugin-mock: 2.9.6_mockjs@1.1.0+vite@2.9.9
vite-plugin-vue-setup-extend: 0.3.0_vite@2.9.9 vite-plugin-vue-setup-extend-plus: 0.1.0
packages: packages:
@ -2788,14 +2788,8 @@ packages:
- supports-color - supports-color
dev: true dev: true
/vite-plugin-vue-setup-extend/0.3.0_vite@2.9.9: /vite-plugin-vue-setup-extend-plus/0.1.0:
resolution: {integrity: sha512-9Nd7Bj4TftB2CoOAD2ZI4cHLW5zjKMF3LNihWbrnAPx3nuGBn33tM9SVUGBVjBB6uv1mGAPavwKCTU0xAD8qhw==} resolution: {integrity: sha512-pa27KIsHIBvBMv4xz9uB3UCfAuP2tr7PLlFhCS9vw+aXd326LEHsvhqd3hCQDOR5MjlQVyQH6vwuGr3u+KRiiw==}
peerDependencies:
vite: '>=2.0.0'
dependencies:
'@vue/compiler-sfc': 3.2.31
magic-string: 0.25.9
vite: 2.9.9_sass@1.49.10
dev: true dev: true
/vite/2.9.9_sass@1.49.10: /vite/2.9.9_sass@1.49.10:

View File

@ -1,7 +1,6 @@
import { createSessionStorage } from '@/utils/cache' import { sStorage } from '@/utils/cache'
export const tagsSS = createSessionStorage({ prefixKey: 'tag_' }) export const activeTag = sStorage.get('activeTag')
export const activeTag = tagsSS.get('activeTag') export const tags = sStorage.get('tags')
export const tags = tagsSS.get('tags')
export const WITHOUT_TAG_PATHS = ['/404', '/login', '/redirect'] export const WITHOUT_TAG_PATHS = ['/404', '/login', '/redirect']

View File

@ -1,6 +1,7 @@
import { defineStore } from 'pinia' import { defineStore } from 'pinia'
import { tagsSS, activeTag, tags, WITHOUT_TAG_PATHS } from './helpers' import { activeTag, tags, WITHOUT_TAG_PATHS } from './helpers'
import { router } from '@/router' import { router } from '@/router'
import { sStorage } from '@/utils/cache'
export const useTagsStore = defineStore('tag', { export const useTagsStore = defineStore('tag', {
state() { state() {
@ -12,11 +13,11 @@ export const useTagsStore = defineStore('tag', {
actions: { actions: {
setActiveTag(path) { setActiveTag(path) {
this.activeTag = path this.activeTag = path
tagsSS.set('activeTag', path) sStorage.set('activeTag', path)
}, },
setTags(tags) { setTags(tags) {
this.tags = tags this.tags = tags
tagsSS.set('tags', tags) sStorage.set('tags', tags)
}, },
addTag(tag = {}) { addTag(tag = {}) {
this.setActiveTag(tag.path) this.setActiveTag(tag.path)

View File

@ -1,15 +1,21 @@
import { createWebStorage } from './web-storage' import { createStorage } from './storage'
const prefixKey = 'Vue_Naive_Admin_'
export const createLocalStorage = function (option = {}) { export const createLocalStorage = function (option = {}) {
return createWebStorage({ return createStorage({
prefixKey: option.prefixKey || '', prefixKey: option.prefixKey || '',
storage: localStorage, storage: localStorage,
}) })
} }
export const createSessionStorage = function (option = {}) { export const createSessionStorage = function (option = {}) {
return createWebStorage({ return createStorage({
prefixKey: option.prefixKey || '', prefixKey: option.prefixKey || '',
storage: sessionStorage, storage: sessionStorage,
}) })
} }
export const lStorage = createLocalStorage({ prefixKey })
export const sStorage = createSessionStorage({ prefixKey })

View File

@ -1,6 +1,6 @@
import { isNullOrUndef } from '@/utils/is' import { isNullOrUndef } from '@/utils/is'
class WebStorage { class Storage {
constructor(option) { constructor(option) {
this.storage = option.storage this.storage = option.storage
this.prefixKey = option.prefixKey this.prefixKey = option.prefixKey
@ -50,6 +50,6 @@ class WebStorage {
} }
} }
export function createWebStorage({ prefixKey = '', storage = sessionStorage }) { export function createStorage({ prefixKey = '', storage = sessionStorage }) {
return new WebStorage({ prefixKey, storage }) return new Storage({ prefixKey, storage })
} }

View File

@ -1,25 +1,23 @@
import { createLocalStorage } from './cache' import { lStorage } from './cache'
import { refreshToken } from '@/api/auth' import { refreshToken } from '@/api/auth'
const TOKEN_CODE = 'access_token' const TOKEN_CODE = 'access_token'
const DURATION = 6 * 60 * 60 const DURATION = 6 * 60 * 60
export const lsToken = createLocalStorage()
export function getToken() { export function getToken() {
return lsToken.get(TOKEN_CODE) return lStorage.get(TOKEN_CODE)
} }
export function setToken(token) { export function setToken(token) {
lsToken.set(TOKEN_CODE, token, DURATION) lStorage.set(TOKEN_CODE, token, DURATION)
} }
export function removeToken() { export function removeToken() {
lsToken.remove(TOKEN_CODE) lStorage.remove(TOKEN_CODE)
} }
export async function refreshAccessToken() { export async function refreshAccessToken() {
const tokenItem = lsToken.getItem(TOKEN_CODE) const tokenItem = lStorage.getItem(TOKEN_CODE)
if (!tokenItem) { if (!tokenItem) {
return return
} }

View File

@ -41,7 +41,7 @@
<script setup> <script setup>
import { login } from '@/api/auth' import { login } from '@/api/auth'
import { createLocalStorage } from '@/utils/cache' import { lStorage } from '@/utils/cache'
import { setToken } from '@/utils/token' import { setToken } from '@/utils/token'
const title = import.meta.env.VITE_APP_TITLE const title = import.meta.env.VITE_APP_TITLE
@ -54,11 +54,10 @@ const loginInfo = ref({
password: '123456', password: '123456',
}) })
const ls = createLocalStorage({ prefixKey: 'login_' }) const localLoginInfo = lStorage.get('loginInfo')
const lsLoginInfo = ls.get('loginInfo') if (localLoginInfo) {
if (lsLoginInfo) { loginInfo.value.name = localLoginInfo.name || ''
loginInfo.value.name = lsLoginInfo.name || '' loginInfo.value.password = localLoginInfo.password || ''
loginInfo.value.password = lsLoginInfo.password || ''
} }
async function handleLogin() { async function handleLogin() {
@ -72,7 +71,7 @@ async function handleLogin() {
const res = await login({ name, password: password.toString() }) const res = await login({ name, password: password.toString() })
if (res.code === 0) { if (res.code === 0) {
$message.success('登录成功') $message.success('登录成功')
ls.set('loginInfo', { name, password }) lStorage.set('loginInfo', { name, password })
setToken(res.data.token) setToken(res.data.token)
if (query.redirect) { if (query.redirect) {