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

261 lines
8.9 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">
<div class="list-timeline" v-for="message in timeline" v-bind:key="message.uri + message.id">
<toot
:message="message"
:filter="filter"
:focused="message.uri + message.id === focusedId"
:overlaid="modalOpened"
v-on:update="updateToot"
v-on:delete="deleteToot"
@focusNext="focusNext"
@focusPrev="focusPrev"
@focusRight="focusSidebar"
@selectToot="focusToot(message)"
>
</toot>
</div>
</transition-group>
<div class="loading-card" v-loading="lazyLoading" :element-loading-background="backgroundColor"></div>
<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 scrollTop from '../../../utils/scroll'
2018-11-04 06:33:47 +01:00
import reloadable from '~/src/renderer/components/mixins/reloadable'
import { Event } from '~/src/renderer/components/event'
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 },
2018-11-04 06:33:47 +01:00
mixins: [reloadable],
data() {
return {
2018-08-22 05:57:39 +02:00
focusedId: null
}
},
2018-04-09 14:10:25 +02:00
computed: {
...mapState({
openSideBar: state => state.TimelineSpace.Contents.SideBar.openSideBar,
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/Contents/changeLoading', true)
this.load().finally(() => {
this.$store.commit('TimelineSpace/Contents/changeLoading', false)
})
document.getElementById('scrollable').addEventListener('scroll', this.onScroll)
2018-04-09 14:10:25 +02:00
},
mounted() {
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
})
})
},
2018-04-09 14:10:25 +02:00
watch: {
list_id: function() {
this.$store.commit('TimelineSpace/Contents/changeLoading', true)
this.load().finally(() => {
this.$store.commit('TimelineSpace/Contents/changeLoading', false)
})
},
startReload: function(newState, oldState) {
if (!oldState && newState) {
this.reload().finally(() => {
this.$store.commit('TimelineSpace/HeaderMenu/changeReload', false)
})
}
},
focusedId: function(newState, _oldState) {
2018-08-22 05:57:39 +02:00
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
})
}
this.$store.dispatch('TimelineSpace/Contents/Lists/Show/startStreaming', this.list_id).catch(() => {
this.$message({
message: this.$t('message.start_streaming_error'),
type: 'error'
2018-04-09 14:10:25 +02:00
})
})
return 'started'
},
updateToot(message) {
2018-06-16 08:33:52 +02:00
this.$store.commit('TimelineSpace/Contents/Lists/Show/updateToot', message)
},
deleteToot(message) {
this.$store.commit('TimelineSpace/Contents/Lists/Show/deleteToot', message.id)
},
onScroll(event) {
if (
event.target.clientHeight + event.target.scrollTop >= document.getElementsByName('list')[0].clientHeight - 10 &&
!this.lazyloading
) {
2018-06-16 08:33:52 +02:00
this.$store.dispatch('TimelineSpace/Contents/Lists/Show/lazyFetchTimeline', {
list_id: this.list_id,
status: 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 {
2018-11-04 06:33:47 +01:00
await this.reloadable()
await this.$store.dispatch('TimelineSpace/Contents/Lists/Show/stopStreaming')
await this.$store.dispatch('TimelineSpace/Contents/Lists/Show/fetchTimeline', this.list_id).catch(() => {
this.$message({
message: this.$t('message.timeline_fetch_error'),
type: 'error'
})
})
this.$store.dispatch('TimelineSpace/Contents/Lists/Show/startStreaming', this.list_id).catch(() => {
this.$message({
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
}
},
focusToot(message) {
2018-10-05 16:57:16 +02:00
this.focusedId = message.uri + message.id
},
focusSidebar() {
Event.$emit('focus-sidebar')
},
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;
}
.upper-with-side-bar {
position: fixed;
bottom: 20px;
right: calc(20px + var(--current-sidebar-width));
transition: all 0.5s;
}
</style>
<style src="@/assets/timeline-transition.scss"></style>