Whalebird-desktop-client-ma.../src/renderer/components/TimelineSpace/Contents/Favourites.vue

215 lines
6.5 KiB
Vue
Raw Normal View History

2018-03-13 15:56:23 +01:00
<template>
<div id="favourites">
<div></div>
2022-04-19 14:05:32 +02:00
<DynamicScroller :items="favourites" :min-item-size="60" id="scroller" class="scroller" ref="scroller">
<template v-slot="{ item, index, active }">
2022-04-19 14:05:32 +02:00
<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>
2022-04-19 14:05:32 +02:00
<div :class="openSideBar ? 'upper-with-side-bar' : 'upper'" v-show="!heading">
2022-04-18 15:41:52 +02:00
<el-button type="primary" :icon="ElIconArrowUp" @click="upper" circle>
2022-04-19 14:05:32 +02:00
<font-awesome-icon icon="arrow-up" />
2022-04-18 15:41:52 +02:00
</el-button>
</div>
</div>
2018-03-13 15:56:23 +01:00
</template>
<script>
import { mapState, mapGetters } from 'vuex'
import Toot from '~/src/renderer/components/organisms/Toot'
2018-11-04 06:33:47 +01:00
import reloadable from '~/src/renderer/components/mixins/reloadable'
import { Event } from '~/src/renderer/components/event'
2018-03-13 15:56:23 +01:00
export default {
data() {
return {
heading: true,
2022-04-19 14:05:32 +02:00
focusedId: null
}
},
2022-04-18 15:41:52 +02:00
name: 'favourites',
components: { Toot },
mixins: [reloadable],
2018-03-13 15:56:23 +01:00
computed: {
...mapState({
2022-04-19 14:05:32 +02:00
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
2022-04-19 14:05:32 +02:00
}
2018-03-13 15:56:23 +01:00
},
created() {
this.$store.commit('TimelineSpace/Contents/changeLoading', true)
this.$store
2022-04-19 14:05:32 +02:00
.dispatch('TimelineSpace/Contents/Favourites/fetchFavourites', this.account)
2018-03-13 15:56:23 +01:00
.catch(() => {
this.$message({
2018-08-13 08:27:53 +02:00
message: this.$t('message.favourite_fetch_error'),
2022-04-19 14:05:32 +02:00
type: 'error'
2018-03-13 15:56:23 +01:00
})
})
.finally(() => {
this.$store.commit('TimelineSpace/Contents/changeLoading', false)
})
},
mounted() {
2022-04-19 14:05:32 +02:00
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() {
2018-04-16 17:44:18 +02:00
this.$store.commit('TimelineSpace/Contents/Favourites/updateFavourites', [])
2022-04-19 14:05:32 +02:00
if (document.getElementById('scroller') !== undefined && document.getElementById('scroller') !== null) {
document.getElementById('scroller').removeEventListener('scroll', this.onScroll)
document.getElementById('scroller').scrollTop = 0
}
},
2018-06-27 15:41:33 +02:00
watch: {
startReload: function (newState, oldState) {
2018-06-27 15:41:33 +02:00
if (!oldState && newState) {
this.reload().finally(() => {
this.$store.commit('TimelineSpace/HeaderMenu/changeReload', false)
})
2018-06-27 15:41:33 +02:00
}
},
focusedId: function (newState, _oldState) {
2018-08-22 05:38:18 +02:00
if (newState && this.heading) {
this.heading = false
} else if (newState === null && !this.heading) {
this.heading = true
}
2022-04-19 14:05:32 +02:00
}
2018-06-27 15:41:33 +02:00
},
methods: {
updateToot(message) {
2022-04-19 14:05:32 +02:00
this.$store.commit('TimelineSpace/Contents/Favourites/updateToot', message)
},
deleteToot(message) {
2022-04-19 14:05:32 +02:00
this.$store.commit('TimelineSpace/Contents/Favourites/deleteToot', message)
},
onScroll(event) {
if (
2022-04-19 14:05:32 +02:00
event.target.clientHeight + event.target.scrollTop >= document.getElementById('scroller').scrollHeight - 10 &&
!this.lazyloading
) {
this.$store
2022-04-19 14:05:32 +02:00
.dispatch('TimelineSpace/Contents/Favourites/lazyFetchFavourites', this.favourites[this.favourites.length - 1])
.catch(() => {
this.$message({
2018-08-13 08:27:53 +02:00
message: this.$t('message.favourite_fetch_error'),
2022-04-19 14:05:32 +02:00
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 {
2018-11-04 06:33:47 +01:00
const account = await this.reloadable()
2022-04-19 14:05:32 +02:00
await this.$store.dispatch('TimelineSpace/Contents/Favourites/fetchFavourites', account).catch(() => {
this.$message({
message: this.$t('message.favourite_fetch_error'),
type: 'error'
})
2022-04-19 14:05:32 +02:00
})
} finally {
this.$store.commit('TimelineSpace/changeLoading', false)
}
},
upper() {
this.$refs.scroller.scrollToItem(0)
2018-08-22 05:38:18 +02:00
this.focusedId = null
},
focusNext() {
2022-04-19 14:05:32 +02:00
const currentIndex = this.favourites.findIndex(toot => this.focusedId === toot.uri)
2018-08-22 05:38:18 +02:00
if (currentIndex === -1) {
this.focusedId = this.favourites[0].uri
} else if (currentIndex < this.favourites.length) {
this.focusedId = this.favourites[currentIndex + 1].uri
}
},
focusPrev() {
2022-04-19 14:05:32 +02:00
const currentIndex = this.favourites.findIndex(toot => this.focusedId === toot.uri)
2018-08-22 05:38:18 +02:00
if (currentIndex === 0) {
this.focusedId = null
} else if (currentIndex > 0) {
this.focusedId = this.favourites[currentIndex - 1].uri
}
},
focusToot(message) {
2018-08-22 05:38:18 +02:00
this.focusedId = message.id
},
focusSidebar() {
Event.$emit('focus-sidebar')
},
handleKey(event) {
switch (event.srcKey) {
case 'next':
this.focusedId = this.favourites[0].uri
break
}
2022-04-19 14:05:32 +02:00
}
}
2018-03-13 15:56:23 +01:00
}
</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>