mirror of
https://github.com/XiaoDaiGua-Ray/ray-template.git
synced 2025-04-05 19:42:07 +08:00
version: v4.9.0
This commit is contained in:
parent
8405cc5709
commit
d306ac8804
18
CHANGELOG.md
18
CHANGELOG.md
@ -1,5 +1,23 @@
|
|||||||
# CHANGE LOG
|
# CHANGE LOG
|
||||||
|
|
||||||
|
## 4.9.0
|
||||||
|
|
||||||
|
主要修复了一个歧义问题,就是新开页面输入 `url`,或者是 `window.open` 打开当前系统的页面时,会导致初始化异常的问题。这是因为以前的 `appMenu`, `appSigning` 相关的缓存都是防止与 `sessionStorage`,但是该缓存并不能共享,所以导致了这个问题。在该版本中将该缓存调整为了 `localStorage`。
|
||||||
|
|
||||||
|
## Feats
|
||||||
|
|
||||||
|
- 移除 `vite-plugin-imp` 插件
|
||||||
|
- 更新 `vue` 版本至 `3.4.31`
|
||||||
|
- 更新 `vite` 版本至 `5.3.3`
|
||||||
|
- 将 `appPiniaMenuStore`, `appPiniaSigningStore` 缓存由 `sessionStorage` 更改为 `localStorage` 缓存
|
||||||
|
- 现在在模拟退出的时候,会清理 `appPiniaMenuStore`, `appPiniaSigningStore` 的 `localStorage` 缓存
|
||||||
|
- 将 `route` 待提取字段单独抽离,统一维护为 `pickRouteRecordNormalizedConstant`
|
||||||
|
|
||||||
|
## Fixes
|
||||||
|
|
||||||
|
- 修复 `RTable` 自定义 `tool` 时抛出的优化警告问题
|
||||||
|
- 修复在复制 `url` 打开新标签页输入网址后(包括新开页面),会导致项目初始化异常的问题
|
||||||
|
|
||||||
## 4.8.9
|
## 4.8.9
|
||||||
|
|
||||||
## Fixes
|
## Fixes
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "ray-template",
|
"name": "ray-template",
|
||||||
"private": false,
|
"private": false,
|
||||||
"version": "4.8.9",
|
"version": "4.9.0",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": "^18.0.0 || >=20.0.0",
|
"node": "^18.0.0 || >=20.0.0",
|
||||||
@ -48,7 +48,7 @@
|
|||||||
"pinia": "^2.1.7",
|
"pinia": "^2.1.7",
|
||||||
"pinia-plugin-persistedstate": "^3.2.0",
|
"pinia-plugin-persistedstate": "^3.2.0",
|
||||||
"print-js": "^1.6.0",
|
"print-js": "^1.6.0",
|
||||||
"vue": "^3.4.30",
|
"vue": "^3.4.31",
|
||||||
"vue-demi": "0.14.6",
|
"vue-demi": "0.14.6",
|
||||||
"vue-hooks-plus": "2.2.0",
|
"vue-hooks-plus": "2.2.0",
|
||||||
"vue-i18n": "^9.13.1",
|
"vue-i18n": "^9.13.1",
|
||||||
@ -92,13 +92,12 @@
|
|||||||
"typescript": "^5.2.2",
|
"typescript": "^5.2.2",
|
||||||
"unplugin-auto-import": "^0.17.5",
|
"unplugin-auto-import": "^0.17.5",
|
||||||
"unplugin-vue-components": "^0.26.0",
|
"unplugin-vue-components": "^0.26.0",
|
||||||
"vite": "^5.3.1",
|
"vite": "^5.3.3",
|
||||||
"vite-bundle-analyzer": "0.9.4",
|
"vite-bundle-analyzer": "0.9.4",
|
||||||
"vite-plugin-cdn2": "1.1.0",
|
"vite-plugin-cdn2": "1.1.0",
|
||||||
"vite-plugin-compression": "^0.5.1",
|
"vite-plugin-compression": "^0.5.1",
|
||||||
"vite-plugin-ejs": "^1.7.0",
|
"vite-plugin-ejs": "^1.7.0",
|
||||||
"vite-plugin-eslint": "1.8.1",
|
"vite-plugin-eslint": "1.8.1",
|
||||||
"vite-plugin-imp": "^2.4.0",
|
|
||||||
"vite-plugin-inspect": "^0.8.3",
|
"vite-plugin-inspect": "^0.8.3",
|
||||||
"vite-plugin-mock-dev-server": "1.4.7",
|
"vite-plugin-mock-dev-server": "1.4.7",
|
||||||
"vite-plugin-svg-icons": "^2.0.1",
|
"vite-plugin-svg-icons": "^2.0.1",
|
||||||
|
620
pnpm-lock.yaml
generated
620
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
@ -47,7 +47,10 @@ const AppAvatar = defineComponent({
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
setup(props) {
|
setup(props) {
|
||||||
const signing = getStorage<SigningCallback>(APP_CATCH_KEY.signing)
|
const signing = getStorage<SigningCallback>(
|
||||||
|
APP_CATCH_KEY.signing,
|
||||||
|
'localStorage',
|
||||||
|
)
|
||||||
|
|
||||||
return {
|
return {
|
||||||
signing,
|
signing,
|
||||||
|
@ -16,7 +16,7 @@ import type {
|
|||||||
* 当然你也可以根据 request instance 来特殊处理, 这里暂时不做演示
|
* 当然你也可以根据 request instance 来特殊处理, 这里暂时不做演示
|
||||||
*/
|
*/
|
||||||
const requestHeaderToken = (ins: RequestInterceptorConfig, mode: string) => {
|
const requestHeaderToken = (ins: RequestInterceptorConfig, mode: string) => {
|
||||||
const token = getStorage<string>(APP_CATCH_KEY.token)
|
const token = getStorage<string>(APP_CATCH_KEY.token, 'localStorage')
|
||||||
|
|
||||||
if (ins.url) {
|
if (ins.url) {
|
||||||
// TODO: 根据 url 不同是否设置 token
|
// TODO: 根据 url 不同是否设置 token
|
||||||
|
@ -186,7 +186,7 @@ export default defineComponent({
|
|||||||
return renderDefaultToolOptions
|
return renderDefaultToolOptions
|
||||||
} else {
|
} else {
|
||||||
if (props.coverTool) {
|
if (props.coverTool) {
|
||||||
return <NFlex align="center">{renderToolOptions()}</NFlex>
|
return () => <NFlex align="center">{renderToolOptions()}</NFlex>
|
||||||
} else {
|
} else {
|
||||||
return () => (
|
return () => (
|
||||||
<NFlex align="center">
|
<NFlex align="center">
|
||||||
|
@ -12,6 +12,7 @@
|
|||||||
import { useMenuGetters, useMenuActions } from '@/store'
|
import { useMenuGetters, useMenuActions } from '@/store'
|
||||||
import { useVueRouter, useAppRoot } from '@/hooks'
|
import { useVueRouter, useAppRoot } from '@/hooks'
|
||||||
import { pick } from 'lodash-es'
|
import { pick } from 'lodash-es'
|
||||||
|
import { pickRouteRecordNormalizedConstant } from '@/store/modules/menu/constant'
|
||||||
|
|
||||||
import type { MenuTagOptions, Key, AppMenuOption } from '@/types'
|
import type { MenuTagOptions, Key, AppMenuOption } from '@/types'
|
||||||
|
|
||||||
@ -206,13 +207,7 @@ export function useSiderBar() {
|
|||||||
)
|
)
|
||||||
|
|
||||||
if (findMenuOption) {
|
if (findMenuOption) {
|
||||||
const pickOption = pick(findMenuOption, [
|
const pickOption = pick(findMenuOption, pickRouteRecordNormalizedConstant)
|
||||||
'children',
|
|
||||||
'meta',
|
|
||||||
'path',
|
|
||||||
'name',
|
|
||||||
'redirect',
|
|
||||||
])
|
|
||||||
const res = resolveOption(pickOption as unknown as AppMenuOption)
|
const res = resolveOption(pickOption as unknown as AppMenuOption)
|
||||||
|
|
||||||
changeMenuModelValue(
|
changeMenuModelValue(
|
||||||
|
@ -40,7 +40,7 @@ export const permissionRouter = (router: Router) => {
|
|||||||
) => to.path === '/' || from.path === '/login'
|
) => to.path === '/' || from.path === '/login'
|
||||||
|
|
||||||
beforeEach((to, from, next) => {
|
beforeEach((to, from, next) => {
|
||||||
const token = getStorage<string>(APP_CATCH_KEY.token)
|
const token = getStorage<string>(APP_CATCH_KEY.token, 'localStorage')
|
||||||
const catchRoutePath = getStorage(
|
const catchRoutePath = getStorage(
|
||||||
APP_CATCH_KEY.appMenuKey,
|
APP_CATCH_KEY.appMenuKey,
|
||||||
'sessionStorage',
|
'sessionStorage',
|
||||||
|
@ -15,7 +15,7 @@ export const redirectRouterToDashboard = (isReplace = true) => {
|
|||||||
const { push, replace } = router
|
const { push, replace } = router
|
||||||
const { getRootPath } = useAppRoot()
|
const { getRootPath } = useAppRoot()
|
||||||
|
|
||||||
setStorage(APP_CATCH_KEY.appMenuKey, getRootPath.value)
|
setStorage(APP_CATCH_KEY.appMenuKey, getRootPath.value, 'localStorage')
|
||||||
|
|
||||||
isReplace ? replace(getRootPath.value) : push(getRootPath.value)
|
isReplace ? replace(getRootPath.value) : push(getRootPath.value)
|
||||||
}
|
}
|
||||||
|
11
src/store/modules/menu/constant.ts
Normal file
11
src/store/modules/menu/constant.ts
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
export const pickRouteRecordNormalizedConstant = [
|
||||||
|
'redirect',
|
||||||
|
'breadcrumbLabel',
|
||||||
|
'children',
|
||||||
|
'key',
|
||||||
|
'meta',
|
||||||
|
'name',
|
||||||
|
'path',
|
||||||
|
'show',
|
||||||
|
'fullPath',
|
||||||
|
]
|
@ -42,6 +42,7 @@ import { getAppRawRoutes } from '@/router/app-route-modules'
|
|||||||
import { useKeepAliveActions } from '@/store'
|
import { useKeepAliveActions } from '@/store'
|
||||||
import { APP_CATCH_KEY } from '@/app-config'
|
import { APP_CATCH_KEY } from '@/app-config'
|
||||||
import { pick } from 'lodash-es'
|
import { pick } from 'lodash-es'
|
||||||
|
import { pickRouteRecordNormalizedConstant } from './constant'
|
||||||
|
|
||||||
import type { AppMenuOption, MenuTagOptions } from '@/types'
|
import type { AppMenuOption, MenuTagOptions } from '@/types'
|
||||||
import type { MenuState } from '@/store/modules/menu/types'
|
import type { MenuState } from '@/store/modules/menu/types'
|
||||||
@ -271,15 +272,10 @@ export const piniaMenuStore = defineStore(
|
|||||||
setStorage(APP_CATCH_KEY.appMenuKey, key)
|
setStorage(APP_CATCH_KEY.appMenuKey, key)
|
||||||
} else {
|
} else {
|
||||||
// 使用 pick 提取仅需要的字段,避免 vue 抛错空引用,导致性能损耗
|
// 使用 pick 提取仅需要的字段,避免 vue 抛错空引用,导致性能损耗
|
||||||
const breadcrumbOption = pick(resolveOption(option), [
|
const breadcrumbOption = pick(
|
||||||
'breadcrumbLabel',
|
resolveOption(option),
|
||||||
'children',
|
pickRouteRecordNormalizedConstant,
|
||||||
'key',
|
) as unknown as AppMenuOption
|
||||||
'meta',
|
|
||||||
'name',
|
|
||||||
'path',
|
|
||||||
'show',
|
|
||||||
]) as unknown as AppMenuOption
|
|
||||||
// 查看是否重复
|
// 查看是否重复
|
||||||
const find = menuState.breadcrumbOptions.find(
|
const find = menuState.breadcrumbOptions.find(
|
||||||
(curr) => curr.key === breadcrumbOption.key,
|
(curr) => curr.key === breadcrumbOption.key,
|
||||||
@ -314,13 +310,10 @@ export const piniaMenuStore = defineStore(
|
|||||||
|
|
||||||
if (findMenuOption) {
|
if (findMenuOption) {
|
||||||
// 使用 pick 提取仅需要的字段,避免 vue 抛错空引用,导致性能损耗
|
// 使用 pick 提取仅需要的字段,避免 vue 抛错空引用,导致性能损耗
|
||||||
const pickOption = pick(findMenuOption, [
|
const pickOption = pick(
|
||||||
'children',
|
findMenuOption,
|
||||||
'meta',
|
pickRouteRecordNormalizedConstant,
|
||||||
'path',
|
) as unknown as AppMenuOption
|
||||||
'name',
|
|
||||||
'redirect',
|
|
||||||
]) as unknown as AppMenuOption
|
|
||||||
|
|
||||||
changeMenuModelValue(
|
changeMenuModelValue(
|
||||||
routePath,
|
routePath,
|
||||||
@ -452,7 +445,7 @@ export const piniaMenuStore = defineStore(
|
|||||||
{
|
{
|
||||||
persist: {
|
persist: {
|
||||||
key: APP_CATCH_KEY.appPiniaMenuStore,
|
key: APP_CATCH_KEY.appPiniaMenuStore,
|
||||||
storage: window.sessionStorage,
|
storage: window.localStorage,
|
||||||
paths: ['breadcrumbOptions', 'menuKey', 'menuTagOptions', 'collapsed'],
|
paths: ['breadcrumbOptions', 'menuKey', 'menuTagOptions', 'collapsed'],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
@ -80,11 +80,18 @@ export const piniaSigningStore = defineStore(
|
|||||||
*/
|
*/
|
||||||
const logout = () => {
|
const logout = () => {
|
||||||
const { closeAll } = useSiderBar()
|
const { closeAll } = useSiderBar()
|
||||||
|
const { appPiniaMenuStore, appPiniaSigningStore } = APP_CATCH_KEY
|
||||||
|
|
||||||
|
// 提示信息
|
||||||
window.$message.info('账号退出中...')
|
window.$message.info('账号退出中...')
|
||||||
|
// 移除所有 sessionStorage 缓存
|
||||||
removeStorage('__all_sessionStorage__', 'sessionStorage')
|
removeStorage('__all_sessionStorage__', 'sessionStorage')
|
||||||
|
// 移除指定 localStorage 缓存
|
||||||
|
removeStorage(appPiniaMenuStore, 'localStorage')
|
||||||
|
removeStorage(appPiniaSigningStore, 'localStorage')
|
||||||
|
// 关闭所有侧边栏标签
|
||||||
closeAll()
|
closeAll()
|
||||||
|
// 延迟 300ms 后强制刷新当前系统
|
||||||
setTimeout(() => window.location.reload())
|
setTimeout(() => window.location.reload())
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -98,7 +105,7 @@ export const piniaSigningStore = defineStore(
|
|||||||
persist: {
|
persist: {
|
||||||
key: APP_CATCH_KEY.appPiniaSigningStore,
|
key: APP_CATCH_KEY.appPiniaSigningStore,
|
||||||
paths: ['signingCallback'],
|
paths: ['signingCallback'],
|
||||||
storage: sessionStorage,
|
storage: window.localStorage,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
|
@ -50,8 +50,8 @@ export default defineComponent({
|
|||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
window.$message.success(`欢迎${signingForm.value.name}登陆~`)
|
window.$message.success(`欢迎${signingForm.value.name}登陆~`)
|
||||||
|
|
||||||
setStorage(APP_CATCH_KEY.token, 'tokenValue')
|
setStorage(APP_CATCH_KEY.token, 'tokenValue', 'localStorage')
|
||||||
setStorage(APP_CATCH_KEY.signing, res.data)
|
setStorage(APP_CATCH_KEY.signing, res.data, 'localStorage')
|
||||||
|
|
||||||
router.push(getRootPath.value)
|
router.push(getRootPath.value)
|
||||||
|
|
||||||
|
@ -16,7 +16,6 @@ import viteVueJSX from '@vitejs/plugin-vue-jsx'
|
|||||||
import viteVeI18nPlugin from '@intlify/unplugin-vue-i18n/vite'
|
import viteVeI18nPlugin from '@intlify/unplugin-vue-i18n/vite'
|
||||||
import viteInspect from 'vite-plugin-inspect'
|
import viteInspect from 'vite-plugin-inspect'
|
||||||
import viteSvgLoader from 'vite-svg-loader'
|
import viteSvgLoader from 'vite-svg-loader'
|
||||||
import vitePluginImp from 'vite-plugin-imp'
|
|
||||||
import { analyzer, adapter } from 'vite-bundle-analyzer'
|
import { analyzer, adapter } from 'vite-bundle-analyzer'
|
||||||
import viteCompression from 'vite-plugin-compression'
|
import viteCompression from 'vite-plugin-compression'
|
||||||
import { ViteEjsPlugin as viteEjsPlugin } from 'vite-plugin-ejs'
|
import { ViteEjsPlugin as viteEjsPlugin } from 'vite-plugin-ejs'
|
||||||
@ -176,20 +175,6 @@ function baseOptions(mode: string): PluginOption[] {
|
|||||||
cache: true,
|
cache: true,
|
||||||
})
|
})
|
||||||
: null,
|
: null,
|
||||||
vitePluginImp({
|
|
||||||
libList: [
|
|
||||||
{
|
|
||||||
libName: 'lodash-es',
|
|
||||||
libDirectory: '',
|
|
||||||
camel2DashComponentName: false,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
libName: '@vueuse',
|
|
||||||
libDirectory: '',
|
|
||||||
camel2DashComponentName: false,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
}),
|
|
||||||
viteEjsPlugin({
|
viteEjsPlugin({
|
||||||
preloadingConfig,
|
preloadingConfig,
|
||||||
appPrimaryColor,
|
appPrimaryColor,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user