refs #543 Fix focus logic in tag

This commit is contained in:
AkiraFukushima 2018-08-22 12:55:23 +09:00
parent 9e17d42cac
commit 38dcb521a1
1 changed files with 18 additions and 16 deletions

View File

@ -4,11 +4,11 @@
<div v-shortkey="{linux: ['ctrl', 'r'], mac: ['meta', 'r']}" @shortkey="reload()"> <div v-shortkey="{linux: ['ctrl', 'r'], mac: ['meta', 'r']}" @shortkey="reload()">
</div> </div>
<transition-group name="timeline" tag="div"> <transition-group name="timeline" tag="div">
<div class="tag-timeline" v-for="(message, index) in timeline" v-bind:key="message.uri"> <div class="tag-timeline" v-for="message in timeline" v-bind:key="message.uri">
<toot <toot
:message="message" :message="message"
:filter="filter" :filter="filter"
:focused="index === focusedIndex" :focused="message.uri === focusedId"
v-on:update="updateToot" v-on:update="updateToot"
v-on:delete="deleteToot" v-on:delete="deleteToot"
@focusNext="focusNext" @focusNext="focusNext"
@ -37,7 +37,7 @@ export default {
props: ['tag'], props: ['tag'],
data () { data () {
return { return {
focusedIndex: null focusedId: null
} }
}, },
computed: { computed: {
@ -76,8 +76,8 @@ export default {
}) })
} }
}, },
focusedIndex: function (newState, oldState) { focusedId: function (newState, oldState) {
if (newState >= 0 && this.heading) { if (newState && this.heading) {
this.$store.commit('TimelineSpace/Contents/Hashtag/Tag/changeHeading', false) this.$store.commit('TimelineSpace/Contents/Hashtag/Tag/changeHeading', false)
} else if (newState === null && !this.heading) { } else if (newState === null && !this.heading) {
this.$store.commit('TimelineSpace/Contents/Hashtag/Tag/changeHeading', true) this.$store.commit('TimelineSpace/Contents/Hashtag/Tag/changeHeading', true)
@ -185,24 +185,26 @@ export default {
document.getElementById('scrollable'), document.getElementById('scrollable'),
0 0
) )
this.focusedIndex = null this.focusedId = null
}, },
focusNext () { focusNext () {
if (this.focusedIndex === null) { const currentIndex = this.timeline.findIndex(toot => this.focusedId === toot.uri)
this.focusedIndex = 0 if (currentIndex === -1) {
} else if (this.focusedIndex < this.timeline.length) { this.focusedId = this.timeline[0].uri
this.focusedIndex++ } else if (currentIndex < this.timeline.length) {
this.focusedId = this.timeline[currentIndex + 1].uri
} }
}, },
focusPrev () { focusPrev () {
if (this.focusedIndex === 0) { const currentIndex = this.timeline.findIndex(toot => this.focusedId === toot.uri)
this.focusedIndex = null if (currentIndex === 0) {
} else if (this.focusedIndex > 0) { this.focusedId = null
this.focusedIndex-- } else if (currentIndex > 0) {
this.focusedId = this.timeline[currentIndex - 1].uri
} }
}, },
focusToot (index) { focusToot (message) {
this.focusedIndex = index this.focusedId = message.uri
} }
} }
} }