pleroma-fe/src/components/timeline/timeline.js

58 lines
1.7 KiB
JavaScript
Raw Normal View History

2016-10-28 15:19:42 +02:00
import Status from '../status/status.vue'
2016-11-06 17:44:05 +01:00
import timelineFetcher from '../../services/timeline_fetcher/timeline_fetcher.service.js'
import StatusOrConversation from '../status_or_conversation/status_or_conversation.vue'
2016-10-28 15:19:42 +02:00
2016-10-26 19:03:55 +02:00
const Timeline = {
props: [
2016-10-28 15:40:13 +02:00
'timeline',
'timelineName',
'title'
2016-10-28 15:19:42 +02:00
],
computed: {
timelineError () { return this.$store.state.statuses.error }
},
2016-10-28 15:19:42 +02:00
components: {
Status,
StatusOrConversation
2016-10-28 15:40:13 +02:00
},
2016-11-06 20:11:00 +01:00
created () {
const store = this.$store
const credentials = store.state.users.currentUser.credentials
const showImmediately = this.timeline.visibleStatuses.length === 0
2016-11-06 20:11:00 +01:00
window.onscroll = this.scrollLoad
2016-11-06 20:11:00 +01:00
timelineFetcher.fetchAndUpdate({
store,
credentials,
timeline: this.timelineName,
showImmediately
2016-11-06 20:11:00 +01:00
})
},
2016-10-28 15:40:13 +02:00
methods: {
showNewStatuses () {
this.$store.commit('showNewStatuses', { timeline: this.timelineName })
2016-11-06 17:44:05 +01:00
},
fetchOlderStatuses () {
const store = this.$store
const credentials = store.state.users.currentUser.credentials
2016-11-07 15:04:27 +01:00
store.commit('setLoading', { timeline: this.timelineName, value: true })
2016-11-06 17:44:05 +01:00
timelineFetcher.fetchAndUpdate({
store,
credentials,
timeline: this.timelineName,
older: true,
showImmediately: true
}).then(() => store.commit('setLoading', { timeline: this.timelineName, value: false }))
},
scrollLoad (e) {
let height = Math.max(document.body.offsetHeight, document.body.scrollHeight)
if (this.timeline.loading === false && this.$store.state.config.autoLoad && (window.innerHeight + window.pageYOffset) >= (height - 750)) {
this.fetchOlderStatuses()
}
2016-10-28 15:40:13 +02:00
}
2016-10-28 15:19:42 +02:00
}
2016-10-26 19:03:55 +02:00
}
2016-10-28 15:19:42 +02:00
export default Timeline