2018-03-14 06:54:20 +01:00
|
|
|
<template>
|
2018-07-19 14:57:54 +02:00
|
|
|
<div id="public">
|
|
|
|
<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-08-22 05:53:01 +02:00
|
|
|
<div class="public-timeline" v-for="message in timeline" :key="message.uri">
|
2018-08-21 16:28:19 +02:00
|
|
|
<toot
|
|
|
|
:message="message"
|
|
|
|
:filter="filter"
|
2018-08-22 05:53:01 +02:00
|
|
|
:focused="message.uri === focusedId"
|
2018-08-21 16:28:19 +02:00
|
|
|
v-on:update="updateToot"
|
|
|
|
v-on:delete="deleteToot"
|
|
|
|
@focusNext="focusNext"
|
|
|
|
@focusPrev="focusPrev"
|
2018-08-22 05:53:01 +02:00
|
|
|
@selectToot="focusToot(message)"
|
2018-08-21 16:28:19 +02:00
|
|
|
>
|
|
|
|
</toot>
|
2018-03-27 15:23:35 +02:00
|
|
|
</div>
|
2018-07-19 14:57:54 +02:00
|
|
|
</transition-group>
|
|
|
|
<div class="loading-card" v-loading="lazyLoading" :element-loading-background="backgroundColor">
|
2018-03-14 06:54:20 +01:00
|
|
|
</div>
|
2018-07-19 14:57:54 +02:00
|
|
|
<div class="upper" v-show="!heading">
|
|
|
|
<el-button type="primary" icon="el-icon-arrow-up" @click="upper" circle>
|
|
|
|
</el-button>
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-03-14 06:54:20 +01:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import { mapState } from 'vuex'
|
|
|
|
import Toot from './Cards/Toot'
|
2018-07-19 14:57:54 +02:00
|
|
|
import scrollTop from '../../utils/scroll'
|
2018-03-14 06:54:20 +01:00
|
|
|
|
|
|
|
export default {
|
|
|
|
name: 'public',
|
|
|
|
components: { Toot },
|
2018-08-21 16:28:19 +02:00
|
|
|
data () {
|
|
|
|
return {
|
2018-08-22 05:53:01 +02:00
|
|
|
focusedId: null
|
2018-08-21 16:28:19 +02:00
|
|
|
}
|
|
|
|
},
|
2018-03-14 06:54:20 +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-29 17:20:15 +02:00
|
|
|
timeline: state => state.TimelineSpace.Contents.Public.timeline,
|
2018-04-13 15:53:04 +02:00
|
|
|
lazyLoading: state => state.TimelineSpace.Contents.Public.lazyLoading,
|
2018-04-21 07:50:09 +02:00
|
|
|
heading: state => state.TimelineSpace.Contents.Public.heading,
|
2018-06-27 14:54:20 +02:00
|
|
|
unread: state => state.TimelineSpace.Contents.Public.unreadTimeline,
|
2018-07-10 15:16:33 +02:00
|
|
|
filter: state => state.TimelineSpace.Contents.Public.filter
|
2018-03-14 06:54:20 +01:00
|
|
|
})
|
|
|
|
},
|
|
|
|
created () {
|
2018-07-02 14:53:09 +02:00
|
|
|
this.$store.commit('TimelineSpace/changeLoading', true)
|
2018-03-24 01:33:58 +01:00
|
|
|
this.initialize()
|
2018-07-02 14:53:09 +02:00
|
|
|
.finally(() => {
|
|
|
|
this.$store.commit('TimelineSpace/changeLoading', false)
|
2018-03-24 01:33:58 +01:00
|
|
|
})
|
2018-03-30 10:25:13 +02:00
|
|
|
document.getElementById('scrollable').addEventListener('scroll', this.onScroll)
|
2018-03-14 06:54:20 +01:00
|
|
|
},
|
|
|
|
beforeDestroy () {
|
2018-03-29 17:20:15 +02:00
|
|
|
this.$store.dispatch('TimelineSpace/Contents/Public/stopPublicStreaming')
|
2018-03-14 10:15:19 +01:00
|
|
|
},
|
2018-03-27 15:23:35 +02:00
|
|
|
destroyed () {
|
2018-04-21 07:50:09 +02:00
|
|
|
this.$store.commit('TimelineSpace/Contents/Public/changeHeading', true)
|
|
|
|
this.$store.commit('TimelineSpace/Contents/Public/mergeTimeline')
|
|
|
|
this.$store.commit('TimelineSpace/Contents/Public/archiveTimeline')
|
|
|
|
this.$store.commit('TimelineSpace/Contents/Public/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:50:09 +02:00
|
|
|
document.getElementById('scrollable').scrollTop = 0
|
2018-04-02 15:33:12 +02:00
|
|
|
}
|
2018-03-27 15:23:35 +02:00
|
|
|
},
|
2018-06-27 14:54:20 +02:00
|
|
|
watch: {
|
|
|
|
startReload: function (newState, oldState) {
|
|
|
|
if (!oldState && newState) {
|
|
|
|
this.reload()
|
|
|
|
.finally(() => {
|
|
|
|
this.$store.commit('TimelineSpace/HeaderMenu/changeReload', false)
|
|
|
|
})
|
|
|
|
}
|
2018-08-21 16:28:19 +02:00
|
|
|
},
|
2018-08-22 05:53:01 +02:00
|
|
|
focusedId: function (newState, oldState) {
|
|
|
|
if (newState && this.heading) {
|
2018-08-21 16:28:19 +02:00
|
|
|
this.$store.commit('TimelineSpace/Contents/Public/changeHeading', false)
|
|
|
|
} else if (newState === null && !this.heading) {
|
|
|
|
this.$store.commit('TimelineSpace/Contents/Public/changeHeading', true)
|
|
|
|
this.$store.commit('TimelineSpace/Contents/Public/mergeTimeline')
|
|
|
|
}
|
2018-06-27 14:54:20 +02:00
|
|
|
}
|
|
|
|
},
|
2018-03-14 10:15:19 +01:00
|
|
|
methods: {
|
2018-03-24 01:33:58 +01:00
|
|
|
async initialize () {
|
|
|
|
try {
|
2018-03-29 17:20:15 +02:00
|
|
|
await this.$store.dispatch('TimelineSpace/Contents/Public/fetchPublicTimeline')
|
2018-03-24 01:33:58 +01:00
|
|
|
} catch (err) {
|
|
|
|
this.$message({
|
2018-08-13 08:27:53 +02:00
|
|
|
message: this.$t('message.timeline_fetch_error'),
|
2018-03-24 01:33:58 +01:00
|
|
|
type: 'error'
|
|
|
|
})
|
|
|
|
}
|
2018-03-29 17:20:15 +02:00
|
|
|
this.$store.dispatch('TimelineSpace/Contents/Public/startPublicStreaming')
|
2018-04-03 01:34:27 +02:00
|
|
|
.catch(() => {
|
|
|
|
this.$message({
|
2018-08-13 08:27:53 +02:00
|
|
|
message: this.$t('message.start_streaming_error'),
|
2018-04-03 01:34:27 +02:00
|
|
|
type: 'error'
|
|
|
|
})
|
|
|
|
})
|
2018-03-24 01:33:58 +01:00
|
|
|
},
|
2018-03-14 10:15:19 +01:00
|
|
|
updateToot (message) {
|
2018-03-29 17:20:15 +02:00
|
|
|
this.$store.commit('TimelineSpace/Contents/Public/updateToot', message)
|
2018-03-27 15:23:35 +02:00
|
|
|
},
|
2018-04-30 15:11:40 +02:00
|
|
|
deleteToot (message) {
|
|
|
|
this.$store.commit('TimelineSpace/Contents/Public/deleteToot', message)
|
|
|
|
},
|
2018-03-27 15:23:35 +02:00
|
|
|
onScroll (event) {
|
2018-03-30 10:25:13 +02:00
|
|
|
if (((event.target.clientHeight + event.target.scrollTop) >= document.getElementById('public').clientHeight - 10) && !this.lazyloading) {
|
2018-03-29 17:20:15 +02:00
|
|
|
this.$store.dispatch('TimelineSpace/Contents/Public/lazyFetchTimeline', this.timeline[this.timeline.length - 1])
|
2018-04-14 15:00:59 +02:00
|
|
|
.catch(() => {
|
|
|
|
this.$message({
|
2018-08-13 08:27:53 +02:00
|
|
|
message: this.$t('message.timeline_fetch_error'),
|
2018-04-14 15:00:59 +02:00
|
|
|
type: 'error'
|
|
|
|
})
|
|
|
|
})
|
2018-03-27 15:23:35 +02:00
|
|
|
}
|
2018-04-21 07:50:09 +02:00
|
|
|
// for unread control
|
|
|
|
if ((event.target.scrollTop > 10) && this.heading) {
|
|
|
|
this.$store.commit('TimelineSpace/Contents/Public/changeHeading', false)
|
|
|
|
} else if ((event.target.scrollTop <= 10) && !this.heading) {
|
|
|
|
this.$store.commit('TimelineSpace/Contents/Public/changeHeading', true)
|
|
|
|
this.$store.commit('TimelineSpace/Contents/Public/mergeTimeline')
|
|
|
|
}
|
2018-06-10 08:00:33 +02:00
|
|
|
},
|
|
|
|
async reload () {
|
2018-07-02 14:53:09 +02:00
|
|
|
this.$store.commit('TimelineSpace/changeLoading', true)
|
|
|
|
try {
|
|
|
|
const account = await this.$store.dispatch('TimelineSpace/localAccount', this.$route.params.id).catch((err) => {
|
2018-06-10 08:00:33 +02:00
|
|
|
this.$message({
|
2018-08-13 08:27:53 +02:00
|
|
|
message: this.$t('message.account_load_error'),
|
2018-06-10 08:00:33 +02:00
|
|
|
type: 'error'
|
|
|
|
})
|
2018-07-02 14:53:09 +02:00
|
|
|
throw err
|
2018-06-10 08:00:33 +02:00
|
|
|
})
|
2018-07-02 14:53:09 +02:00
|
|
|
await this.$store.dispatch('TimelineSpace/stopUserStreaming')
|
|
|
|
await this.$store.dispatch('TimelineSpace/stopLocalStreaming')
|
|
|
|
await this.$store.dispatch('TimelineSpace/Contents/Public/stopPublicStreaming')
|
2018-06-10 08:00:33 +02:00
|
|
|
|
2018-07-02 14:53:09 +02:00
|
|
|
await this.$store.dispatch('TimelineSpace/Contents/Home/fetchTimeline', account)
|
|
|
|
await this.$store.dispatch('TimelineSpace/Contents/Local/fetchLocalTimeline', account)
|
|
|
|
await this.$store.dispatch('TimelineSpace/Contents/Public/fetchPublicTimeline')
|
|
|
|
.catch(() => {
|
|
|
|
this.$message({
|
2018-08-13 08:27:53 +02:00
|
|
|
message: this.$t('message.timeline_fetch_error'),
|
2018-07-02 14:53:09 +02:00
|
|
|
type: 'error'
|
|
|
|
})
|
2018-06-10 08:00:33 +02:00
|
|
|
})
|
2018-07-02 14:53:09 +02:00
|
|
|
|
|
|
|
this.$store.dispatch('TimelineSpace/startUserStreaming', account)
|
|
|
|
this.$store.dispatch('TimelineSpace/startLocalStreaming', account)
|
|
|
|
this.$store.dispatch('TimelineSpace/Contents/Public/startPublicStreaming')
|
|
|
|
.catch(() => {
|
|
|
|
this.$message({
|
2018-08-13 08:27:53 +02:00
|
|
|
message: this.$t('message.start_streaming_error'),
|
2018-07-02 14:53:09 +02:00
|
|
|
type: 'error'
|
|
|
|
})
|
|
|
|
})
|
|
|
|
} finally {
|
|
|
|
this.$store.commit('TimelineSpace/changeLoading', false)
|
|
|
|
}
|
2018-07-19 14:57:54 +02:00
|
|
|
},
|
|
|
|
upper () {
|
|
|
|
scrollTop(
|
|
|
|
document.getElementById('scrollable'),
|
|
|
|
0
|
|
|
|
)
|
2018-08-22 05:53:01 +02:00
|
|
|
this.focusedId = null
|
2018-08-21 16:28:19 +02:00
|
|
|
},
|
|
|
|
focusNext () {
|
2018-08-22 05:53:01 +02:00
|
|
|
const currentIndex = this.timeline.findIndex(toot => this.focusedId === toot.uri)
|
|
|
|
if (currentIndex === -1) {
|
|
|
|
this.focusedId = this.timeline[0].uri
|
|
|
|
} else if (currentIndex < this.timeline.length) {
|
|
|
|
this.focusedId = this.timeline[currentIndex + 1].uri
|
2018-08-21 16:28:19 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
focusPrev () {
|
2018-08-22 05:53:01 +02:00
|
|
|
const currentIndex = this.timeline.findIndex(toot => this.focusedId === toot.uri)
|
|
|
|
if (currentIndex === 0) {
|
|
|
|
this.focusedId = null
|
|
|
|
} else if (currentIndex > 0) {
|
|
|
|
this.focusedId = this.timeline[currentIndex - 1].uri
|
2018-08-21 16:28:19 +02:00
|
|
|
}
|
|
|
|
},
|
2018-08-22 05:53:01 +02:00
|
|
|
focusToot (message) {
|
|
|
|
this.focusedId = message.uri
|
2018-03-14 10:15:19 +01:00
|
|
|
}
|
2018-03-14 06:54:20 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
2018-03-27 15:23:35 +02:00
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
2018-04-21 07:50:09 +02:00
|
|
|
#public {
|
|
|
|
.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:23:35 +02:00
|
|
|
|
2018-04-21 07:50:09 +02:00
|
|
|
.loading-card:empty {
|
|
|
|
height: 0;
|
|
|
|
}
|
2018-07-19 14:57:54 +02:00
|
|
|
|
|
|
|
.upper {
|
|
|
|
position: fixed;
|
|
|
|
bottom: 20px;
|
|
|
|
right: 20px;
|
|
|
|
}
|
2018-03-27 15:23:35 +02:00
|
|
|
}
|
|
|
|
</style>
|
2018-04-20 10:30:04 +02:00
|
|
|
<style src="@/assets/timeline-transition.scss"></style>
|