mirror of
https://github.com/iczer/vue-antd-admin
synced 2025-04-05 19:41:37 +08:00
fix: the cache problem in tabs mode;🐛
修复:多页签模式下的缓存问题;
This commit is contained in:
parent
9445f0fbbb
commit
d741904f50
141
src/components/cache/AKeepAlive.js
vendored
Normal file
141
src/components/cache/AKeepAlive.js
vendored
Normal file
@ -0,0 +1,141 @@
|
|||||||
|
import {isDef, isRegExp, remove} from '@/utils/util'
|
||||||
|
|
||||||
|
const patternTypes = [String, RegExp, Array]
|
||||||
|
|
||||||
|
function matches (pattern, name) {
|
||||||
|
if (Array.isArray(pattern)) {
|
||||||
|
return pattern.indexOf(name) > -1
|
||||||
|
} else if (typeof pattern === 'string') {
|
||||||
|
return pattern.split(',').indexOf(name) > -1
|
||||||
|
} else if (isRegExp(pattern)) {
|
||||||
|
return pattern.test(name)
|
||||||
|
}
|
||||||
|
/* istanbul ignore next */
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
|
function getComponentName (opts) {
|
||||||
|
return opts && (opts.Ctor.options.name || opts.tag)
|
||||||
|
}
|
||||||
|
|
||||||
|
function getFirstComponentChild (children) {
|
||||||
|
if (Array.isArray(children)) {
|
||||||
|
for (let i = 0; i < children.length; i++) {
|
||||||
|
const c = children[i]
|
||||||
|
if (isDef(c) && (isDef(c.componentOptions) || c.isAsyncPlaceholder)) {
|
||||||
|
return c
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function pruneCache (keepAliveInstance, filter) {
|
||||||
|
const { cache, keys, _vnode } = keepAliveInstance
|
||||||
|
for (const key in cache) {
|
||||||
|
const cachedNode = cache[key]
|
||||||
|
if (cachedNode) {
|
||||||
|
const name = getComponentName(cachedNode.componentOptions)
|
||||||
|
if (name && !filter(name)) {
|
||||||
|
pruneCacheEntry(cache, key, keys, _vnode)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function pruneCacheEntry (cache, key, keys, current) {
|
||||||
|
const cached = cache[key]
|
||||||
|
if (cached && (!current || cached.tag !== current.tag)) {
|
||||||
|
cached.componentInstance.$destroy()
|
||||||
|
}
|
||||||
|
cache[key] = null
|
||||||
|
remove(keys, key)
|
||||||
|
}
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: 'AKeepAlive',
|
||||||
|
abstract: true,
|
||||||
|
model: {
|
||||||
|
prop: 'clearCaches',
|
||||||
|
event: 'clear',
|
||||||
|
},
|
||||||
|
props: {
|
||||||
|
include: patternTypes,
|
||||||
|
exclude: patternTypes,
|
||||||
|
max: [String, Number],
|
||||||
|
clearCaches: Array
|
||||||
|
},
|
||||||
|
|
||||||
|
watch: {
|
||||||
|
clearCaches: function(val) {
|
||||||
|
if (val && val.length > 0) {
|
||||||
|
const {cache, keys} = this
|
||||||
|
val.forEach(key => {
|
||||||
|
pruneCacheEntry(cache, key, keys, this._vnode)
|
||||||
|
})
|
||||||
|
this.$emit('clear', [])
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
created() {
|
||||||
|
this.cache = Object.create(null)
|
||||||
|
this.keys = []
|
||||||
|
},
|
||||||
|
|
||||||
|
destroyed () {
|
||||||
|
for (const key in this.cache) {
|
||||||
|
pruneCacheEntry(this.cache, key, this.keys)
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
mounted () {
|
||||||
|
this.$watch('include', val => {
|
||||||
|
pruneCache(this, name => matches(val, name))
|
||||||
|
})
|
||||||
|
this.$watch('exclude', val => {
|
||||||
|
pruneCache(this, name => !matches(val, name))
|
||||||
|
})
|
||||||
|
},
|
||||||
|
|
||||||
|
render () {
|
||||||
|
const slot = this.$slots.default
|
||||||
|
const vnode = getFirstComponentChild(slot)
|
||||||
|
const componentOptions = vnode && vnode.componentOptions
|
||||||
|
if (componentOptions) {
|
||||||
|
// check pattern
|
||||||
|
const name = getComponentName(componentOptions)
|
||||||
|
const { include, exclude } = this
|
||||||
|
if (
|
||||||
|
// not included
|
||||||
|
(include && (!name || !matches(include, name))) ||
|
||||||
|
// excluded
|
||||||
|
(exclude && name && matches(exclude, name))
|
||||||
|
) {
|
||||||
|
return vnode
|
||||||
|
}
|
||||||
|
|
||||||
|
const { cache, keys } = this
|
||||||
|
const key = vnode.key == null
|
||||||
|
// same constructor may get registered as different local components
|
||||||
|
// so cid alone is not enough (#3269)
|
||||||
|
? componentOptions.Ctor.cid + (componentOptions.tag ? `::${componentOptions.tag}` : '')
|
||||||
|
: vnode.key
|
||||||
|
if (cache[key]) {
|
||||||
|
vnode.componentInstance = cache[key].componentInstance
|
||||||
|
// make current key freshest
|
||||||
|
remove(keys, key)
|
||||||
|
keys.push(key)
|
||||||
|
} else {
|
||||||
|
cache[key] = vnode
|
||||||
|
keys.push(key)
|
||||||
|
// prune oldest entry
|
||||||
|
if (this.max && keys.length > parseInt(this.max)) {
|
||||||
|
pruneCacheEntry(cache, keys[0], keys, this._vnode)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
vnode.data.keepAlive = true
|
||||||
|
}
|
||||||
|
return vnode || (slot && slot[0])
|
||||||
|
}
|
||||||
|
}
|
@ -1,9 +1,6 @@
|
|||||||
<template>
|
<template>
|
||||||
<page-toggle-transition :disabled="animate.disabled" :animate="animate.name" :direction="animate.direction">
|
<page-toggle-transition :disabled="animate.disabled" :animate="animate.name" :direction="animate.direction">
|
||||||
<keep-alive :exclude="dustbins" v-if="multiPage">
|
<router-view />
|
||||||
<router-view />
|
|
||||||
</keep-alive>
|
|
||||||
<router-view v-else />
|
|
||||||
</page-toggle-transition>
|
</page-toggle-transition>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@ -15,7 +12,7 @@ export default {
|
|||||||
name: 'BlankView',
|
name: 'BlankView',
|
||||||
components: {PageToggleTransition},
|
components: {PageToggleTransition},
|
||||||
computed: {
|
computed: {
|
||||||
...mapState('setting', ['multiPage', 'animate', 'dustbins'])
|
...mapState('setting', ['multiPage', 'animate'])
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
@ -4,10 +4,7 @@
|
|||||||
<img :src="extraImage"/>
|
<img :src="extraImage"/>
|
||||||
</div>
|
</div>
|
||||||
<page-toggle-transition :disabled="animate.disabled" :animate="animate.name" :direction="animate.direction">
|
<page-toggle-transition :disabled="animate.disabled" :animate="animate.name" :direction="animate.direction">
|
||||||
<keep-alive :exclude="dustbins" v-if="multiPage">
|
|
||||||
<router-view ref="page" />
|
<router-view ref="page" />
|
||||||
</keep-alive>
|
|
||||||
<router-view ref="page" v-else />
|
|
||||||
</page-toggle-transition>
|
</page-toggle-transition>
|
||||||
</page-layout>
|
</page-layout>
|
||||||
</template>
|
</template>
|
||||||
@ -26,7 +23,7 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
...mapState('setting', ['isMobile', 'multiPage', 'animate', 'dustbins']),
|
...mapState('setting', ['isMobile', 'multiPage', 'animate']),
|
||||||
desc() {
|
desc() {
|
||||||
return this.page.desc
|
return this.page.desc
|
||||||
},
|
},
|
||||||
|
@ -17,9 +17,9 @@
|
|||||||
</a-tabs>
|
</a-tabs>
|
||||||
<div class="tabs-view-content" :style="`margin-top: ${multiPage ? -24 : 0}px`">
|
<div class="tabs-view-content" :style="`margin-top: ${multiPage ? -24 : 0}px`">
|
||||||
<page-toggle-transition :disabled="animate.disabled" :animate="animate.name" :direction="animate.direction">
|
<page-toggle-transition :disabled="animate.disabled" :animate="animate.name" :direction="animate.direction">
|
||||||
<keep-alive :exclude="dustbins" v-if="multiPage">
|
<a-keep-alive v-if="multiPage" v-model="clearCaches">
|
||||||
<router-view :key="$route.fullPath" />
|
<router-view ref="tabContent" :key="$route.fullPath" />
|
||||||
</keep-alive>
|
</a-keep-alive>
|
||||||
<router-view v-else />
|
<router-view v-else />
|
||||||
</page-toggle-transition>
|
</page-toggle-transition>
|
||||||
</div>
|
</div>
|
||||||
@ -32,20 +32,23 @@ import Contextmenu from '@/components/menu/Contextmenu'
|
|||||||
import PageToggleTransition from '@/components/transition/PageToggleTransition'
|
import PageToggleTransition from '@/components/transition/PageToggleTransition'
|
||||||
import {mapState, mapMutations} from 'vuex'
|
import {mapState, mapMutations} from 'vuex'
|
||||||
import {getI18nKey} from '@/utils/routerUtil'
|
import {getI18nKey} from '@/utils/routerUtil'
|
||||||
|
import AKeepAlive from '@/components/cache/AKeepAlive'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'TabsView',
|
name: 'TabsView',
|
||||||
i18n: require('./i18n'),
|
i18n: require('./i18n'),
|
||||||
components: { PageToggleTransition, Contextmenu, AdminLayout },
|
components: { PageToggleTransition, Contextmenu, AdminLayout , AKeepAlive },
|
||||||
data () {
|
data () {
|
||||||
return {
|
return {
|
||||||
|
clearCaches: [],
|
||||||
pageList: [],
|
pageList: [],
|
||||||
|
cachedKeys: [],
|
||||||
activePage: '',
|
activePage: '',
|
||||||
menuVisible: false
|
menuVisible: false
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
...mapState('setting', ['multiPage', 'animate', 'layout', 'dustbins']),
|
...mapState('setting', ['multiPage', 'animate', 'layout']),
|
||||||
menuItemList() {
|
menuItemList() {
|
||||||
return [
|
return [
|
||||||
{ key: '1', icon: 'vertical-right', text: this.$t('closeLeft') },
|
{ key: '1', icon: 'vertical-right', text: this.$t('closeLeft') },
|
||||||
@ -67,6 +70,7 @@ export default {
|
|||||||
},
|
},
|
||||||
mounted () {
|
mounted () {
|
||||||
this.correctPageMinHeight(-this.tabsOffset)
|
this.correctPageMinHeight(-this.tabsOffset)
|
||||||
|
this.cachedKeys.push(this.$refs.tabContent.$vnode.key)
|
||||||
},
|
},
|
||||||
beforeDestroy() {
|
beforeDestroy() {
|
||||||
window.removeEventListener('page:close', this.closePageListener)
|
window.removeEventListener('page:close', this.closePageListener)
|
||||||
@ -75,10 +79,12 @@ export default {
|
|||||||
watch: {
|
watch: {
|
||||||
'$route': function (newRoute) {
|
'$route': function (newRoute) {
|
||||||
this.activePage = newRoute.fullPath
|
this.activePage = newRoute.fullPath
|
||||||
this.putCache(newRoute)
|
|
||||||
if (!this.multiPage) {
|
if (!this.multiPage) {
|
||||||
this.pageList = [newRoute]
|
this.pageList = [newRoute]
|
||||||
} else if (this.pageList.findIndex(item => item.fullPath == newRoute.fullPath) == -1) {
|
} else if (this.pageList.findIndex(item => item.fullPath == newRoute.fullPath) == -1) {
|
||||||
|
this.$nextTick(() => {
|
||||||
|
this.cachedKeys.push(this.$refs.tabContent.$vnode.key)
|
||||||
|
})
|
||||||
this.pageList.push(newRoute)
|
this.pageList.push(newRoute)
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -107,9 +113,9 @@ export default {
|
|||||||
return this.$message.warning(this.$t('warn'))
|
return this.$message.warning(this.$t('warn'))
|
||||||
}
|
}
|
||||||
let index = this.pageList.findIndex(item => item.fullPath === key)
|
let index = this.pageList.findIndex(item => item.fullPath === key)
|
||||||
let pageRoute = this.pageList[index]
|
//清除缓存
|
||||||
this.clearCache(pageRoute)
|
this.clearCaches = this.cachedKeys.splice(index, 1)
|
||||||
this.pageList = this.pageList.filter(item => item.fullPath !== key)
|
this.pageList.splice(index, 1)
|
||||||
if (next) {
|
if (next) {
|
||||||
this.$router.push(next)
|
this.$router.push(next)
|
||||||
} else if (key === this.activePage) {
|
} else if (key === this.activePage) {
|
||||||
@ -136,56 +142,40 @@ export default {
|
|||||||
},
|
},
|
||||||
closeOthers (pageKey) {
|
closeOthers (pageKey) {
|
||||||
const index = this.pageList.findIndex(item => item.fullPath === pageKey)
|
const index = this.pageList.findIndex(item => item.fullPath === pageKey)
|
||||||
// 要关闭的页面清除缓存
|
// 清除缓存
|
||||||
this.pageList.forEach(item => {
|
this.clearCaches = this.cachedKeys.filter((item, i) => i != index)
|
||||||
if (item.fullPath !== pageKey){
|
this.cachedKeys = this.cachedKeys.slice(index, index + 1)
|
||||||
this.clearCache(item)
|
|
||||||
}
|
|
||||||
})
|
|
||||||
this.pageList = this.pageList.slice(index, index + 1)
|
this.pageList = this.pageList.slice(index, index + 1)
|
||||||
this.activePage = this.pageList[0].fullPath
|
if (this.activePage != pageKey) {
|
||||||
this.$router.push(this.activePage)
|
this.activePage = pageKey
|
||||||
|
this.$router.push(this.activePage)
|
||||||
|
}
|
||||||
},
|
},
|
||||||
closeLeft (pageKey) {
|
closeLeft (pageKey) {
|
||||||
const index = this.pageList.findIndex(item => item.fullPath === pageKey)
|
const index = this.pageList.findIndex(item => item.fullPath === pageKey)
|
||||||
// 清除缓存
|
// 清除缓存
|
||||||
this.pageList.forEach((item, i) => {
|
this.clearCaches = this.cachedKeys.filter((item, i) => i < index)
|
||||||
if (i < index) {
|
this.cachedKeys = this.cachedKeys.slice(index)
|
||||||
this.clearCache(item)
|
|
||||||
}
|
|
||||||
})
|
|
||||||
this.pageList = this.pageList.slice(index)
|
this.pageList = this.pageList.slice(index)
|
||||||
if (this.pageList.findIndex(item => item.fullPath === this.activePage) === -1) {
|
if (!this.pageList.find(item => item.fullPath === this.activePage)) {
|
||||||
this.activePage = this.pageList[0].fullPath
|
this.activePage = pageKey
|
||||||
this.$router.push(this.activePage)
|
this.$router.push(this.activePage)
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
closeRight (pageKey) {
|
closeRight (pageKey) {
|
||||||
const index = this.pageList.findIndex(item => item.fullPath === pageKey)
|
const index = this.pageList.findIndex(item => item.fullPath === pageKey)
|
||||||
// 清除缓存
|
// 清除缓存
|
||||||
this.pageList.forEach((item, i) => {
|
this.clearCaches = this.cachedKeys.filter((item, i) => i > index)
|
||||||
if (i > index) {
|
this.cachedKeys = this.cachedKeys.slice(0, index+1)
|
||||||
this.clearCache(item)
|
|
||||||
}
|
|
||||||
})
|
|
||||||
this.pageList = this.pageList.slice(0, index + 1)
|
this.pageList = this.pageList.slice(0, index + 1)
|
||||||
if (this.pageList.findIndex(item => item.fullPath === this.activePage) === -1) {
|
if (!this.pageList.find(item => item.fullPath === this.activePage)) {
|
||||||
this.activePage = this.pageList[this.pageList.length - 1].fullPath
|
this.activePage = pageKey
|
||||||
this.$router.push(this.activePage)
|
this.$router.push(this.activePage)
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
clearCache(route) {
|
|
||||||
const componentName = route.matched.slice(-1)[0].components.default.name
|
|
||||||
if (this.dustbins.findIndex(item => item === componentName) === -1) {
|
|
||||||
this.setDustbins(this.dustbins.concat(componentName))
|
|
||||||
}
|
|
||||||
},
|
|
||||||
putCache(route) {
|
|
||||||
const componentName = route.matched.slice(-1)[0].components.default.name
|
|
||||||
if (this.dustbins.includes(componentName)) {
|
|
||||||
this.setDustbins(this.dustbins.filter(item => item !== componentName))
|
|
||||||
}
|
|
||||||
},
|
|
||||||
pageName(page) {
|
pageName(page) {
|
||||||
return this.$t(getI18nKey(page.matched[page.matched.length - 1].path))
|
return this.$t(getI18nKey(page.matched[page.matched.length - 1].path))
|
||||||
},
|
},
|
||||||
@ -194,7 +184,7 @@ export default {
|
|||||||
const closePath = typeof closeRoute === 'string' ? closeRoute : closeRoute.path
|
const closePath = typeof closeRoute === 'string' ? closeRoute : closeRoute.path
|
||||||
this.remove(closePath, nextRoute)
|
this.remove(closePath, nextRoute)
|
||||||
},
|
},
|
||||||
...mapMutations('setting', ['setDustbins', 'correctPageMinHeight'])
|
...mapMutations('setting', ['correctPageMinHeight'])
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
|
@ -6,7 +6,6 @@ export default {
|
|||||||
isMobile: false,
|
isMobile: false,
|
||||||
animates: ADMIN.animates,
|
animates: ADMIN.animates,
|
||||||
palettes: ADMIN.palettes,
|
palettes: ADMIN.palettes,
|
||||||
dustbins: [],
|
|
||||||
pageMinHeight: 0,
|
pageMinHeight: 0,
|
||||||
menuData: [],
|
menuData: [],
|
||||||
...config,
|
...config,
|
||||||
@ -42,9 +41,6 @@ export default {
|
|||||||
setHideSetting(state, hideSetting) {
|
setHideSetting(state, hideSetting) {
|
||||||
state.hideSetting = hideSetting
|
state.hideSetting = hideSetting
|
||||||
},
|
},
|
||||||
setDustbins(state, dustbins) {
|
|
||||||
state.dustbins = dustbins
|
|
||||||
},
|
|
||||||
correctPageMinHeight(state, minHeight) {
|
correctPageMinHeight(state, minHeight) {
|
||||||
state.pageMinHeight += minHeight
|
state.pageMinHeight += minHeight
|
||||||
},
|
},
|
||||||
|
21
src/utils/util.js
Normal file
21
src/utils/util.js
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
export function isDef (v){
|
||||||
|
return v !== undefined && v !== null
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Remove an item from an array.
|
||||||
|
*/
|
||||||
|
export function remove (arr, item) {
|
||||||
|
if (arr.length) {
|
||||||
|
const index = arr.indexOf(item)
|
||||||
|
if (index > -1) {
|
||||||
|
return arr.splice(index, 1)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export function isRegExp (v) {
|
||||||
|
return _toString.call(v) === '[object RegExp]'
|
||||||
|
}
|
||||||
|
|
||||||
|
const _toString = Object.prototype.toString
|
Loading…
x
Reference in New Issue
Block a user