2018-03-09 07:21:25 +01:00
|
|
|
<template>
|
2019-05-16 16:43:32 +02:00
|
|
|
<div id="local" 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="local-timeline" v-for="message in timeline" :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)"
|
2018-08-21 16:20:44 +02:00
|
|
|
>
|
2019-05-16 16:43:32 +02:00
|
|
|
</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>
|
2018-03-27 15:16:23 +02:00
|
|
|
</div>
|
2018-07-19 14:51:54 +02:00
|
|
|
</div>
|
2018-03-09 07:21:25 +01:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2018-08-23 17:14:37 +02:00
|
|
|
import { mapState, mapGetters } from 'vuex'
|
2018-11-14 13:44:33 +01:00
|
|
|
import Toot from '~/src/renderer/components/molecules/Toot'
|
2018-07-19 14:51:54 +02:00
|
|
|
import scrollTop from '../../utils/scroll'
|
2018-11-04 06:33:47 +01:00
|
|
|
import reloadable from '~/src/renderer/components/mixins/reloadable'
|
2018-11-28 14:55:11 +01:00
|
|
|
import { Event } from '~/src/renderer/components/event'
|
2018-03-14 04:24:54 +01:00
|
|
|
|
2018-03-09 07:21:25 +01:00
|
|
|
export default {
|
2018-03-14 04:24:54 +01:00
|
|
|
name: 'local',
|
|
|
|
components: { Toot },
|
2018-11-04 06:33:47 +01:00
|
|
|
mixins: [reloadable],
|
2019-05-16 16:43:32 +02:00
|
|
|
data() {
|
2018-08-21 16:20:44 +02:00
|
|
|
return {
|
2018-08-22 05:42:51 +02:00
|
|
|
focusedId: null
|
2018-08-21 16:20:44 +02:00
|
|
|
}
|
|
|
|
},
|
2018-03-14 04:24:54 +01:00
|
|
|
computed: {
|
2018-11-08 00:12:51 +01:00
|
|
|
...mapState('TimelineSpace/Contents/Local', {
|
|
|
|
timeline: state => state.timeline,
|
|
|
|
lazyLoading: state => state.lazyLoading,
|
|
|
|
heading: state => state.heading,
|
|
|
|
unread: state => state.unreadTimeline,
|
|
|
|
filter: state => state.filter
|
|
|
|
}),
|
2018-03-14 04:24:54 +01:00
|
|
|
...mapState({
|
2018-10-31 15:11:11 +01:00
|
|
|
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-11-08 00:12:51 +01:00
|
|
|
unreadNotification: state => state.TimelineSpace.unreadNotification
|
2018-08-23 17:14:37 +02:00
|
|
|
}),
|
2019-05-16 16:43:32 +02:00
|
|
|
...mapGetters('TimelineSpace/Modals', ['modalOpened']),
|
|
|
|
shortcutEnabled: function() {
|
2018-09-13 16:03:47 +02:00
|
|
|
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)
|
2018-09-13 16:03:47 +02:00
|
|
|
return currentIndex === -1
|
2018-08-23 17:14:37 +02:00
|
|
|
}
|
2018-03-14 04:24:54 +01:00
|
|
|
},
|
2019-05-16 16:43:32 +02:00
|
|
|
async mounted() {
|
2018-05-14 14:52:04 +02:00
|
|
|
this.$store.commit('TimelineSpace/SideMenu/changeUnreadLocalTimeline', false)
|
2018-03-30 10:25:13 +02:00
|
|
|
document.getElementById('scrollable').addEventListener('scroll', this.onScroll)
|
2018-11-08 00:12:51 +01:00
|
|
|
if (!this.unreadNotification.local) {
|
2019-05-16 16:43:32 +02:00
|
|
|
this.$store.commit('TimelineSpace/Contents/changeLoading', true)
|
|
|
|
await this.initialize().finally(_ => {
|
|
|
|
this.$store.commit('TimelineSpace/Contents/changeLoading', false)
|
|
|
|
})
|
2018-11-08 00:12:51 +01:00
|
|
|
}
|
2018-11-28 14:55:11 +01:00
|
|
|
|
|
|
|
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
|
2019-05-16 16:43:32 +02:00
|
|
|
this.$nextTick(function() {
|
2018-11-28 14:55:11 +01:00
|
|
|
this.focusedId = previousFocusedId
|
|
|
|
})
|
|
|
|
})
|
2018-03-14 04:24:54 +01:00
|
|
|
},
|
2019-05-16 16:43:32 +02:00
|
|
|
beforeUpdate() {
|
2018-05-14 14:52:04 +02:00
|
|
|
if (this.$store.state.TimelineSpace.SideMenu.unreadLocalTimeline && this.heading) {
|
|
|
|
this.$store.commit('TimelineSpace/SideMenu/changeUnreadLocalTimeline', false)
|
|
|
|
}
|
|
|
|
},
|
2019-05-16 16:43:32 +02:00
|
|
|
beforeDestroy() {
|
2018-11-08 00:12:51 +01:00
|
|
|
if (!this.unreadNotification.local) {
|
|
|
|
this.$store.dispatch('TimelineSpace/stopLocalStreaming')
|
|
|
|
this.$store.dispatch('TimelineSpace/unbindLocalStreaming')
|
|
|
|
}
|
2018-11-28 14:55:11 +01:00
|
|
|
Event.$off('focus-timeline')
|
2018-11-08 00:12:51 +01:00
|
|
|
},
|
2019-05-16 16:43:32 +02:00
|
|
|
destroyed() {
|
2018-04-21 07:15:43 +02:00
|
|
|
this.$store.commit('TimelineSpace/Contents/Local/changeHeading', true)
|
|
|
|
this.$store.commit('TimelineSpace/Contents/Local/mergeTimeline')
|
|
|
|
this.$store.commit('TimelineSpace/Contents/Local/archiveTimeline')
|
2018-11-08 14:32:53 +01:00
|
|
|
if (!this.unreadNotification.local) {
|
|
|
|
this.$store.commit('TimelineSpace/Contents/Local/clearTimeline')
|
|
|
|
}
|
2018-04-02 15:33:12 +02:00
|
|
|
if (document.getElementById('scrollable') !== undefined && document.getElementById('scrollable') !== null) {
|
|
|
|
document.getElementById('scrollable').removeEventListener('scroll', this.onScroll)
|
2018-04-21 07:15:43 +02:00
|
|
|
document.getElementById('scrollable').scrollTop = 0
|
2018-04-02 15:33:12 +02:00
|
|
|
}
|
2018-03-27 15:16:23 +02:00
|
|
|
},
|
2018-06-27 14:10:40 +02:00
|
|
|
watch: {
|
2019-05-16 16:43:32 +02:00
|
|
|
startReload: function(newState, oldState) {
|
2018-06-27 14:10:40 +02:00
|
|
|
if (!oldState && newState) {
|
2019-05-16 16:43:32 +02:00
|
|
|
this.reload().finally(() => {
|
|
|
|
this.$store.commit('TimelineSpace/HeaderMenu/changeReload', false)
|
|
|
|
})
|
2018-06-27 14:10:40 +02:00
|
|
|
}
|
2018-08-21 16:20:44 +02:00
|
|
|
},
|
2019-05-16 16:43:32 +02:00
|
|
|
focusedId: function(newState, _oldState) {
|
2018-08-22 05:42:51 +02:00
|
|
|
if (newState && this.heading) {
|
2018-08-21 16:20:44 +02:00
|
|
|
this.$store.commit('TimelineSpace/Contents/Local/changeHeading', false)
|
|
|
|
} else if (newState === null && !this.heading) {
|
|
|
|
this.$store.commit('TimelineSpace/Contents/Local/changeHeading', true)
|
|
|
|
this.$store.commit('TimelineSpace/Contents/Local/mergeTimeline')
|
|
|
|
}
|
2018-06-27 14:10:40 +02:00
|
|
|
}
|
|
|
|
},
|
2018-03-14 10:11:38 +01:00
|
|
|
methods: {
|
2019-05-16 16:43:32 +02:00
|
|
|
async initialize() {
|
|
|
|
await this.$store.dispatch('TimelineSpace/Contents/Local/fetchLocalTimeline').catch(_ => {
|
|
|
|
this.$message({
|
|
|
|
message: this.$t('message.timeline_fetch_error'),
|
|
|
|
type: 'error'
|
2018-11-08 00:12:51 +01:00
|
|
|
})
|
2019-05-16 16:43:32 +02:00
|
|
|
})
|
2018-11-08 00:12:51 +01:00
|
|
|
await this.$store.dispatch('TimelineSpace/bindLocalStreaming')
|
|
|
|
this.$store.dispatch('TimelineSpace/startLocalStreaming')
|
|
|
|
},
|
2019-05-16 16:43:32 +02:00
|
|
|
updateToot(message) {
|
2018-03-29 17:20:15 +02:00
|
|
|
this.$store.commit('TimelineSpace/Contents/Local/updateToot', message)
|
2018-03-27 15:16:23 +02:00
|
|
|
},
|
2019-05-16 16:43:32 +02:00
|
|
|
deleteToot(message) {
|
2018-04-30 15:11:40 +02:00
|
|
|
this.$store.commit('TimelineSpace/Contents/Local/deleteToot', message)
|
|
|
|
},
|
2019-05-16 16:43:32 +02:00
|
|
|
onScroll(event) {
|
|
|
|
if (event.target.clientHeight + event.target.scrollTop >= document.getElementById('local').clientHeight - 10 && !this.lazyloading) {
|
|
|
|
this.$store.dispatch('TimelineSpace/Contents/Local/lazyFetchTimeline', this.timeline[this.timeline.length - 1]).catch(() => {
|
|
|
|
this.$message({
|
|
|
|
message: this.$t('message.timeline_fetch_error'),
|
|
|
|
type: 'error'
|
2018-04-14 14:58:53 +02:00
|
|
|
})
|
2019-05-16 16:43:32 +02:00
|
|
|
})
|
2018-03-27 15:16:23 +02:00
|
|
|
}
|
2018-04-21 07:15:43 +02:00
|
|
|
// for unread control
|
2019-05-16 16:43:32 +02:00
|
|
|
if (event.target.scrollTop > 10 && this.heading) {
|
2018-04-21 07:15:43 +02:00
|
|
|
this.$store.commit('TimelineSpace/Contents/Local/changeHeading', false)
|
2019-05-16 16:43:32 +02:00
|
|
|
} else if (event.target.scrollTop <= 10 && !this.heading) {
|
2018-04-21 07:15:43 +02:00
|
|
|
this.$store.commit('TimelineSpace/Contents/Local/changeHeading', true)
|
|
|
|
this.$store.commit('TimelineSpace/Contents/Local/mergeTimeline')
|
|
|
|
}
|
2018-06-10 08:00:33 +02:00
|
|
|
},
|
2019-05-16 16:43:32 +02:00
|
|
|
async reload() {
|
2018-07-02 14:53:09 +02:00
|
|
|
this.$store.commit('TimelineSpace/changeLoading', true)
|
|
|
|
try {
|
2018-11-04 06:33:47 +01:00
|
|
|
await this.reloadable()
|
2018-07-02 14:53:09 +02:00
|
|
|
} finally {
|
|
|
|
this.$store.commit('TimelineSpace/changeLoading', false)
|
|
|
|
}
|
2018-07-19 14:51:54 +02:00
|
|
|
},
|
2019-05-16 16:43:32 +02:00
|
|
|
upper() {
|
|
|
|
scrollTop(document.getElementById('scrollable'), 0)
|
2018-08-22 05:42:51 +02:00
|
|
|
this.focusedId = null
|
2018-08-21 16:20:44 +02:00
|
|
|
},
|
2019-05-16 16:43:32 +02:00
|
|
|
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:42:51 +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:42:51 +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
|
2018-08-21 16:20:44 +02:00
|
|
|
}
|
|
|
|
},
|
2019-05-16 16:43:32 +02:00
|
|
|
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:42:51 +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-21 16:20:44 +02:00
|
|
|
}
|
|
|
|
},
|
2019-05-16 16:43:32 +02:00
|
|
|
focusToot(message) {
|
2018-10-05 16:57:16 +02:00
|
|
|
this.focusedId = message.uri + message.id
|
2018-08-22 12:17:35 +02:00
|
|
|
},
|
2019-05-16 16:43:32 +02:00
|
|
|
focusSidebar() {
|
2018-11-28 14:55:11 +01:00
|
|
|
Event.$emit('focus-sidebar')
|
|
|
|
},
|
2019-05-16 16:43:32 +02:00
|
|
|
handleKey(event) {
|
2018-08-22 12:17:35 +02:00
|
|
|
switch (event.srcKey) {
|
|
|
|
case 'next':
|
2018-10-05 16:57:16 +02:00
|
|
|
this.focusedId = this.timeline[0].uri + this.timeline[0].id
|
2018-08-22 12:17:35 +02:00
|
|
|
break
|
|
|
|
}
|
2018-03-14 10:11:38 +01:00
|
|
|
}
|
2018-03-14 04:24:54 +01:00
|
|
|
}
|
2018-03-09 07:21:25 +01:00
|
|
|
}
|
|
|
|
</script>
|
2018-03-27 15:16:23 +02:00
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
2018-04-21 07:15:43 +02:00
|
|
|
#local {
|
|
|
|
.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;
|
|
|
|
|
|
|
|
&:empty {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.loading-card {
|
|
|
|
height: 60px;
|
|
|
|
}
|
2018-03-27 15:16:23 +02:00
|
|
|
|
2018-04-21 07:15:43 +02:00
|
|
|
.loading-card:empty {
|
|
|
|
height: 0;
|
|
|
|
}
|
2018-07-19 14:51:54 +02:00
|
|
|
|
|
|
|
.upper {
|
|
|
|
position: fixed;
|
|
|
|
bottom: 20px;
|
|
|
|
right: 20px;
|
|
|
|
}
|
2018-10-31 15:11:11 +01:00
|
|
|
|
|
|
|
.upper-with-side-bar {
|
|
|
|
position: fixed;
|
|
|
|
bottom: 20px;
|
2018-11-26 14:33:31 +01:00
|
|
|
right: calc(20px + 360px);
|
2018-10-31 15:11:11 +01:00
|
|
|
}
|
2018-03-27 15:16:23 +02:00
|
|
|
}
|
|
|
|
</style>
|
2018-04-20 10:30:04 +02:00
|
|
|
<style src="@/assets/timeline-transition.scss"></style>
|