2018-03-09 07:21:25 +01:00
|
|
|
<template>
|
|
|
|
<div id="local">
|
2018-04-21 07:15:43 +02:00
|
|
|
<div class="unread">{{ unread.length > 0 ? unread.length : '' }}</div>
|
2018-04-20 10:30:04 +02:00
|
|
|
<transition-group name="timeline" tag="div">
|
|
|
|
<div class="local-timeline" v-for="message in timeline" v-bind:key="message.id">
|
2018-04-30 15:11:40 +02:00
|
|
|
<toot :message="message" v-on:update="updateToot" v-on:delete="deleteToot"></toot>
|
2018-04-20 10:30:04 +02:00
|
|
|
</div>
|
|
|
|
</transition-group>
|
2018-04-13 15:46:47 +02:00
|
|
|
<div class="loading-card" v-loading="lazyLoading" :element-loading-background="backgroundColor">
|
2018-03-27 15:16:23 +02:00
|
|
|
</div>
|
2018-03-09 07:21:25 +01:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2018-03-14 04:24:54 +01:00
|
|
|
import { mapState } from 'vuex'
|
|
|
|
import Toot from './Cards/Toot'
|
|
|
|
|
2018-03-09 07:21:25 +01:00
|
|
|
export default {
|
2018-03-14 04:24:54 +01:00
|
|
|
name: 'local',
|
|
|
|
components: { Toot },
|
|
|
|
computed: {
|
|
|
|
...mapState({
|
2018-03-29 17:20:15 +02:00
|
|
|
timeline: state => state.TimelineSpace.Contents.Local.timeline,
|
2018-04-13 15:46:47 +02:00
|
|
|
lazyLoading: state => state.TimelineSpace.Contents.Local.lazyLoading,
|
2018-04-21 07:15:43 +02:00
|
|
|
backgroundColor: state => state.App.theme.background_color,
|
|
|
|
heading: state => state.TimelineSpace.Contents.Local.heading,
|
|
|
|
unread: state => state.TimelineSpace.Contents.Local.unreadTimeline
|
2018-03-14 04:24:54 +01:00
|
|
|
})
|
|
|
|
},
|
2018-05-14 14:37:34 +02:00
|
|
|
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-03-14 04:24:54 +01:00
|
|
|
},
|
2018-05-14 14:52:04 +02:00
|
|
|
beforeUpdate () {
|
|
|
|
if (this.$store.state.TimelineSpace.SideMenu.unreadLocalTimeline && this.heading) {
|
|
|
|
this.$store.commit('TimelineSpace/SideMenu/changeUnreadLocalTimeline', false)
|
|
|
|
}
|
|
|
|
},
|
2018-03-27 15:16:23 +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-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-03-14 10:11:38 +01:00
|
|
|
methods: {
|
|
|
|
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
|
|
|
},
|
2018-04-30 15:11:40 +02:00
|
|
|
deleteToot (message) {
|
|
|
|
this.$store.commit('TimelineSpace/Contents/Local/deleteToot', message)
|
|
|
|
},
|
2018-03-27 15:16:23 +02:00
|
|
|
onScroll (event) {
|
2018-03-30 10:25:13 +02:00
|
|
|
if (((event.target.clientHeight + event.target.scrollTop) >= document.getElementById('local').clientHeight - 10) && !this.lazyloading) {
|
2018-03-29 17:20:15 +02:00
|
|
|
this.$store.dispatch('TimelineSpace/Contents/Local/lazyFetchTimeline', this.timeline[this.timeline.length - 1])
|
2018-04-14 14:58:53 +02:00
|
|
|
.catch(() => {
|
|
|
|
this.$message({
|
|
|
|
message: 'Could not fetch timeline',
|
|
|
|
type: 'error'
|
|
|
|
})
|
|
|
|
})
|
2018-03-27 15:16:23 +02:00
|
|
|
}
|
2018-04-21 07:15:43 +02:00
|
|
|
// for unread control
|
|
|
|
if ((event.target.scrollTop > 10) && this.heading) {
|
|
|
|
this.$store.commit('TimelineSpace/Contents/Local/changeHeading', false)
|
|
|
|
} else if ((event.target.scrollTop <= 10) && !this.heading) {
|
|
|
|
this.$store.commit('TimelineSpace/Contents/Local/changeHeading', true)
|
|
|
|
this.$store.commit('TimelineSpace/Contents/Local/mergeTimeline')
|
|
|
|
}
|
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-03-27 15:16:23 +02:00
|
|
|
}
|
|
|
|
</style>
|
2018-04-20 10:30:04 +02:00
|
|
|
<style src="@/assets/timeline-transition.scss"></style>
|