refs #543 Fix focus logic in home

This commit is contained in:
AkiraFukushima 2018-08-22 10:00:40 +09:00
parent 562f4b6701
commit cb8dfd51c9
1 changed files with 18 additions and 16 deletions

View File

@ -8,12 +8,12 @@
<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"
@focusPrev="focusPrev" @focusPrev="focusPrev"
@selectToot="focusToot(index)" @selectToot="focusToot(message)"
> >
</toot> </toot>
</div> </div>
@ -37,7 +37,7 @@ export default {
components: { Toot }, components: { Toot },
data () { data () {
return { return {
focusedIndex: null focusedId: null
} }
}, },
computed: { computed: {
@ -78,8 +78,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/Home/changeHeading', false) this.$store.commit('TimelineSpace/Contents/Home/changeHeading', false)
} else if (newState === null && !this.heading) { } else if (newState === null && !this.heading) {
this.$store.commit('TimelineSpace/Contents/Home/changeHeading', true) this.$store.commit('TimelineSpace/Contents/Home/changeHeading', true)
@ -152,24 +152,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
} }
} }
} }