213 lines
6.6 KiB
Vue
213 lines
6.6 KiB
Vue
<template>
|
|
<div id="favourites" v-shortkey="shortcutEnabled ? { next: ['j'] } : {}" @shortkey="handleKey">
|
|
<div v-shortkey="{ linux: ['ctrl', 'r'], mac: ['meta', 'r'] }" @shortkey="reload()"></div>
|
|
<DynamicScroller :items="favourites" :min-item-size="60" id="scroller" class="scroller" ref="scroller">
|
|
<template v-slot="{ item, index, active }">
|
|
<DynamicScrollerItem :item="item" :active="active" :size-dependencies="[item.uri]" :data-index="index" :watchData="true">
|
|
<toot
|
|
:message="item"
|
|
:focused="item.uri === focusedId"
|
|
:overlaid="modalOpened"
|
|
:filters="[]"
|
|
v-on:update="updateToot"
|
|
v-on:delete="deleteToot"
|
|
@focusNext="focusNext"
|
|
@focusPrev="focusPrev"
|
|
@focusRight="focusSidebar"
|
|
@selectToot="focusToot(item)"
|
|
>
|
|
</toot>
|
|
</DynamicScrollerItem>
|
|
</template>
|
|
</DynamicScroller>
|
|
<div :class="openSideBar ? 'upper-with-side-bar' : 'upper'" v-show="!heading">
|
|
<el-button type="primary" icon="el-icon-arrow-up" @click="upper" circle> </el-button>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { mapState, mapGetters } from 'vuex'
|
|
import Toot from '~/src/renderer/components/organisms/Toot'
|
|
import reloadable from '~/src/renderer/components/mixins/reloadable'
|
|
import { Event } from '~/src/renderer/components/event'
|
|
|
|
export default {
|
|
name: 'favourites',
|
|
components: { Toot },
|
|
mixins: [reloadable],
|
|
data() {
|
|
return {
|
|
heading: true,
|
|
focusedId: null
|
|
}
|
|
},
|
|
computed: {
|
|
...mapState({
|
|
openSideBar: state => state.TimelineSpace.Contents.SideBar.openSideBar,
|
|
backgroundColor: state => state.App.theme.background_color,
|
|
startReload: state => state.TimelineSpace.HeaderMenu.reload,
|
|
account: state => state.TimelineSpace.account,
|
|
favourites: state => state.TimelineSpace.Contents.Favourites.favourites,
|
|
lazyLoading: state => state.TimelineSpace.Contents.Favourites.lazyLoading
|
|
}),
|
|
...mapGetters('TimelineSpace/Modals', ['modalOpened']),
|
|
shortcutEnabled: function () {
|
|
return !this.focusedId && !this.modalOpened
|
|
}
|
|
},
|
|
created() {
|
|
this.$store.commit('TimelineSpace/Contents/changeLoading', true)
|
|
this.$store
|
|
.dispatch('TimelineSpace/Contents/Favourites/fetchFavourites', this.account)
|
|
.catch(() => {
|
|
this.$message({
|
|
message: this.$t('message.favourite_fetch_error'),
|
|
type: 'error'
|
|
})
|
|
})
|
|
.finally(() => {
|
|
this.$store.commit('TimelineSpace/Contents/changeLoading', false)
|
|
})
|
|
},
|
|
mounted() {
|
|
document.getElementById('scroller').addEventListener('scroll', this.onScroll)
|
|
Event.$on('focus-timeline', () => {
|
|
// If focusedId does not change, we have to refresh focusedId because Toot component watch change events.
|
|
const previousFocusedId = this.focusedId
|
|
this.focusedId = 0
|
|
this.$nextTick(function () {
|
|
this.focusedId = previousFocusedId
|
|
})
|
|
})
|
|
},
|
|
beforeDestroy() {
|
|
Event.$off('focus-timeline')
|
|
},
|
|
destroyed() {
|
|
this.$store.commit('TimelineSpace/Contents/Favourites/updateFavourites', [])
|
|
if (document.getElementById('scroller') !== undefined && document.getElementById('scroller') !== null) {
|
|
document.getElementById('scroller').removeEventListener('scroll', this.onScroll)
|
|
document.getElementById('scroller').scrollTop = 0
|
|
}
|
|
},
|
|
watch: {
|
|
startReload: function (newState, oldState) {
|
|
if (!oldState && newState) {
|
|
this.reload().finally(() => {
|
|
this.$store.commit('TimelineSpace/HeaderMenu/changeReload', false)
|
|
})
|
|
}
|
|
},
|
|
focusedId: function (newState, _oldState) {
|
|
if (newState && this.heading) {
|
|
this.heading = false
|
|
} else if (newState === null && !this.heading) {
|
|
this.heading = true
|
|
}
|
|
}
|
|
},
|
|
methods: {
|
|
updateToot(message) {
|
|
this.$store.commit('TimelineSpace/Contents/Favourites/updateToot', message)
|
|
},
|
|
deleteToot(message) {
|
|
this.$store.commit('TimelineSpace/Contents/Favourites/deleteToot', message)
|
|
},
|
|
onScroll(event) {
|
|
if (
|
|
event.target.clientHeight + event.target.scrollTop >= document.getElementById('scroller').scrollHeight - 10 &&
|
|
!this.lazyloading
|
|
) {
|
|
this.$store
|
|
.dispatch('TimelineSpace/Contents/Favourites/lazyFetchFavourites', this.favourites[this.favourites.length - 1])
|
|
.catch(() => {
|
|
this.$message({
|
|
message: this.$t('message.favourite_fetch_error'),
|
|
type: 'error'
|
|
})
|
|
})
|
|
}
|
|
// for upper
|
|
if (event.target.scrollTop > 10 && this.heading) {
|
|
this.heading = false
|
|
} else if (event.target.scrollTop <= 10 && !this.heading) {
|
|
this.heading = true
|
|
}
|
|
},
|
|
async reload() {
|
|
this.$store.commit('TimelineSpace/changeLoading', true)
|
|
try {
|
|
const account = await this.reloadable()
|
|
await this.$store.dispatch('TimelineSpace/Contents/Favourites/fetchFavourites', account).catch(() => {
|
|
this.$message({
|
|
message: this.$t('message.favourite_fetch_error'),
|
|
type: 'error'
|
|
})
|
|
})
|
|
} finally {
|
|
this.$store.commit('TimelineSpace/changeLoading', false)
|
|
}
|
|
},
|
|
upper() {
|
|
this.$refs.scroller.scrollToItem(0)
|
|
this.focusedId = null
|
|
},
|
|
focusNext() {
|
|
const currentIndex = this.favourites.findIndex(toot => this.focusedId === toot.uri)
|
|
if (currentIndex === -1) {
|
|
this.focusedId = this.favourites[0].uri
|
|
} else if (currentIndex < this.favourites.length) {
|
|
this.focusedId = this.favourites[currentIndex + 1].uri
|
|
}
|
|
},
|
|
focusPrev() {
|
|
const currentIndex = this.favourites.findIndex(toot => this.focusedId === toot.uri)
|
|
if (currentIndex === 0) {
|
|
this.focusedId = null
|
|
} else if (currentIndex > 0) {
|
|
this.focusedId = this.favourites[currentIndex - 1].uri
|
|
}
|
|
},
|
|
focusToot(message) {
|
|
this.focusedId = message.id
|
|
},
|
|
focusSidebar() {
|
|
Event.$emit('focus-sidebar')
|
|
},
|
|
handleKey(event) {
|
|
switch (event.srcKey) {
|
|
case 'next':
|
|
this.focusedId = this.favourites[0].uri
|
|
break
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
#favourites {
|
|
height: 100%;
|
|
overflow: auto;
|
|
scroll-behavior: auto;
|
|
|
|
.scroller {
|
|
height: 100%;
|
|
}
|
|
|
|
.upper {
|
|
position: fixed;
|
|
bottom: 20px;
|
|
right: 20px;
|
|
}
|
|
|
|
.upper-with-side-bar {
|
|
position: fixed;
|
|
bottom: 20px;
|
|
right: calc(20px + var(--current-sidebar-width));
|
|
transition: all 0.5s;
|
|
}
|
|
}
|
|
</style>
|