1.tags过多时,显示滚动条(不可按住滑动)
2.右键tags显示关闭多个tag的菜单 3.优化scrollPane滚轮滚动,计算偏移量的逻辑
This commit is contained in:
parent
e7f626f015
commit
5487fceedc
|
@ -3,69 +3,114 @@
|
||||||
<div class="scroll-wrapper" ref="scrollWrapper" :style="{left: left + 'px'}">
|
<div class="scroll-wrapper" ref="scrollWrapper" :style="{left: left + 'px'}">
|
||||||
<slot></slot>
|
<slot></slot>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="bar-container" v-show="isOverflow" ref="scrollbarContainer">
|
||||||
|
<div class="scrollbar" ref="scrollbar">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
const padding = 15 // tag's padding
|
const padding = 30 // tag's padding
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'scrollPane',
|
name: 'scrollPane',
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
left: 0
|
left: 0,
|
||||||
}
|
isOverflow: false,
|
||||||
},
|
container: undefined,
|
||||||
methods: {
|
containerWidth: undefined,
|
||||||
handleScroll(e) {
|
wrapper: undefined,
|
||||||
e.preventDefault()
|
wrapperWidth: undefined,
|
||||||
const $container = this.$refs.scrollContainer
|
scrollbarContainer: undefined,
|
||||||
const $containerWidth = $container.offsetWidth
|
scrollbarContainerWidth: undefined,
|
||||||
const $wrapper = this.$refs.scrollWrapper
|
scrollbar: undefined,
|
||||||
const $wrapperWidth = $wrapper.offsetWidth
|
scrollbarWidth: undefined
|
||||||
|
|
||||||
if (e.wheelDelta > 0) {
|
|
||||||
this.left = Math.min(0, this.left + e.wheelDelta)
|
|
||||||
} else {
|
|
||||||
if ($containerWidth - padding < $wrapperWidth) {
|
|
||||||
if (this.left < -($wrapperWidth - $containerWidth + padding)) {
|
|
||||||
this.left = this.left
|
|
||||||
} else {
|
|
||||||
this.left = Math.max(this.left + e.wheelDelta, $containerWidth - $wrapperWidth - padding)
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
this.left = 0
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
moveToTarget($target) {
|
mounted() {
|
||||||
const $container = this.$refs.scrollContainer
|
this.container = this.$refs.scrollContainer
|
||||||
const $containerWidth = $container.offsetWidth
|
this.wrapper = this.$refs.scrollWrapper
|
||||||
const $targetLeft = $target.offsetLeft
|
this.scrollbarContainer = this.$refs.scrollbarContainer
|
||||||
const $targetWidth = $target.offsetWidth
|
this.scrollbar = this.$refs.scrollbar
|
||||||
|
this.calcSize()
|
||||||
|
window.addEventListener('resize', () => {
|
||||||
|
this.$forceUpdate()
|
||||||
|
this.calcSize()
|
||||||
|
}, false)
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
calcPos() {
|
||||||
|
if (this.isOverflow) {
|
||||||
|
this.scrollbar.style.left = -(this.scrollbarContainerWidth - this.scrollbarWidth) * this.left / (this.wrapperWidth - this.containerWidth + padding) + 'px'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
calcSize() {
|
||||||
|
// 计算滚动条的长度
|
||||||
|
this.containerWidth = parseFloat(this.container.offsetWidth, 10)
|
||||||
|
this.wrapperWidth = parseFloat(this.wrapper.offsetWidth, 10)
|
||||||
|
this.scrollbarContainerWidth = parseFloat(this.scrollbarContainer.offsetWidth, 10)
|
||||||
|
this.isOverflow = this.wrapperWidth + padding > this.containerWidth
|
||||||
|
if (!this.isOverflow) return false
|
||||||
|
this.scrollbarWidth = this.scrollbarContainerWidth * this.containerWidth / (this.wrapperWidth + padding)
|
||||||
|
this.scrollbar.style.width = this.scrollbarWidth + 'px'
|
||||||
|
this.calcPos()
|
||||||
|
},
|
||||||
|
handleScroll(e) {
|
||||||
|
e.preventDefault()
|
||||||
|
if (e.wheelDelta > 0) {
|
||||||
|
// when whell up
|
||||||
|
this.left = Math.min(0, this.left + e.wheelDelta)
|
||||||
|
} else {
|
||||||
|
// when wheel down
|
||||||
|
// this.left∈[-(this.wrapperWidth-this.containerWidth+100),0]
|
||||||
|
if (this.left >= -(this.wrapperWidth - this.containerWidth + padding)) {
|
||||||
|
this.left = Math.max(this.left + e.wheelDelta, this.containerWidth - this.wrapperWidth - padding)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
this.calcPos()
|
||||||
|
},
|
||||||
|
moveToTarget($target) {
|
||||||
|
const $targetLeft = $target.offsetLeft
|
||||||
|
const $targetWidth = $target.offsetWidth
|
||||||
|
|
||||||
if ($targetLeft < -this.left) {
|
if ($targetLeft < -this.left) {
|
||||||
// tag in the left
|
// tag in the left
|
||||||
this.left = -$targetLeft + padding
|
this.left = -$targetLeft + padding
|
||||||
} else if ($targetLeft + padding > -this.left && $targetLeft + $targetWidth < -this.left + $containerWidth - padding) {
|
} else if ($targetLeft + padding > -this.left && $targetLeft + $targetWidth < -this.left + this.containerWidth - padding) {
|
||||||
// tag in the current view
|
// tag in the current view
|
||||||
// eslint-disable-line
|
// eslint-disable-line
|
||||||
} else {
|
} else {
|
||||||
// tag in the right
|
// tag in the right
|
||||||
this.left = -($targetLeft - ($containerWidth - $targetWidth) + padding)
|
this.left = -($targetLeft - (this.containerWidth - $targetWidth) + padding)
|
||||||
|
}
|
||||||
|
this.calcSize()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style rel="stylesheet/scss" lang="scss" scoped>
|
<style rel="stylesheet/scss" lang="scss" scoped>
|
||||||
.scroll-container {
|
.scroll-container {
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
position: relative;
|
position: relative;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
.scroll-wrapper {
|
.scroll-wrapper {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
|
}
|
||||||
|
.bar-container{
|
||||||
|
position: absolute;
|
||||||
|
bottom: 0;
|
||||||
|
width:100%;
|
||||||
|
height: 3px;
|
||||||
|
.scrollbar{
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
height: 100%;
|
||||||
|
background: rgba(0,0,0,.8);
|
||||||
|
border-radius: 1.5px;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -29,6 +29,25 @@ const tagsView = {
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
DEL_OTHER_VIEWS: (state, view) => {
|
||||||
|
for (const [i, v] of state.visitedViews.entries()) {
|
||||||
|
if (v.path === view.path) {
|
||||||
|
state.visitedViews = [].concat(state.visitedViews.slice(i, i + 1))
|
||||||
|
break
|
||||||
|
}
|
||||||
|
}
|
||||||
|
for (const i of state.cachedViews) {
|
||||||
|
if (i === view.name) {
|
||||||
|
const index = state.cachedViews.indexOf(i)
|
||||||
|
state.cachedViews = [].concat(state.cachedViews.slice(index, i + 1))
|
||||||
|
break
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
DEL_ALL_VIEWS: (state) => {
|
||||||
|
state.visitedViews = []
|
||||||
|
state.cachedViews = []
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
actions: {
|
actions: {
|
||||||
|
@ -40,6 +59,18 @@ const tagsView = {
|
||||||
commit('DEL_VISITED_VIEWS', view)
|
commit('DEL_VISITED_VIEWS', view)
|
||||||
resolve([...state.visitedViews])
|
resolve([...state.visitedViews])
|
||||||
})
|
})
|
||||||
|
},
|
||||||
|
delOtherViews({ commit, state }, view) {
|
||||||
|
return new Promise((resolve) => {
|
||||||
|
commit('DEL_OTHER_VIEWS', view)
|
||||||
|
resolve([...state.visitedViews])
|
||||||
|
})
|
||||||
|
},
|
||||||
|
delAllViews({ commit, state }) {
|
||||||
|
return new Promise((resolve) => {
|
||||||
|
commit('DEL_ALL_VIEWS')
|
||||||
|
resolve([...state.visitedViews])
|
||||||
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,18 +1,36 @@
|
||||||
<template>
|
<template>
|
||||||
<scroll-pane class='tags-view-container' ref='scrollPane'>
|
<div class="tag-container">
|
||||||
<router-link ref='tag' class="tags-view-item" :class="isActive(tag)?'active':''" v-for="tag in Array.from(visitedViews)" :to="tag.path":key="tag.path">
|
<scroll-pane class='tags-view-container' ref='scrollPane'>
|
||||||
{{generateTitle(tag.title)}}
|
<router-link ref='tag' class="tags-view-item" :class="isActive(tag)?'active':''" v-for="tag in Array.from(visitedViews)" :to="tag.path":key="tag.path" @contextmenu.prevent.native="openMenu(tag,$event)" v-Clickoutside="closeMenu">
|
||||||
<span class='el-icon-close' @click='closeViewTags(tag,$event)'></span>
|
{{generateTitle(tag.title)}}
|
||||||
</router-link>
|
<span class='el-icon-close' @click='closeViewTags(tag,$event)'></span>
|
||||||
</scroll-pane>
|
</router-link>
|
||||||
|
</scroll-pane>
|
||||||
|
<ul class='contextmenu' v-show="open" :style="{left:left+'px',top:top+'px'}">
|
||||||
|
<li @click="closePage(0,$event)">关闭</li>
|
||||||
|
<li @click="closePage(1,$event)">关闭其他</li>
|
||||||
|
<li @click="closePage(2,$event)">关闭所有</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import ScrollPane from '@/components/ScrollPane'
|
import ScrollPane from '@/components/ScrollPane'
|
||||||
|
import Clickoutside from 'element-ui/src/utils/clickoutside'
|
||||||
import { generateTitle } from '@/utils/i18n'
|
import { generateTitle } from '@/utils/i18n'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
components: { ScrollPane },
|
components: { ScrollPane },
|
||||||
|
directives: { Clickoutside },
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
open: false,
|
||||||
|
isOverflow: false,
|
||||||
|
top: 0,
|
||||||
|
left: 0,
|
||||||
|
isSelect: {}
|
||||||
|
}
|
||||||
|
},
|
||||||
computed: {
|
computed: {
|
||||||
visitedViews() {
|
visitedViews() {
|
||||||
return this.$store.state.tagsView.visitedViews
|
return this.$store.state.tagsView.visitedViews
|
||||||
|
@ -21,6 +39,9 @@ export default {
|
||||||
mounted() {
|
mounted() {
|
||||||
this.addViewTags()
|
this.addViewTags()
|
||||||
},
|
},
|
||||||
|
updated() {
|
||||||
|
this.$nextTick(this.$refs.scrollPane.calcSize())
|
||||||
|
},
|
||||||
methods: {
|
methods: {
|
||||||
generateTitle,
|
generateTitle,
|
||||||
closeViewTags(view, $event) {
|
closeViewTags(view, $event) {
|
||||||
|
@ -36,6 +57,20 @@ export default {
|
||||||
})
|
})
|
||||||
$event.preventDefault()
|
$event.preventDefault()
|
||||||
},
|
},
|
||||||
|
closePage(flag, $event) {
|
||||||
|
if (flag === 0) {
|
||||||
|
this.closeViewTags(this.isSelect, $event)
|
||||||
|
} else if (flag === 1) {
|
||||||
|
this.$router.push(this.isSelect.path)
|
||||||
|
this.$store.dispatch('delOtherViews', this.isSelect)
|
||||||
|
$event.preventDefault()
|
||||||
|
} else {
|
||||||
|
this.$router.push('/')
|
||||||
|
this.$store.dispatch('delAllViews')
|
||||||
|
$event.preventDefault()
|
||||||
|
}
|
||||||
|
this.open = false
|
||||||
|
},
|
||||||
generateRoute() {
|
generateRoute() {
|
||||||
if (this.$route.name) {
|
if (this.$route.name) {
|
||||||
return this.$route
|
return this.$route
|
||||||
|
@ -62,6 +97,15 @@ export default {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
},
|
||||||
|
openMenu(tag, e) {
|
||||||
|
this.open = true
|
||||||
|
this.isSelect = tag
|
||||||
|
this.left = e.clientX
|
||||||
|
this.top = e.clientY
|
||||||
|
},
|
||||||
|
closeMenu() {
|
||||||
|
this.open = false
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
|
@ -74,43 +118,64 @@ export default {
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style rel="stylesheet/scss" lang="scss" scoped>
|
<style rel="stylesheet/scss" lang="scss" scoped>
|
||||||
.tags-view-container {
|
.tag-container {
|
||||||
background: #fff;
|
.contextmenu {
|
||||||
height: 34px;
|
margin: 0;
|
||||||
border-bottom: 1px solid #d8dce5;
|
background: #fff;
|
||||||
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .12), 0 0 3px 0 rgba(0, 0, 0, .04);
|
z-index: 99999;
|
||||||
.tags-view-item {
|
position: absolute;
|
||||||
display: inline-block;
|
list-style-type: none;
|
||||||
position: relative;
|
padding-left: 0;
|
||||||
height: 26px;
|
border: 1px solid rgba(0, 0, 0, 0.4);
|
||||||
line-height: 26px;
|
font-size: 0.8rem;
|
||||||
border: 1px solid #d8dce5;
|
box-shadow: 2px 2px 3px 0 rgba(0, 0, 0, .5);
|
||||||
color: #495060;
|
li {
|
||||||
background: #fff;
|
margin: 0;
|
||||||
padding: 0 8px;
|
padding: 0.2rem 1.5rem 0.3rem 0.8rem;
|
||||||
font-size: 12px;
|
&:hover {
|
||||||
margin-left: 5px;
|
background: #eee;
|
||||||
margin-top: 4px;
|
cursor: default;
|
||||||
&:first-of-type {
|
}
|
||||||
margin-left: 15px;
|
}
|
||||||
}
|
}
|
||||||
&.active {
|
.tags-view-container {
|
||||||
background-color: #42b983;
|
background: #fff;
|
||||||
color: #fff;
|
height: 34px;
|
||||||
border-color: #42b983;
|
border-bottom: 1px solid #d8dce5;
|
||||||
&::before {
|
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .12), 0 0 3px 0 rgba(0, 0, 0, .04);
|
||||||
content: '';
|
.tags-view-item {
|
||||||
background: #fff;
|
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
width: 8px;
|
|
||||||
height: 8px;
|
|
||||||
border-radius: 50%;
|
|
||||||
position: relative;
|
position: relative;
|
||||||
margin-right: 2px;
|
height: 26px;
|
||||||
|
line-height: 26px;
|
||||||
|
border: 1px solid #d8dce5;
|
||||||
|
color: #495060;
|
||||||
|
background: #fff;
|
||||||
|
padding: 0 8px;
|
||||||
|
font-size: 12px;
|
||||||
|
margin-left: 5px;
|
||||||
|
margin-top: 4px;
|
||||||
|
&:first-of-type {
|
||||||
|
margin-left: 15px;
|
||||||
|
}
|
||||||
|
&.active {
|
||||||
|
background-color: #42b983;
|
||||||
|
color: #fff;
|
||||||
|
border-color: #42b983;
|
||||||
|
&::before {
|
||||||
|
content: '';
|
||||||
|
background: #fff;
|
||||||
|
display: inline-block;
|
||||||
|
width: 8px;
|
||||||
|
height: 8px;
|
||||||
|
border-radius: 50%;
|
||||||
|
position: relative;
|
||||||
|
margin-right: 2px;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
<style rel="stylesheet/scss" lang="scss">
|
<style rel="stylesheet/scss" lang="scss">
|
||||||
|
|
Loading…
Reference in New Issue