feat: add tagviews drag sort

This commit is contained in:
xieyuhang 2020-06-03 12:26:23 +08:00
parent 6f80263b42
commit 0a3a3d0e2d
3 changed files with 50 additions and 31 deletions

View File

@ -34,11 +34,12 @@ export default {
emitScroll() { emitScroll() {
this.$emit('scroll') this.$emit('scroll')
}, },
moveToTarget(currentTag) { moveToTarget(currentRoute) {
const $container = this.$refs.scrollContainer.$el const $container = this.$refs.scrollContainer.$el
const $containerWidth = $container.offsetWidth const $containerWidth = $container.offsetWidth
const $scrollWrapper = this.scrollWrapper const $scrollWrapper = this.scrollWrapper
const tagList = this.$parent.$refs.tag const tagList = Array.from(window.document.querySelectorAll('#tags-view-container .tags-view-item'))
const currentTag = tagList.find(i => i.dataset.fullPath === currentRoute.fullPath)
let firstTag = null let firstTag = null
let lastTag = null let lastTag = null
@ -60,10 +61,10 @@ export default {
const nextTag = tagList[currentIndex + 1] const nextTag = tagList[currentIndex + 1]
// the tag's offsetLeft after of nextTag // the tag's offsetLeft after of nextTag
const afterNextTagOffsetLeft = nextTag.$el.offsetLeft + nextTag.$el.offsetWidth + tagAndTagSpacing const afterNextTagOffsetLeft = nextTag.offsetLeft + nextTag.offsetWidth + tagAndTagSpacing
// the tag's offsetLeft before of prevTag // the tag's offsetLeft before of prevTag
const beforePrevTagOffsetLeft = prevTag.$el.offsetLeft - tagAndTagSpacing const beforePrevTagOffsetLeft = prevTag.offsetLeft - tagAndTagSpacing
if (afterNextTagOffsetLeft > $scrollWrapper.scrollLeft + $containerWidth) { if (afterNextTagOffsetLeft > $scrollWrapper.scrollLeft + $containerWidth) {
$scrollWrapper.scrollLeft = afterNextTagOffsetLeft - $containerWidth $scrollWrapper.scrollLeft = afterNextTagOffsetLeft - $containerWidth

View File

@ -1,20 +1,22 @@
<template> <template>
<div id="tags-view-container" class="tags-view-container"> <div id="tags-view-container" class="tags-view-container">
<scroll-pane ref="scrollPane" class="tags-view-wrapper" @scroll="handleScroll"> <scroll-pane ref="scrollPane" class="tags-view-wrapper" @scroll="handleScroll">
<div ref="sortable-wrap">
<router-link <router-link
v-for="tag in visitedViews" v-for="tag in visitedViews"
ref="tag"
:key="tag.path" :key="tag.path"
:class="isActive(tag)?'active':''" :class="{ active: isActive(tag), sortable: !isAffix(tag) }"
:to="{ path: tag.path, query: tag.query, fullPath: tag.fullPath }" :to="{ path: tag.path, query: tag.query, fullPath: tag.fullPath }"
tag="span" tag="span"
class="tags-view-item" class="tags-view-item"
:data-full-path="tag.fullPath"
@click.middle.native="!isAffix(tag)?closeSelectedTag(tag):''" @click.middle.native="!isAffix(tag)?closeSelectedTag(tag):''"
@contextmenu.prevent.native="openMenu(tag,$event)" @contextmenu.prevent.native="openMenu(tag,$event)"
> >
{{ tag.title }} {{ tag.title }}
<span v-if="!isAffix(tag)" class="el-icon-close" @click.prevent.stop="closeSelectedTag(tag)" /> <span v-if="!isAffix(tag)" class="el-icon-close" @click.prevent.stop="closeSelectedTag(tag)" />
</router-link> </router-link>
</div>
</scroll-pane> </scroll-pane>
<ul v-show="visible" :style="{left:left+'px',top:top+'px'}" class="contextmenu"> <ul v-show="visible" :style="{left:left+'px',top:top+'px'}" class="contextmenu">
<li @click="refreshSelectedTag(selectedTag)">Refresh</li> <li @click="refreshSelectedTag(selectedTag)">Refresh</li>
@ -28,6 +30,7 @@
<script> <script>
import ScrollPane from './ScrollPane' import ScrollPane from './ScrollPane'
import path from 'path' import path from 'path'
import Sortable from 'sortablejs'
export default { export default {
components: { ScrollPane }, components: { ScrollPane },
@ -64,6 +67,7 @@ export default {
mounted() { mounted() {
this.initTags() this.initTags()
this.addTags() this.addTags()
this.initSortableTags()
}, },
methods: { methods: {
isActive(route) { isActive(route) {
@ -104,26 +108,34 @@ export default {
}, },
addTags() { addTags() {
const { name } = this.$route const { name } = this.$route
if (name) { if (!name) {
this.$store.dispatch('tagsView/addView', this.$route) return
} }
return false const res = this.visitedViews.find(v => v.path === this.$route.path)
}, if (res) {
moveToCurrentTag() {
const tags = this.$refs.tag
this.$nextTick(() => {
for (const tag of tags) {
if (tag.to.path === this.$route.path) {
this.$refs.scrollPane.moveToTarget(tag)
// when query is different then update // when query is different then update
if (tag.to.fullPath !== this.$route.fullPath) { if (res.fullPath !== this.$route.fullPath) {
this.$store.dispatch('tagsView/updateVisitedView', this.$route) this.$store.dispatch('tagsView/updateVisitedView', this.$route)
} }
break } else {
this.$store.dispatch('tagsView/addView', this.$route)
} }
},
initSortableTags() {
new Sortable(this.$refs['sortable-wrap'], {
draggable: '.sortable',
animation: 200,
onUpdate: event => {
const { oldIndex, newIndex } = event
this.$store.dispatch('tagsView/moveView', { oldIndex, newIndex })
} }
}) })
}, },
moveToCurrentTag() {
this.$nextTick(() => {
this.$refs.scrollPane.moveToTarget(this.$route)
})
},
refreshSelectedTag(view) { refreshSelectedTag(view) {
this.$store.dispatch('tagsView/delCachedView', view).then(() => { this.$store.dispatch('tagsView/delCachedView', view).then(() => {
const { fullPath } = view const { fullPath } = view

View File

@ -63,6 +63,9 @@ const mutations = {
break break
} }
} }
},
MOVE_VIEW: (state, { oldIndex, newIndex }) => {
state.visitedViews.splice(newIndex, 0, state.visitedViews.splice(oldIndex, 1)[0])
} }
} }
@ -149,6 +152,9 @@ const actions = {
updateVisitedView({ commit }, view) { updateVisitedView({ commit }, view) {
commit('UPDATE_VISITED_VIEW', view) commit('UPDATE_VISITED_VIEW', view)
},
moveView({ commit }, arg) {
commit('MOVE_VIEW', arg)
} }
} }