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'
|
2017-02-04 13:53:16 +01:00
|
|
|
import StatusOrConversation from '../status_or_conversation/status_or_conversation.vue'
|
2018-12-04 09:04:46 +01:00
|
|
|
import { throttle } from 'lodash'
|
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',
|
2017-03-01 20:36:37 +01:00
|
|
|
'timelineName',
|
2017-06-12 16:34:41 +02:00
|
|
|
'title',
|
2017-09-17 13:26:35 +02:00
|
|
|
'userId',
|
2018-12-17 17:14:38 +01:00
|
|
|
'tag',
|
2019-02-20 16:13:28 +01:00
|
|
|
'embedded',
|
|
|
|
'count'
|
2016-10-28 15:19:42 +02:00
|
|
|
],
|
2017-11-13 00:06:48 +01:00
|
|
|
data () {
|
|
|
|
return {
|
2018-08-06 06:58:34 +02:00
|
|
|
paused: false,
|
2019-01-29 20:04:52 +01:00
|
|
|
unfocused: false,
|
|
|
|
bottomedOut: false
|
2017-11-13 00:06:48 +01:00
|
|
|
}
|
|
|
|
},
|
2017-03-09 13:38:32 +01:00
|
|
|
computed: {
|
2017-08-21 19:25:01 +02:00
|
|
|
timelineError () { return this.$store.state.statuses.error },
|
2017-11-13 00:06:48 +01:00
|
|
|
newStatusCount () {
|
|
|
|
return this.timeline.newStatusCount
|
2017-11-21 15:12:47 +01:00
|
|
|
},
|
|
|
|
newStatusCountStr () {
|
2017-11-23 12:46:37 +01:00
|
|
|
if (this.timeline.flushMarker !== 0) {
|
2017-11-21 15:12:47 +01:00
|
|
|
return ''
|
|
|
|
} else {
|
|
|
|
return ` (${this.newStatusCount})`
|
|
|
|
}
|
2018-12-17 17:14:38 +01:00
|
|
|
},
|
|
|
|
classes () {
|
|
|
|
return {
|
|
|
|
root: ['timeline'].concat(!this.embedded ? ['panel', 'panel-default'] : []),
|
|
|
|
header: ['timeline-heading'].concat(!this.embedded ? ['panel-heading'] : []),
|
|
|
|
body: ['timeline-body'].concat(!this.embedded ? ['panel-body'] : []),
|
|
|
|
footer: ['timeline-footer'].concat(!this.embedded ? ['panel-footer'] : [])
|
|
|
|
}
|
2017-08-21 19:25:01 +02:00
|
|
|
}
|
2017-03-09 13:38:32 +01:00
|
|
|
},
|
2016-10-28 15:19:42 +02:00
|
|
|
components: {
|
2017-02-04 13:53:16 +01:00
|
|
|
Status,
|
2019-02-25 22:30:45 +01:00
|
|
|
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
|
2016-11-24 18:31:18 +01:00
|
|
|
const showImmediately = this.timeline.visibleStatuses.length === 0
|
2016-11-06 20:11:00 +01:00
|
|
|
|
2017-11-02 15:26:17 +01:00
|
|
|
window.addEventListener('scroll', this.scrollLoad)
|
2017-06-03 17:51:55 +02:00
|
|
|
|
2019-02-19 18:42:53 +01:00
|
|
|
if (this.timelineName === 'friends' && !credentials) { return false }
|
|
|
|
|
2016-11-06 20:11:00 +01:00
|
|
|
timelineFetcher.fetchAndUpdate({
|
|
|
|
store,
|
|
|
|
credentials,
|
|
|
|
timeline: this.timelineName,
|
2017-06-12 16:34:41 +02:00
|
|
|
showImmediately,
|
2017-09-17 13:26:35 +02:00
|
|
|
userId: this.userId,
|
|
|
|
tag: this.tag
|
2016-11-06 20:11:00 +01:00
|
|
|
})
|
|
|
|
},
|
2018-08-06 06:58:34 +02:00
|
|
|
mounted () {
|
|
|
|
if (typeof document.hidden !== 'undefined') {
|
|
|
|
document.addEventListener('visibilitychange', this.handleVisibilityChange, false)
|
|
|
|
this.unfocused = document.hidden
|
|
|
|
}
|
2019-02-17 22:37:24 +01:00
|
|
|
window.addEventListener('keydown', this.handleShortKey)
|
2018-08-06 06:58:34 +02:00
|
|
|
},
|
2017-11-02 15:26:17 +01:00
|
|
|
destroyed () {
|
|
|
|
window.removeEventListener('scroll', this.scrollLoad)
|
2019-02-17 22:37:24 +01:00
|
|
|
window.removeEventListener('keydown', this.handleShortKey)
|
2018-08-06 06:58:34 +02:00
|
|
|
if (typeof document.hidden !== 'undefined') document.removeEventListener('visibilitychange', this.handleVisibilityChange, false)
|
2017-11-16 14:40:36 +01:00
|
|
|
this.$store.commit('setLoading', { timeline: this.timelineName, value: false })
|
2017-11-02 15:26:17 +01:00
|
|
|
},
|
2016-10-28 15:40:13 +02:00
|
|
|
methods: {
|
2019-02-17 22:37:24 +01:00
|
|
|
handleShortKey (e) {
|
|
|
|
if (e.key === '.') this.showNewStatuses()
|
|
|
|
},
|
2016-10-28 15:40:13 +02:00
|
|
|
showNewStatuses () {
|
2019-02-19 02:32:20 +01:00
|
|
|
if (this.newStatusCount === 0) return
|
|
|
|
|
2017-11-23 12:46:37 +01:00
|
|
|
if (this.timeline.flushMarker !== 0) {
|
2017-11-21 15:12:47 +01:00
|
|
|
this.$store.commit('clearTimeline', { timeline: this.timelineName })
|
|
|
|
this.$store.commit('queueFlush', { timeline: this.timelineName, id: 0 })
|
|
|
|
this.fetchOlderStatuses()
|
|
|
|
} else {
|
|
|
|
this.$store.commit('showNewStatuses', { timeline: this.timelineName })
|
|
|
|
this.paused = false
|
|
|
|
}
|
2016-11-06 17:44:05 +01:00
|
|
|
},
|
2018-12-04 09:04:46 +01:00
|
|
|
fetchOlderStatuses: throttle(function () {
|
2016-11-06 17:44:05 +01:00
|
|
|
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,
|
2017-06-12 16:34:41 +02:00
|
|
|
showImmediately: true,
|
2017-09-17 13:26:35 +02:00
|
|
|
userId: this.userId,
|
|
|
|
tag: this.tag
|
2019-01-29 20:04:52 +01:00
|
|
|
}).then(statuses => {
|
|
|
|
store.commit('setLoading', { timeline: this.timelineName, value: false })
|
|
|
|
if (statuses.length === 0) {
|
|
|
|
this.bottomedOut = true
|
|
|
|
}
|
|
|
|
})
|
2018-12-04 09:04:46 +01:00
|
|
|
}, 1000, this),
|
2017-06-03 17:51:55 +02:00
|
|
|
scrollLoad (e) {
|
2018-04-22 22:16:28 +02:00
|
|
|
const bodyBRect = document.body.getBoundingClientRect()
|
2018-04-22 22:12:34 +02:00
|
|
|
const height = Math.max(bodyBRect.height, -(bodyBRect.y))
|
2017-11-02 15:26:17 +01:00
|
|
|
if (this.timeline.loading === false &&
|
|
|
|
this.$store.state.config.autoLoad &&
|
|
|
|
this.$el.offsetHeight > 0 &&
|
|
|
|
(window.innerHeight + window.pageYOffset) >= (height - 750)) {
|
2017-06-03 17:51:55 +02:00
|
|
|
this.fetchOlderStatuses()
|
|
|
|
}
|
2018-08-06 06:58:34 +02:00
|
|
|
},
|
|
|
|
handleVisibilityChange () {
|
|
|
|
this.unfocused = document.hidden
|
2016-10-28 15:40:13 +02:00
|
|
|
}
|
2017-11-13 00:06:48 +01:00
|
|
|
},
|
|
|
|
watch: {
|
|
|
|
newStatusCount (count) {
|
|
|
|
if (!this.$store.state.config.streaming) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if (count > 0) {
|
|
|
|
// only 'stream' them when you're scrolled to the top
|
2018-08-13 16:07:45 +02:00
|
|
|
if (window.pageYOffset < 15 &&
|
|
|
|
!this.paused &&
|
|
|
|
!(this.unfocused && this.$store.state.config.pauseOnUnfocused)
|
|
|
|
) {
|
2017-11-13 00:06:48 +01:00
|
|
|
this.showNewStatuses()
|
|
|
|
} else {
|
|
|
|
this.paused = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
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
|