mirror of
https://github.com/iczer/vue-antd-admin
synced 2025-04-06 04:00:06 +08:00
Merge pull request #89 from 1446445040/master
refactor: 重构TabView和ContextMenu的部分逻辑
This commit is contained in:
commit
c434b81f7a
@ -1,7 +1,14 @@
|
|||||||
<template>
|
<template>
|
||||||
<a-menu :style="style" class="contextmenu" v-show="visible" @click="handleClick" :selectedKeys="selectedKeys">
|
<a-menu
|
||||||
|
v-show="visible"
|
||||||
|
class="contextmenu"
|
||||||
|
:style="style"
|
||||||
|
:selectedKeys="selectedKeys"
|
||||||
|
@click="handleClick"
|
||||||
|
>
|
||||||
<a-menu-item :key="item.key" v-for="item in itemList">
|
<a-menu-item :key="item.key" v-for="item in itemList">
|
||||||
<a-icon role="menuitemicon" v-if="item.icon" :type="item.icon" />{{item.text}}
|
<a-icon v-if="item.icon" :type="item.icon" />
|
||||||
|
<span>{{ item.text }}</span>
|
||||||
</a-menu-item>
|
</a-menu-item>
|
||||||
</a-menu>
|
</a-menu>
|
||||||
</template>
|
</template>
|
||||||
@ -38,23 +45,27 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
created () {
|
created () {
|
||||||
window.addEventListener('mousedown', e => this.closeMenu(e))
|
const clickHandler = () => this.closeMenu()
|
||||||
window.addEventListener('contextmenu', e => this.setPosition(e))
|
const contextMenuHandler = e => this.setPosition(e)
|
||||||
|
window.addEventListener('click', clickHandler)
|
||||||
|
window.addEventListener('contextmenu', contextMenuHandler)
|
||||||
|
this.$emit('hook:beforeDestroy', () => {
|
||||||
|
window.removeEventListener('click', clickHandler)
|
||||||
|
window.removeEventListener('contextmenu', contextMenuHandler)
|
||||||
|
})
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
closeMenu (e) {
|
closeMenu () {
|
||||||
if (['menuitemicon', 'menuitem'].indexOf(e.target.getAttribute('role')) < 0) {
|
this.$emit('update:visible', false)
|
||||||
this.$emit('update:visible', false)
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
setPosition (e) {
|
setPosition (e) {
|
||||||
this.left = e.clientX
|
this.left = e.clientX
|
||||||
this.top = e.clientY
|
this.top = e.clientY
|
||||||
this.target = e.target
|
this.target = e.target
|
||||||
},
|
},
|
||||||
handleClick ({key}) {
|
handleClick ({ key }) {
|
||||||
this.$emit('select', key, this.target)
|
this.$emit('select', key, this.target)
|
||||||
this.$emit('update:visible', false)
|
this.closeMenu()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -63,9 +74,11 @@ export default {
|
|||||||
<style lang="less" scoped>
|
<style lang="less" scoped>
|
||||||
.contextmenu{
|
.contextmenu{
|
||||||
position: fixed;
|
position: fixed;
|
||||||
z-index: 1;
|
z-index: 1000;
|
||||||
|
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
box-shadow: -4px 4px 16px 1px @shadow-color !important;
|
box-shadow: -4px 4px 16px 1px @shadow-color !important;
|
||||||
}
|
}
|
||||||
|
.ant-menu-item {
|
||||||
|
margin: 0 !important // 菜单项之间的缝隙会影响点击
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
@ -2,14 +2,15 @@
|
|||||||
<admin-layout>
|
<admin-layout>
|
||||||
<contextmenu :itemList="menuItemList" :visible.sync="menuVisible" @select="onMenuSelect" />
|
<contextmenu :itemList="menuItemList" :visible.sync="menuVisible" @select="onMenuSelect" />
|
||||||
<a-tabs
|
<a-tabs
|
||||||
@contextmenu.native="e => onContextmenu(e)"
|
|
||||||
v-if="multiPage"
|
v-if="multiPage"
|
||||||
|
type="editable-card"
|
||||||
:active-key="activePage"
|
:active-key="activePage"
|
||||||
:style="`margin: -16px auto 8px; ${layout == 'head' ? 'max-width: 1400px;' : ''}`"
|
:style="`margin: -16px auto 8px; ${layout == 'head' ? 'max-width: 1400px;' : ''}`"
|
||||||
:hide-add="true"
|
:hide-add="true"
|
||||||
type="editable-card"
|
|
||||||
@change="changePage"
|
@change="changePage"
|
||||||
@edit="editPage">
|
@edit="editPage"
|
||||||
|
@contextmenu="onContextmenu"
|
||||||
|
>
|
||||||
<a-tab-pane :key="page.fullPath" v-for="page in pageList">
|
<a-tab-pane :key="page.fullPath" v-for="page in pageList">
|
||||||
<span slot="tab" :pagekey="page.fullPath">{{page.name}}</span>
|
<span slot="tab" :pagekey="page.fullPath">{{page.name}}</span>
|
||||||
</a-tab-pane>
|
</a-tab-pane>
|
||||||
@ -33,7 +34,7 @@ import {mapState, mapMutations} from 'vuex'
|
|||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'TabsView',
|
name: 'TabsView',
|
||||||
components: {PageToggleTransition, Contextmenu, AdminLayout},
|
components: { PageToggleTransition, Contextmenu, AdminLayout },
|
||||||
data () {
|
data () {
|
||||||
return {
|
return {
|
||||||
pageList: [],
|
pageList: [],
|
||||||
@ -76,68 +77,43 @@ export default {
|
|||||||
this.$router.push(key)
|
this.$router.push(key)
|
||||||
},
|
},
|
||||||
editPage (key, action) {
|
editPage (key, action) {
|
||||||
this[action](key)
|
this[action](key) // remove
|
||||||
},
|
},
|
||||||
remove (key) {
|
remove (key) {
|
||||||
if (this.pageList.length === 1) {
|
if (this.pageList.length === 1) {
|
||||||
this.$message.warning('这是最后一页,不能再关闭了啦')
|
return this.$message.warning('这是最后一页,不能再关闭了啦')
|
||||||
return
|
|
||||||
}
|
}
|
||||||
let index = this.pageList.findIndex(item => item.fullPath == key)
|
let index = this.pageList.findIndex(item => item.fullPath === key)
|
||||||
let pageRoute = this.pageList[index]
|
let pageRoute = this.pageList[index]
|
||||||
this.clearCache(pageRoute)
|
this.clearCache(pageRoute)
|
||||||
this.pageList = this.pageList.filter(item => item.fullPath !== key)
|
this.pageList = this.pageList.filter(item => item.fullPath !== key)
|
||||||
if (key == this.activePage) {
|
if (key === this.activePage) {
|
||||||
index = index >= this.pageList.length ? this.pageList.length - 1 : index
|
index = index >= this.pageList.length ? this.pageList.length - 1 : index
|
||||||
this.activePage = this.pageList[index].fullPath
|
this.activePage = this.pageList[index].fullPath
|
||||||
this.$router.push(this.activePage)
|
this.$router.push(this.activePage)
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
onContextmenu (e) {
|
onContextmenu (e) {
|
||||||
const pageKey = this.getPageKey(e.target)
|
const pageKey = getPageKey(e.target)
|
||||||
if (pageKey !== null) {
|
if (pageKey) {
|
||||||
e.preventDefault()
|
e.preventDefault()
|
||||||
this.menuVisible = true
|
this.menuVisible = true
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
/**
|
|
||||||
* 由于ant-design-vue组件库的TabPane组件暂不支持自定义监听器,无法直接获取到右键target所在标签页的 pagekey 。故增加此方法用于
|
|
||||||
* 查询右键target所在标签页的标识 pagekey ,以用于自定义右键菜单的事件处理。
|
|
||||||
* 注:TabPane组件支持自定义监听器后可去除该方法并重构 ‘自定义右键菜单的事件处理’
|
|
||||||
* @param target 查询开始目标
|
|
||||||
* @param count 查询层级深度 (查找层级最多不超过3层,超过3层深度直接返回 null)
|
|
||||||
* @returns {String}
|
|
||||||
*/
|
|
||||||
getPageKey (target, depth) {
|
|
||||||
depth = depth || 0
|
|
||||||
if (depth > 2) {
|
|
||||||
return null
|
|
||||||
}
|
|
||||||
let pageKey = target.getAttribute('pagekey')
|
|
||||||
pageKey = pageKey || (target.previousElementSibling ? target.previousElementSibling.getAttribute('pagekey') : null)
|
|
||||||
return pageKey || (target.firstElementChild ? this.getPageKey(target.firstElementChild, ++depth) : null)
|
|
||||||
},
|
|
||||||
onMenuSelect (key, target) {
|
onMenuSelect (key, target) {
|
||||||
let pageKey = this.getPageKey(target)
|
let pageKey = getPageKey(target)
|
||||||
switch (key) {
|
switch (key) {
|
||||||
case '1':
|
case '1': this.closeLeft(pageKey); break
|
||||||
this.closeLeft(pageKey)
|
case '2': this.closeRight(pageKey); break
|
||||||
break
|
case '3': this.closeOthers(pageKey); break
|
||||||
case '2':
|
default: break
|
||||||
this.closeRight(pageKey)
|
|
||||||
break
|
|
||||||
case '3':
|
|
||||||
this.closeOthers(pageKey)
|
|
||||||
break
|
|
||||||
default:
|
|
||||||
break
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
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.pageList.forEach(item => {
|
||||||
if (item.fullPath != pageKey){
|
if (item.fullPath !== pageKey){
|
||||||
this.clearCache(item)
|
this.clearCache(item)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
@ -146,7 +122,7 @@ export default {
|
|||||||
this.$router.push(this.activePage)
|
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.pageList.forEach((item, i) => {
|
||||||
if (i < index) {
|
if (i < index) {
|
||||||
@ -154,13 +130,13 @@ export default {
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
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.findIndex(item => item.fullPath === this.activePage) === -1) {
|
||||||
this.activePage = this.pageList[0].fullPath
|
this.activePage = this.pageList[0].fullPath
|
||||||
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.pageList.forEach((item, i) => {
|
||||||
if (i > index) {
|
if (i > index) {
|
||||||
@ -168,27 +144,40 @@ export default {
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
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.findIndex(item => item.fullPath === this.activePage) === -1) {
|
||||||
this.activePage = this.pageList[this.pageList.length - 1].fullPath
|
this.activePage = this.pageList[this.pageList.length - 1].fullPath
|
||||||
this.$router.push(this.activePage)
|
this.$router.push(this.activePage)
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
clearCache(route) {
|
clearCache(route) {
|
||||||
const componentName = route.matched.slice(-1)[0].components.default.name
|
const componentName = route.matched.slice(-1)[0].components.default.name
|
||||||
if (this.dustbins.findIndex(item => item == componentName) == -1) {
|
if (this.dustbins.findIndex(item => item === componentName) === -1) {
|
||||||
this.setDustbins(this.dustbins.concat(componentName))
|
this.setDustbins(this.dustbins.concat(componentName))
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
putCache(route) {
|
putCache(route) {
|
||||||
const componentName = route.matched.slice(-1)[0].components.default.name
|
const componentName = route.matched.slice(-1)[0].components.default.name
|
||||||
if (this.dustbins.findIndex(item => item == componentName) != -1) {
|
if (this.dustbins.includes(componentName)) {
|
||||||
this.setDustbins(this.dustbins.filter(item => item != componentName))
|
this.setDustbins(this.dustbins.filter(item => item !== componentName))
|
||||||
}
|
}
|
||||||
|
|
||||||
},
|
},
|
||||||
...mapMutations('setting', ['setDustbins'])
|
...mapMutations('setting', ['setDustbins'])
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
/**
|
||||||
|
* 由于ant-design-vue组件库的TabPane组件暂不支持自定义监听器,无法直接获取到右键target所在标签页的 pagekey 。故增加此方法用于
|
||||||
|
* 查询右键target所在标签页的标识 pagekey ,以用于自定义右键菜单的事件处理。
|
||||||
|
* 注:TabPane组件支持自定义监听器后可去除该方法并重构 ‘自定义右键菜单的事件处理’
|
||||||
|
* @param target 查询开始目标
|
||||||
|
* @param depth 查询层级深度 (查找层级最多不超过3层,超过3层深度直接返回 null)
|
||||||
|
* @returns {String}
|
||||||
|
*/
|
||||||
|
function getPageKey (target, depth = 0) {
|
||||||
|
if (depth > 2 || !target) {
|
||||||
|
return null
|
||||||
|
}
|
||||||
|
return target.getAttribute('pagekey') || getPageKey(target.firstElementChild, ++depth)
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped lang="less">
|
<style scoped lang="less">
|
||||||
|
Loading…
x
Reference in New Issue
Block a user