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

261 lines
8.8 KiB
Vue
Raw Normal View History

<template>
<div name="list" v-shortkey="shortcutEnabled ? {next:['j']} : {}" @shortkey="handleKey">
<div class="unread">{{ unread.length > 0 ? unread.length : '' }}</div>
<div v-shortkey="{linux: ['ctrl', 'r'], mac: ['meta', 'r']}" @shortkey="reload()">
</div>
<transition-group name="timeline" tag="div">
2018-10-05 16:57:16 +02:00
<div class="list-timeline" v-for="message in timeline" v-bind:key="message.uri + message.id">
<toot
:message="message"
:filter="filter"
2018-10-05 16:57:16 +02:00
:focused="message.uri + message.id === focusedId"
:overlaid="modalOpened"
v-on:update="updateToot"
v-on:delete="deleteToot"
@focusNext="focusNext"
@focusPrev="focusPrev"
2018-08-22 05:57:39 +02:00
@selectToot="focusToot(message)"
>
</toot>
</div>
</transition-group>
<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>
</template>
<script>
import { mapState, mapGetters } from 'vuex'
2018-06-16 08:33:52 +02:00
import Toot from '../Cards/Toot'
import scrollTop from '../../../utils/scroll'
2018-04-09 14:10:25 +02:00
export default {
2018-06-16 08:33:52 +02:00
name: 'list',
2018-04-09 14:10:25 +02:00
props: ['list_id'],
components: { Toot },
data () {
return {
2018-08-22 05:57:39 +02:00
focusedId: null
}
},
2018-04-09 14:10:25 +02: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-06-16 08:33:52 +02:00
timeline: state => state.TimelineSpace.Contents.Lists.Show.timeline,
lazyLoading: state => state.TimelineSpace.Contents.Lists.Show.lazyLoading,
heading: state => state.TimelineSpace.Contents.Lists.Show.heading,
unread: state => state.TimelineSpace.Contents.Lists.Show.unreadTimeline,
2018-07-10 15:33:27 +02:00
filter: state => state.TimelineSpace.Contents.Lists.Show.filter
}),
...mapGetters('TimelineSpace/Modals', [
'modalOpened'
]),
shortcutEnabled: function () {
if (this.modalOpened) {
return false
}
if (!this.focusedId) {
return true
}
// Sometimes toots are deleted, so perhaps focused toot don't exist.
2018-10-05 16:57:16 +02:00
const currentIndex = this.timeline.findIndex(toot => this.focusedId === toot.uri + toot.id)
return currentIndex === -1
}
2018-04-09 14:10:25 +02:00
},
created () {
this.$store.commit('TimelineSpace/changeLoading', true)
2018-04-09 14:10:25 +02:00
this.load()
.finally(() => {
this.$store.commit('TimelineSpace/changeLoading', false)
})
document.getElementById('scrollable').addEventListener('scroll', this.onScroll)
2018-04-09 14:10:25 +02:00
},
watch: {
list_id: function () {
this.$store.commit('TimelineSpace/changeLoading', true)
2018-04-09 14:10:25 +02:00
this.load()
.finally(() => {
this.$store.commit('TimelineSpace/changeLoading', false)
})
},
startReload: function (newState, oldState) {
if (!oldState && newState) {
this.reload()
.finally(() => {
this.$store.commit('TimelineSpace/HeaderMenu/changeReload', false)
})
}
},
2018-08-22 05:57:39 +02:00
focusedId: function (newState, oldState) {
if (newState && this.heading) {
this.$store.commit('TimelineSpace/Contents/Lists/Show/changeHeading', false)
} else if (newState === null && !this.heading) {
this.$store.commit('TimelineSpace/Contents/Lists/Show/changeHeading', true)
this.$store.commit('TimelineSpace/Contents/Lists/Show/mergeTimeline')
}
2018-04-09 14:10:25 +02:00
}
},
beforeDestroy () {
2018-06-16 08:33:52 +02:00
this.$store.dispatch('TimelineSpace/Contents/Lists/Show/stopStreaming')
},
destroyed () {
2018-06-16 08:33:52 +02:00
this.$store.commit('TimelineSpace/Contents/Lists/Show/changeHeading', true)
this.$store.commit('TimelineSpace/Contents/Lists/Show/mergeTimeline')
this.$store.commit('TimelineSpace/Contents/Lists/Show/archiveTimeline')
this.$store.commit('TimelineSpace/Contents/Lists/Show/clearTimeline')
if (document.getElementById('scrollable') !== undefined && document.getElementById('scrollable') !== null) {
document.getElementById('scrollable').removeEventListener('scroll', this.onScroll)
document.getElementById('scrollable').scrollTop = 0
}
},
2018-04-09 14:10:25 +02:00
methods: {
async load () {
2018-06-16 08:33:52 +02:00
await this.$store.dispatch('TimelineSpace/Contents/Lists/Show/stopStreaming')
try {
2018-06-16 08:33:52 +02:00
await this.$store.dispatch('TimelineSpace/Contents/Lists/Show/fetchTimeline', this.list_id)
} catch (err) {
this.$message({
2018-08-13 08:27:53 +02:00
message: this.$t('message.timeline_fetch_error'),
type: 'error'
2018-04-09 14:10:25 +02:00
})
}
2018-06-16 08:33:52 +02:00
this.$store.dispatch('TimelineSpace/Contents/Lists/Show/startStreaming', this.list_id)
2018-04-09 14:10:25 +02:00
.catch(() => {
this.$message({
2018-08-13 08:27:53 +02:00
message: this.$t('message.start_streaming_error'),
2018-04-09 14:10:25 +02:00
type: 'error'
})
})
return 'started'
},
updateToot (message) {
2018-06-16 08:33:52 +02:00
this.$store.commit('TimelineSpace/Contents/Lists/Show/updateToot', message)
},
deleteToot (message) {
2018-06-16 08:33:52 +02:00
this.$store.commit('TimelineSpace/Contents/Lists/Show/deleteToot', message)
},
onScroll (event) {
2018-06-16 08:33:52 +02:00
if (((event.target.clientHeight + event.target.scrollTop) >= document.getElementsByName('list')[0].clientHeight - 10) && !this.lazyloading) {
this.$store.dispatch('TimelineSpace/Contents/Lists/Show/lazyFetchTimeline', {
list_id: this.list_id,
last: this.timeline[this.timeline.length - 1]
})
}
// for unread control
if ((event.target.scrollTop > 10) && this.heading) {
2018-06-16 08:33:52 +02:00
this.$store.commit('TimelineSpace/Contents/Lists/Show/changeHeading', false)
} else if ((event.target.scrollTop <= 10) && !this.heading) {
2018-06-16 08:33:52 +02:00
this.$store.commit('TimelineSpace/Contents/Lists/Show/changeHeading', true)
this.$store.commit('TimelineSpace/Contents/Lists/Show/mergeTimeline')
}
},
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/Lists/Show/stopStreaming')
await this.$store.dispatch('TimelineSpace/Contents/Lists/Show/fetchTimeline', account)
await this.$store.dispatch('TimelineSpace/Contents/Local/fetchLocalTimeline', account)
await this.$store.dispatch('TimelineSpace/Contents/Lists/Show/fetchTimeline', this.list_id)
.catch(() => {
this.$message({
2018-08-13 08:27:53 +02:00
message: this.$t('message.timeline_fetch_error'),
type: 'error'
})
})
this.$store.dispatch('TimelineSpace/startUserStreaming', account)
this.$store.dispatch('TimelineSpace/startLocalStreaming', account)
this.$store.dispatch('TimelineSpace/Contents/Lists/Show/startStreaming', this.list_id)
.catch(() => {
this.$message({
2018-08-13 08:27:53 +02:00
message: this.$t('message.start_streaming_error'),
type: 'error'
})
})
} finally {
this.$store.commit('TimelineSpace/changeLoading', false)
}
},
upper () {
scrollTop(
document.getElementById('scrollable'),
0
)
2018-08-22 05:57:39 +02:00
this.focusedId = null
},
focusNext () {
2018-10-05 16:57:16 +02:00
const currentIndex = this.timeline.findIndex(toot => this.focusedId === toot.uri + toot.id)
2018-08-22 05:57:39 +02:00
if (currentIndex === -1) {
2018-10-05 16:57:16 +02:00
this.focusedId = this.timeline[0].uri + this.timeline[0].id
2018-08-22 05:57:39 +02:00
} else if (currentIndex < this.timeline.length) {
2018-10-05 16:57:16 +02:00
this.focusedId = this.timeline[currentIndex + 1].uri + this.timeline[currentIndex + 1].id
}
},
focusPrev () {
2018-10-05 16:57:16 +02:00
const currentIndex = this.timeline.findIndex(toot => this.focusedId === toot.uri + toot.id)
2018-08-22 05:57:39 +02:00
if (currentIndex === 0) {
this.focusedId = null
} else if (currentIndex > 0) {
2018-10-05 16:57:16 +02:00
this.focusedId = this.timeline[currentIndex - 1].uri + this.timeline[currentIndex - 1].id
}
},
2018-08-22 05:57:39 +02:00
focusToot (message) {
2018-10-05 16:57:16 +02:00
this.focusedId = message.uri + message.id
},
handleKey (event) {
switch (event.srcKey) {
case 'next':
2018-10-05 16:57:16 +02:00
this.focusedId = this.timeline[0].uri + this.timeline[0].id
break
}
2018-04-09 14:10:25 +02:00
}
}
}
</script>
<style lang="scss" scoped>
2018-04-25 15:28:42 +02:00
.unread {
position: fixed;
right: 24px;
top: 48px;
background-color: rgba(0, 0, 0, 0.7);
color: #ffffff;
padding: 4px 8px;
border-radius: 0 0 2px 2px;
2018-04-25 15:28:42 +02:00
&:empty {
display: none;
}
2018-04-25 15:28:42 +02:00
}
2018-04-25 15:28:42 +02:00
.loading-card {
height: 60px;
}
2018-04-25 15:28:42 +02:00
.loading-card:empty {
height: 0;
}
.upper {
position: fixed;
bottom: 20px;
right: 20px;
}
</style>
<style src="@/assets/timeline-transition.scss"></style>