2016-10-29 00:19:42 +11:00
|
|
|
import Status from '../status/status.vue'
|
2016-11-07 03:44:05 +11:00
|
|
|
import timelineFetcher from '../../services/timeline_fetcher/timeline_fetcher.service.js'
|
2019-03-12 07:24:37 +11:00
|
|
|
import Conversation from '../conversation/conversation.vue'
|
2020-07-03 01:03:02 +10:00
|
|
|
import TimelineMenu from '../timeline_menu/timeline_menu.vue'
|
2020-10-27 21:59:50 +11:00
|
|
|
import { debounce, throttle, keyBy } from 'lodash'
|
2020-10-20 06:35:46 +11:00
|
|
|
import { library } from '@fortawesome/fontawesome-svg-core'
|
|
|
|
import { faCircleNotch } from '@fortawesome/free-solid-svg-icons'
|
|
|
|
|
|
|
|
library.add(
|
|
|
|
faCircleNotch
|
|
|
|
)
|
2019-07-25 22:03:41 +10:00
|
|
|
|
|
|
|
export const getExcludedStatusIdsByPinning = (statuses, pinnedStatusIds) => {
|
|
|
|
const ids = []
|
|
|
|
if (pinnedStatusIds && pinnedStatusIds.length > 0) {
|
|
|
|
for (let status of statuses) {
|
|
|
|
if (!pinnedStatusIds.includes(status.id)) {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
ids.push(status.id)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ids
|
|
|
|
}
|
2016-10-29 00:19:42 +11:00
|
|
|
|
2016-10-27 04:03:55 +11:00
|
|
|
const Timeline = {
|
|
|
|
props: [
|
2016-10-29 00:40:13 +11:00
|
|
|
'timeline',
|
2017-03-02 06:36:37 +11:00
|
|
|
'timelineName',
|
2017-06-13 00:34:41 +10:00
|
|
|
'title',
|
2017-09-17 21:26:35 +10:00
|
|
|
'userId',
|
2018-12-18 03:14:38 +11:00
|
|
|
'tag',
|
2019-02-21 02:13:28 +11:00
|
|
|
'embedded',
|
2019-05-27 04:15:35 +10:00
|
|
|
'count',
|
2019-09-14 05:34:17 +10:00
|
|
|
'pinnedStatusIds',
|
2019-09-14 06:55:17 +10:00
|
|
|
'inProfile'
|
2016-10-29 00:19:42 +11:00
|
|
|
],
|
2017-11-13 10:06:48 +11:00
|
|
|
data () {
|
|
|
|
return {
|
2018-08-06 14:58:34 +10:00
|
|
|
paused: false,
|
2019-01-30 06:04:52 +11:00
|
|
|
unfocused: false,
|
2020-09-29 20:18:37 +10:00
|
|
|
bottomedOut: false,
|
2020-10-27 21:59:50 +11:00
|
|
|
virtualScrollIndex: 0,
|
|
|
|
blockingClicks: false
|
2017-11-13 10:06:48 +11:00
|
|
|
}
|
|
|
|
},
|
2020-07-03 01:03:02 +10:00
|
|
|
components: {
|
|
|
|
Status,
|
|
|
|
Conversation,
|
|
|
|
TimelineMenu
|
|
|
|
},
|
2017-03-09 23:38:32 +11:00
|
|
|
computed: {
|
2017-11-13 10:06:48 +11:00
|
|
|
newStatusCount () {
|
|
|
|
return this.timeline.newStatusCount
|
2017-11-22 01:12:47 +11:00
|
|
|
},
|
2020-07-01 00:02:38 +10:00
|
|
|
showLoadButton () {
|
|
|
|
return this.timeline.newStatusCount > 0 || this.timeline.flushMarker !== 0
|
|
|
|
},
|
2020-07-01 00:37:36 +10:00
|
|
|
loadButtonString () {
|
2017-11-23 22:46:37 +11:00
|
|
|
if (this.timeline.flushMarker !== 0) {
|
2020-07-01 00:37:36 +10:00
|
|
|
return this.$t('timeline.reload')
|
2017-11-22 01:12:47 +11:00
|
|
|
} else {
|
2020-07-01 00:37:36 +10:00
|
|
|
return `${this.$t('timeline.show_new')} (${this.newStatusCount})`
|
2017-11-22 01:12:47 +11:00
|
|
|
}
|
2018-12-18 03:14:38 +11:00
|
|
|
},
|
|
|
|
classes () {
|
2020-10-28 17:53:23 +11:00
|
|
|
let rootClasses = !this.embedded ? ['panel', 'panel-default'] : []
|
2020-11-03 08:43:32 +11:00
|
|
|
if (this.blockingClicks) rootClasses = rootClasses.concat(['-blocked', '_misclick-prevention'])
|
2018-12-18 03:14:38 +11:00
|
|
|
return {
|
2020-10-28 17:53:23 +11:00
|
|
|
root: rootClasses,
|
2018-12-18 03:14:38 +11:00
|
|
|
header: ['timeline-heading'].concat(!this.embedded ? ['panel-heading'] : []),
|
|
|
|
body: ['timeline-body'].concat(!this.embedded ? ['panel-body'] : []),
|
|
|
|
footer: ['timeline-footer'].concat(!this.embedded ? ['panel-footer'] : [])
|
|
|
|
}
|
2019-05-27 04:15:35 +10:00
|
|
|
},
|
2019-07-21 06:54:30 +10:00
|
|
|
// id map of statuses which need to be hidden in the main list due to pinning logic
|
|
|
|
excludedStatusIdsObject () {
|
2019-07-25 22:03:41 +10:00
|
|
|
const ids = getExcludedStatusIdsByPinning(this.timeline.visibleStatuses, this.pinnedStatusIds)
|
|
|
|
// Convert id array to object
|
2019-08-18 12:10:01 +10:00
|
|
|
return keyBy(ids)
|
2019-08-16 03:16:55 +10:00
|
|
|
},
|
|
|
|
pinnedStatusIdsObject () {
|
2019-08-18 12:10:01 +10:00
|
|
|
return keyBy(this.pinnedStatusIds)
|
2020-09-29 20:18:37 +10:00
|
|
|
},
|
|
|
|
statusesToDisplay () {
|
|
|
|
const amount = this.timeline.visibleStatuses.length
|
|
|
|
const statusesPerSide = Math.ceil(Math.max(3, window.innerHeight / 80))
|
|
|
|
const min = Math.max(0, this.virtualScrollIndex - statusesPerSide)
|
|
|
|
const max = Math.min(amount, this.virtualScrollIndex + statusesPerSide)
|
|
|
|
return this.timeline.visibleStatuses.slice(min, max).map(_ => _.id)
|
|
|
|
},
|
|
|
|
virtualScrollingEnabled () {
|
|
|
|
return this.$store.getters.mergedConfig.virtualScrolling
|
2017-08-22 03:25:01 +10:00
|
|
|
}
|
2017-03-09 23:38:32 +11:00
|
|
|
},
|
2016-11-07 06:11:00 +11:00
|
|
|
created () {
|
|
|
|
const store = this.$store
|
|
|
|
const credentials = store.state.users.currentUser.credentials
|
2016-11-25 04:31:18 +11:00
|
|
|
const showImmediately = this.timeline.visibleStatuses.length === 0
|
2016-11-07 06:11:00 +11:00
|
|
|
|
2020-09-29 20:18:37 +10:00
|
|
|
window.addEventListener('scroll', this.handleScroll)
|
2017-06-04 01:51:55 +10:00
|
|
|
|
2019-04-10 01:38:13 +10:00
|
|
|
if (store.state.api.fetchers[this.timelineName]) { return false }
|
2019-02-20 04:42:53 +11:00
|
|
|
|
2016-11-07 06:11:00 +11:00
|
|
|
timelineFetcher.fetchAndUpdate({
|
|
|
|
store,
|
|
|
|
credentials,
|
|
|
|
timeline: this.timelineName,
|
2017-06-13 00:34:41 +10:00
|
|
|
showImmediately,
|
2017-09-17 21:26:35 +10:00
|
|
|
userId: this.userId,
|
|
|
|
tag: this.tag
|
2016-11-07 06:11:00 +11:00
|
|
|
})
|
|
|
|
},
|
2018-08-06 14:58:34 +10:00
|
|
|
mounted () {
|
|
|
|
if (typeof document.hidden !== 'undefined') {
|
|
|
|
document.addEventListener('visibilitychange', this.handleVisibilityChange, false)
|
|
|
|
this.unfocused = document.hidden
|
|
|
|
}
|
2019-02-18 08:37:24 +11:00
|
|
|
window.addEventListener('keydown', this.handleShortKey)
|
2020-09-29 20:18:37 +10:00
|
|
|
setTimeout(this.determineVisibleStatuses, 250)
|
2018-08-06 14:58:34 +10:00
|
|
|
},
|
2017-11-03 01:26:17 +11:00
|
|
|
destroyed () {
|
2020-09-29 20:18:37 +10:00
|
|
|
window.removeEventListener('scroll', this.handleScroll)
|
2019-02-18 08:37:24 +11:00
|
|
|
window.removeEventListener('keydown', this.handleShortKey)
|
2018-08-06 14:58:34 +10:00
|
|
|
if (typeof document.hidden !== 'undefined') document.removeEventListener('visibilitychange', this.handleVisibilityChange, false)
|
2017-11-17 00:40:36 +11:00
|
|
|
this.$store.commit('setLoading', { timeline: this.timelineName, value: false })
|
2017-11-03 01:26:17 +11:00
|
|
|
},
|
2016-10-29 00:40:13 +11:00
|
|
|
methods: {
|
2020-10-27 21:59:50 +11:00
|
|
|
stopBlockingClicks: debounce(function () {
|
|
|
|
this.blockingClicks = false
|
|
|
|
}, 1000),
|
|
|
|
blockClicksTemporarily () {
|
|
|
|
if (!this.blockingClicks) {
|
|
|
|
this.blockingClicks = true
|
|
|
|
}
|
|
|
|
this.stopBlockingClicks()
|
|
|
|
},
|
2019-02-18 08:37:24 +11:00
|
|
|
handleShortKey (e) {
|
2019-06-12 17:56:08 +10:00
|
|
|
// Ignore when input fields are focused
|
|
|
|
if (['textarea', 'input'].includes(e.target.tagName.toLowerCase())) return
|
2019-02-18 08:37:24 +11:00
|
|
|
if (e.key === '.') this.showNewStatuses()
|
|
|
|
},
|
2016-10-29 00:40:13 +11:00
|
|
|
showNewStatuses () {
|
2017-11-23 22:46:37 +11:00
|
|
|
if (this.timeline.flushMarker !== 0) {
|
2019-07-03 04:32:46 +10:00
|
|
|
this.$store.commit('clearTimeline', { timeline: this.timelineName, excludeUserId: true })
|
2017-11-22 01:12:47 +11:00
|
|
|
this.$store.commit('queueFlush', { timeline: this.timelineName, id: 0 })
|
|
|
|
this.fetchOlderStatuses()
|
|
|
|
} else {
|
2020-10-27 21:59:50 +11:00
|
|
|
this.blockClicksTemporarily()
|
2017-11-22 01:12:47 +11:00
|
|
|
this.$store.commit('showNewStatuses', { timeline: this.timelineName })
|
|
|
|
this.paused = false
|
|
|
|
}
|
2016-11-07 03:44:05 +11:00
|
|
|
},
|
2018-12-04 19:04:46 +11:00
|
|
|
fetchOlderStatuses: throttle(function () {
|
2016-11-07 03:44:05 +11:00
|
|
|
const store = this.$store
|
|
|
|
const credentials = store.state.users.currentUser.credentials
|
2016-11-08 01:04:27 +11:00
|
|
|
store.commit('setLoading', { timeline: this.timelineName, value: true })
|
2016-11-07 03:44:05 +11:00
|
|
|
timelineFetcher.fetchAndUpdate({
|
|
|
|
store,
|
|
|
|
credentials,
|
|
|
|
timeline: this.timelineName,
|
|
|
|
older: true,
|
2017-06-13 00:34:41 +10:00
|
|
|
showImmediately: true,
|
2017-09-17 21:26:35 +10:00
|
|
|
userId: this.userId,
|
|
|
|
tag: this.tag
|
2020-07-04 05:45:49 +10:00
|
|
|
}).then(({ statuses }) => {
|
2019-03-02 23:57:41 +11:00
|
|
|
if (statuses && statuses.length === 0) {
|
2019-01-30 06:04:52 +11:00
|
|
|
this.bottomedOut = true
|
|
|
|
}
|
2020-11-10 21:52:54 +11:00
|
|
|
}).finally(() =>
|
|
|
|
store.commit('setLoading', { timeline: this.timelineName, value: false })
|
|
|
|
)
|
2018-12-04 19:04:46 +11:00
|
|
|
}, 1000, this),
|
2020-09-29 20:18:37 +10:00
|
|
|
determineVisibleStatuses () {
|
|
|
|
if (!this.$refs.timeline) return
|
|
|
|
if (!this.virtualScrollingEnabled) return
|
|
|
|
|
|
|
|
const statuses = this.$refs.timeline.children
|
|
|
|
const cappedScrollIndex = Math.max(0, Math.min(this.virtualScrollIndex, statuses.length - 1))
|
|
|
|
|
|
|
|
if (statuses.length === 0) return
|
|
|
|
|
|
|
|
const height = Math.max(document.body.offsetHeight, window.pageYOffset)
|
|
|
|
|
|
|
|
const centerOfScreen = window.pageYOffset + (window.innerHeight * 0.5)
|
|
|
|
|
|
|
|
// Start from approximating the index of some visible status by using the
|
|
|
|
// the center of the screen on the timeline.
|
|
|
|
let approxIndex = Math.floor(statuses.length * (centerOfScreen / height))
|
|
|
|
let err = statuses[approxIndex].getBoundingClientRect().y
|
|
|
|
|
|
|
|
// if we have a previous scroll index that can be used, test if it's
|
|
|
|
// closer than the previous approximation, use it if so
|
|
|
|
|
|
|
|
const virtualScrollIndexY = statuses[cappedScrollIndex].getBoundingClientRect().y
|
|
|
|
if (Math.abs(err) > virtualScrollIndexY) {
|
|
|
|
approxIndex = cappedScrollIndex
|
|
|
|
err = virtualScrollIndexY
|
|
|
|
}
|
|
|
|
|
|
|
|
// if the status is too far from viewport, check the next/previous ones if
|
|
|
|
// they happen to be better
|
|
|
|
while (err < -20 && approxIndex < statuses.length - 1) {
|
|
|
|
err += statuses[approxIndex].offsetHeight
|
|
|
|
approxIndex++
|
|
|
|
}
|
|
|
|
while (err > window.innerHeight + 100 && approxIndex > 0) {
|
|
|
|
approxIndex--
|
|
|
|
err -= statuses[approxIndex].offsetHeight
|
|
|
|
}
|
|
|
|
|
|
|
|
// this status is now the center point for virtual scrolling and visible
|
|
|
|
// statuses will be nearby statuses before and after it
|
|
|
|
this.virtualScrollIndex = approxIndex
|
|
|
|
},
|
2017-06-04 01:51:55 +10:00
|
|
|
scrollLoad (e) {
|
2018-04-23 06:16:28 +10:00
|
|
|
const bodyBRect = document.body.getBoundingClientRect()
|
2018-04-23 06:12:34 +10:00
|
|
|
const height = Math.max(bodyBRect.height, -(bodyBRect.y))
|
2017-11-03 01:26:17 +11:00
|
|
|
if (this.timeline.loading === false &&
|
|
|
|
this.$el.offsetHeight > 0 &&
|
|
|
|
(window.innerHeight + window.pageYOffset) >= (height - 750)) {
|
2017-06-04 01:51:55 +10:00
|
|
|
this.fetchOlderStatuses()
|
|
|
|
}
|
2018-08-06 14:58:34 +10:00
|
|
|
},
|
2020-09-29 20:18:37 +10:00
|
|
|
handleScroll: throttle(function (e) {
|
|
|
|
this.determineVisibleStatuses()
|
|
|
|
this.scrollLoad(e)
|
|
|
|
}, 200),
|
2018-08-06 14:58:34 +10:00
|
|
|
handleVisibilityChange () {
|
|
|
|
this.unfocused = document.hidden
|
2016-10-29 00:40:13 +11:00
|
|
|
}
|
2017-11-13 10:06:48 +11:00
|
|
|
},
|
|
|
|
watch: {
|
|
|
|
newStatusCount (count) {
|
2019-10-07 07:28:30 +11:00
|
|
|
if (!this.$store.getters.mergedConfig.streaming) {
|
2017-11-13 10:06:48 +11:00
|
|
|
return
|
|
|
|
}
|
|
|
|
if (count > 0) {
|
|
|
|
// only 'stream' them when you're scrolled to the top
|
2019-03-07 04:03:42 +11:00
|
|
|
const doc = document.documentElement
|
|
|
|
const top = (window.pageYOffset || doc.scrollTop) - (doc.clientTop || 0)
|
|
|
|
if (top < 15 &&
|
2018-08-14 00:07:45 +10:00
|
|
|
!this.paused &&
|
2019-10-07 07:28:30 +11:00
|
|
|
!(this.unfocused && this.$store.getters.mergedConfig.pauseOnUnfocused)
|
2019-07-05 17:02:14 +10:00
|
|
|
) {
|
2017-11-13 10:06:48 +11:00
|
|
|
this.showNewStatuses()
|
|
|
|
} else {
|
|
|
|
this.paused = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-10-29 00:19:42 +11:00
|
|
|
}
|
2016-10-27 04:03:55 +11:00
|
|
|
}
|
|
|
|
|
2016-10-29 00:19:42 +11:00
|
|
|
export default Timeline
|