parent
69860c48b0
commit
52e1afa2f2
|
@ -3,6 +3,10 @@
|
||||||
<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>
|
||||||
|
|
||||||
|
@ -11,41 +15,83 @@ export default {
|
||||||
name: 'scrollPane',
|
name: 'scrollPane',
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
left: 0
|
left: 0,
|
||||||
|
isOverflow: false,
|
||||||
|
container: undefined,
|
||||||
|
containerWidth: undefined,
|
||||||
|
wrapper: undefined,
|
||||||
|
wrapperWidth: undefined,
|
||||||
|
scrollbarContainer: undefined,
|
||||||
|
scrollbarContainerWidth: undefined,
|
||||||
|
scrollbar: undefined,
|
||||||
|
scrollbarWidth: undefined
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
mounted() {
|
||||||
|
this.container = this.$refs.scrollContainer
|
||||||
|
this.wrapper = this.$refs.scrollWrapper
|
||||||
|
this.scrollbarContainer = this.$refs.scrollbarContainer
|
||||||
|
this.scrollbar = this.$refs.scrollbar
|
||||||
|
this.calcSize()
|
||||||
|
window.addEventListener('resize', () => {
|
||||||
|
this.$forceUpdate()
|
||||||
|
this.calcSize()
|
||||||
|
}, false)
|
||||||
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
calcPos() {
|
||||||
|
if (this.isOverflow) {
|
||||||
|
this.scrollbar.style.left = -(this.scrollbarContainerWidth - this.scrollbarWidth) * this.left / (this.wrapperWidth - this.containerWidth + 100) + '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 + 100 > this.containerWidth
|
||||||
|
if (!this.isOverflow) return false
|
||||||
|
this.scrollbarWidth = this.scrollbarContainerWidth * this.containerWidth / (this.wrapperWidth + 100)
|
||||||
|
this.scrollbar.style.width = this.scrollbarWidth + 'px'
|
||||||
|
this.calcPos()
|
||||||
|
},
|
||||||
handleScroll(e) {
|
handleScroll(e) {
|
||||||
e.preventDefault()
|
e.preventDefault()
|
||||||
const $container = this.$refs.scrollContainer
|
|
||||||
const $containerWidth = $container.offsetWidth
|
|
||||||
const $wrapper = this.$refs.scrollWrapper
|
|
||||||
const $wrapperWidth = $wrapper.offsetWidth
|
|
||||||
if (e.wheelDelta > 0) {
|
if (e.wheelDelta > 0) {
|
||||||
|
// 滚轮下滑
|
||||||
this.left = Math.min(0, this.left + e.wheelDelta)
|
this.left = Math.min(0, this.left + e.wheelDelta)
|
||||||
} else {
|
} else {
|
||||||
if ($containerWidth - 100 < $wrapperWidth) {
|
// 滚轮上滑
|
||||||
if (this.left < -($wrapperWidth - $containerWidth + 100)) {
|
// 可滑动区间[-(this.wrapperWidth-this.containerWidth+100),0]
|
||||||
this.left = this.left
|
if (this.left >= -(this.wrapperWidth - this.containerWidth + 100)) {
|
||||||
} else {
|
this.left = Math.max(this.left + e.wheelDelta, this.containerWidth - this.wrapperWidth - 100)
|
||||||
this.left = Math.max(this.left + e.wheelDelta, $containerWidth - $wrapperWidth - 100)
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
this.left = 0
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
this.calcPos()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</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;
|
||||||
|
top: 30px;
|
||||||
|
width:100%;
|
||||||
|
height: 5px;
|
||||||
|
.scrollbar{
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
height: 100%;
|
||||||
|
background: rgba(0,0,0,.8);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -1,15 +1,17 @@
|
||||||
<template>
|
<template>
|
||||||
<scroll-pane class='tags-view-container'>
|
<div class="tag-container">
|
||||||
<router-link 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)">
|
<scroll-pane class='tags-view-container' ref="pane">
|
||||||
|
<router-link 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">
|
||||||
{{$t('route.'+tag.title)}}
|
{{$t('route.'+tag.title)}}
|
||||||
<span class='el-icon-close' @click='closeViewTags(tag,$event)'></span>
|
<span class='el-icon-close' @click='closeViewTags(tag,$event)'></span>
|
||||||
</router-link>
|
</router-link>
|
||||||
|
</scroll-pane>
|
||||||
<ul class='contextmenu' v-show="open" :style="{left:left+'px',top:top+'px'}">
|
<ul class='contextmenu' v-show="open" :style="{left:left+'px',top:top+'px'}">
|
||||||
<li @click="closePage(0,$event)">关闭</li>
|
<li @click="closePage(0,$event)">关闭</li>
|
||||||
<li @click="closePage(1,$event)">关闭其他</li>
|
<li @click="closePage(1,$event)">关闭其他</li>
|
||||||
<li @click="closePage(2,$event)">关闭所有</li>
|
<li @click="closePage(2,$event)">关闭所有</li>
|
||||||
</ul>
|
</ul>
|
||||||
</scroll-pane>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
@ -27,6 +29,7 @@ export default {
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
open: false,
|
open: false,
|
||||||
|
isOverflow: false,
|
||||||
top: 0,
|
top: 0,
|
||||||
left: 0,
|
left: 0,
|
||||||
isSelect: {}
|
isSelect: {}
|
||||||
|
@ -35,6 +38,9 @@ export default {
|
||||||
mounted() {
|
mounted() {
|
||||||
this.addViewTags()
|
this.addViewTags()
|
||||||
},
|
},
|
||||||
|
updated() {
|
||||||
|
this.$nextTick(this.$refs.pane.calcSize())
|
||||||
|
},
|
||||||
methods: {
|
methods: {
|
||||||
closeViewTags(view, $event) {
|
closeViewTags(view, $event) {
|
||||||
this.$store.dispatch('delVisitedViews', view).then((views) => {
|
this.$store.dispatch('delVisitedViews', view).then((views) => {
|
||||||
|
@ -82,8 +88,8 @@ export default {
|
||||||
openMenu(tag, e) {
|
openMenu(tag, e) {
|
||||||
this.open = true
|
this.open = true
|
||||||
this.isSelect = tag
|
this.isSelect = tag
|
||||||
this.left = e.clientX - document.querySelector('.main-container').offsetLeft
|
this.left = e.clientX
|
||||||
this.top = e.clientY - document.querySelector('.tags-view-container').offsetTop
|
this.top = e.clientY
|
||||||
},
|
},
|
||||||
closeMenu() {
|
closeMenu() {
|
||||||
this.open = false
|
this.open = false
|
||||||
|
@ -98,62 +104,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;
|
|
||||||
border-bottom: 1px solid #d8dce5;
|
|
||||||
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .12), 0 0 3px 0 rgba(0, 0, 0, .04);
|
|
||||||
.contextmenu{
|
|
||||||
margin: 0;
|
|
||||||
background: #fff;
|
|
||||||
z-index: 99999;
|
|
||||||
position:absolute;
|
|
||||||
list-style-type: none;
|
|
||||||
padding-left: 0;
|
|
||||||
border: 1px solid rgba(0,0,0,0.4);
|
|
||||||
font-size: 0.8rem;
|
|
||||||
box-shadow: 2px 2px 3px 0 rgba(0, 0, 0, .5);
|
|
||||||
li{
|
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0.2rem 1.5rem 0.3rem 0.8rem;
|
background: #fff;
|
||||||
&:hover{
|
z-index: 99999;
|
||||||
background: #eee;
|
position: absolute;
|
||||||
cursor: default;
|
list-style-type: none;
|
||||||
|
padding-left: 0;
|
||||||
|
border: 1px solid rgba(0, 0, 0, 0.4);
|
||||||
|
font-size: 0.8rem;
|
||||||
|
box-shadow: 2px 2px 3px 0 rgba(0, 0, 0, .5);
|
||||||
|
li {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0.2rem 1.5rem 0.3rem 0.8rem;
|
||||||
|
&:hover {
|
||||||
|
background: #eee;
|
||||||
|
cursor: default;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
.tags-view-container {
|
||||||
.tags-view-item {
|
background: #fff;
|
||||||
display: inline-block;
|
height: 34px;
|
||||||
position: relative;
|
border-bottom: 1px solid #d8dce5;
|
||||||
height: 26px;
|
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .12), 0 0 3px 0 rgba(0, 0, 0, .04);
|
||||||
line-height: 26px;
|
.tags-view-item {
|
||||||
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;
|
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">
|
||||||
|
@ -179,4 +187,5 @@ export default {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in New Issue