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

204 lines
6.3 KiB
Vue
Raw Normal View History

2018-03-13 15:56:23 +01:00
<template>
<div id="favourites" v-shortkey="shortcutEnabled ? {next: ['j']} : {}" @shortkey="handleKey">
<div v-shortkey="{linux: ['ctrl', 'r'], mac: ['meta', 'r']}" @shortkey="reload()">
2018-03-13 15:56:23 +01:00
</div>
2018-08-22 05:38:18 +02:00
<div class="fav" v-for="message in favourites" v-bind:key="message.id">
<toot
:message="message"
:filter="filter"
2018-08-22 05:38:18 +02:00
:focused="message.uri === focusedId"
:overlaid="modalOpened"
v-on:update="updateToot"
v-on:delete="deleteToot"
@focusNext="focusNext"
@focusPrev="focusPrev"
2018-08-22 05:38:18 +02:00
@selectToot="focusToot(message)"
>
</toot>
</div>
<div class="loading-card" v-loading="lazyLoading" :element-loading-background="backgroundColor">
</div>
<div class="upper" v-show="!heading">
<el-button type="primary" icon="el-icon-arrow-up" @click="upper" circle>
</el-button>
</div>
</div>
2018-03-13 15:56:23 +01:00
</template>
<script>
import { mapState, mapGetters } from 'vuex'
2018-03-13 15:56:23 +01:00
import Toot from './Cards/Toot'
import scrollTop from '../../utils/scroll'
2018-03-13 15:56:23 +01:00
export default {
name: 'favourites',
components: { Toot },
data () {
return {
heading: true,
2018-08-22 05:38:18 +02:00
focusedId: null
}
},
2018-03-13 15:56:23 +01:00
computed: {
...mapState({
2018-07-10 15:33:27 +02:00
backgroundColor: state => state.App.theme.background_color,
startReload: state => state.TimelineSpace.HeaderMenu.reload,
2018-03-13 15:56:23 +01:00
account: state => state.TimelineSpace.account,
favourites: state => state.TimelineSpace.Contents.Favourites.favourites,
lazyLoading: state => state.TimelineSpace.Contents.Favourites.lazyLoading,
2018-07-10 01:31:07 +02:00
filter: state => state.TimelineSpace.Contents.Favourites.filter
}),
...mapGetters('TimelineSpace/Modals', [
'modalOpened'
]),
shortcutEnabled: function () {
return !this.focusedId && !this.modalOpened
}
2018-03-13 15:56:23 +01:00
},
created () {
this.$store.commit('TimelineSpace/changeLoading', true)
this.$store.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'),
2018-03-13 15:56:23 +01:00
type: 'error'
})
})
.finally(() => {
this.$store.commit('TimelineSpace/changeLoading', false)
})
},
mounted () {
2018-03-30 10:25:13 +02:00
document.getElementById('scrollable').addEventListener('scroll', this.onScroll)
},
destroyed () {
2018-04-16 17:44:18 +02:00
this.$store.commit('TimelineSpace/Contents/Favourites/updateFavourites', [])
if (document.getElementById('scrollable') !== undefined && document.getElementById('scrollable') !== null) {
document.getElementById('scrollable').removeEventListener('scroll', this.onScroll)
document.getElementById('scrollable').scrollTop = 0
}
},
2018-06-27 15:41:33 +02:00
watch: {
startReload: function (newState, oldState) {
if (!oldState && newState) {
this.reload()
.finally(() => {
this.$store.commit('TimelineSpace/HeaderMenu/changeReload', false)
})
}
},
2018-08-22 05:53:01 +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
}
2018-06-27 15:41:33 +02:00
}
},
methods: {
updateToot (message) {
this.$store.commit('TimelineSpace/Contents/Favourites/updateToot', message)
},
deleteToot (message) {
this.$store.commit('TimelineSpace/Contents/Favourites/deleteToot', message)
},
onScroll (event) {
2018-03-30 10:25:13 +02:00
if (((event.target.clientHeight + event.target.scrollTop) >= document.getElementById('favourites').clientHeight - 10) && !this.lazyloading) {
this.$store.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'),
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.$store.dispatch('TimelineSpace/localAccount', this.$route.params.id).catch((err) => {
this.$message({
2018-08-13 08:27:53 +02:00
message: this.$t('message.account_load_error'),
type: 'error'
})
throw err
})
await this.$store.dispatch('TimelineSpace/stopUserStreaming')
await this.$store.dispatch('TimelineSpace/stopLocalStreaming')
await this.$store.dispatch('TimelineSpace/Contents/Home/fetchTimeline', account)
await this.$store.dispatch('TimelineSpace/Contents/Local/fetchLocalTimeline', account)
await this.$store.dispatch('TimelineSpace/Contents/Favourites/fetchFavourites', account)
.catch(() => {
this.$message({
2018-08-13 08:27:53 +02:00
message: this.$t('message.favourite_fetch_error'),
type: 'error'
})
})
this.$store.dispatch('TimelineSpace/startUserStreaming', account)
this.$store.dispatch('TimelineSpace/startLocalStreaming', account)
} finally {
this.$store.commit('TimelineSpace/changeLoading', false)
}
},
upper () {
scrollTop(
document.getElementById('scrollable'),
0
)
2018-08-22 05:38:18 +02:00
this.focusedId = null
},
focusNext () {
2018-08-22 05:38:18 +02:00
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 () {
2018-08-22 05:38:18 +02:00
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
}
},
2018-08-22 05:38:18 +02:00
focusToot (message) {
this.focusedId = message.id
},
handleKey (event) {
switch (event.srcKey) {
case 'next':
this.focusedId = this.favourites[0].uri
break
}
}
2018-03-13 15:56:23 +01:00
}
}
</script>
<style lang="scss" scoped>
.loading-card {
height: 60px;
}
.loading-card:empty {
height: 0;
}
.upper {
position: fixed;
bottom: 20px;
right: 20px;
}
</style>