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

260 lines
8.9 KiB
JavaScript
Raw Normal View History

2016-10-28 13:19:42 +00:00
import Status from '../status/status.vue'
2016-11-06 16:44:05 +00:00
import timelineFetcher from '../../services/timeline_fetcher/timeline_fetcher.service.js'
2019-03-11 20:24:37 +00:00
import Conversation from '../conversation/conversation.vue'
import TimelineMenu from '../timeline_menu/timeline_menu.vue'
import TimelineMenuTabs from '../timeline_menu_tabs/timeline_menu_tabs.vue'
import TimelineQuickSettings from './timeline_quick_settings.vue'
import { debounce, throttle, keyBy } from 'lodash'
import { library } from '@fortawesome/fontawesome-svg-core'
import { faCircleNotch, faCog } from '@fortawesome/free-solid-svg-icons'
library.add(
faCircleNotch,
faCog
)
2019-07-25 12:03:41 +00:00
2016-10-26 17:03:55 +00:00
const Timeline = {
props: [
2016-10-28 13:40:13 +00:00
'timeline',
'timelineName',
2017-06-12 14:34:41 +00:00
'title',
2017-09-17 11:26:35 +00:00
'userId',
'listId',
'tag',
'embedded',
2019-05-26 18:15:35 +00:00
'count',
'pinnedStatusIds',
'inProfile',
'footerSlipgate' // reference to an element where we should put our footer
2016-10-28 13:19:42 +00:00
],
data () {
return {
paused: false,
unfocused: false,
2020-09-29 10:18:37 +00:00
bottomedOut: false,
virtualScrollIndex: 0,
blockingClicks: false
}
},
components: {
Status,
Conversation,
TimelineMenu,
TimelineMenuTabs,
TimelineQuickSettings
},
computed: {
2022-03-24 12:09:25 +00:00
filteredVisibleStatuses () {
return this.timeline.visibleStatuses.filter(status => this.timelineName !== 'user' || (status.id >= this.timeline.minId && status.id <= this.timeline.maxId))
},
2022-03-28 14:21:42 +00:00
filteredPinnedStatusIds () {
return (this.pinnedStatusIds || []).filter(statusId => this.timeline.statusesObject[statusId])
2022-03-24 12:09:25 +00:00
},
newStatusCount () {
return this.timeline.newStatusCount
},
2020-06-30 14:02:38 +00:00
showLoadButton () {
return this.timeline.newStatusCount > 0 || this.timeline.flushMarker !== 0
},
loadButtonString () {
if (this.timeline.flushMarker !== 0) {
return this.$t('timeline.reload')
} else {
return `${this.$t('timeline.show_new')} (${this.newStatusCount})`
}
},
classes () {
let rootClasses = !this.embedded ? ['panel', 'panel-default'] : ['-nonpanel']
if (this.blockingClicks) rootClasses = rootClasses.concat(['-blocked', '_misclick-prevention'])
return {
2020-10-28 06:53:23 +00:00
root: rootClasses,
header: ['timeline-heading'].concat(!this.embedded ? ['panel-heading', '-sticky'] : []),
body: ['timeline-body'].concat(!this.embedded ? ['panel-body'] : []),
footer: ['timeline-footer'].concat(!this.embedded ? ['panel-footer'] : [])
}
2019-05-26 18:15:35 +00:00
},
2019-07-20 20:54:30 +00:00
// id map of statuses which need to be hidden in the main list due to pinning logic
2019-08-15 17:16:55 +00:00
pinnedStatusIdsObject () {
2019-08-18 02:10:01 +00:00
return keyBy(this.pinnedStatusIds)
2020-09-29 10:18:37 +00:00
},
statusesToDisplay () {
const amount = this.timeline.visibleStatuses.length
const statusesPerSide = Math.ceil(Math.max(3, window.innerHeight / 80))
const nonPinnedIndex = this.virtualScrollIndex - this.filteredPinnedStatusIds.length
const min = Math.max(0, nonPinnedIndex - statusesPerSide)
const max = Math.min(amount, nonPinnedIndex + statusesPerSide)
2020-09-29 10:18:37 +00:00
return this.timeline.visibleStatuses.slice(min, max).map(_ => _.id)
},
virtualScrollingEnabled () {
return this.$store.getters.mergedConfig.virtualScrolling
},
showPanelNavShortcuts () {
return this.$store.getters.mergedConfig.showPanelNavShortcuts
2017-08-21 17:25:01 +00:00
}
},
2016-11-06 19:11:00 +00:00
created () {
const store = this.$store
const credentials = store.state.users.currentUser.credentials
const showImmediately = this.timeline.visibleStatuses.length === 0
2016-11-06 19:11:00 +00:00
2022-04-10 14:47:54 +00:00
window.addEventListener('scroll', this.handleScroll)
2019-04-09 15:38:13 +00:00
if (store.state.api.fetchers[this.timelineName]) { return false }
2019-02-19 17:42:53 +00:00
2016-11-06 19:11:00 +00:00
timelineFetcher.fetchAndUpdate({
store,
credentials,
timeline: this.timelineName,
2017-06-12 14:34:41 +00:00
showImmediately,
2017-09-17 11:26:35 +00:00
userId: this.userId,
listId: this.listId,
2017-09-17 11:26:35 +00:00
tag: this.tag
2016-11-06 19:11:00 +00:00
})
},
mounted () {
if (typeof document.hidden !== 'undefined') {
document.addEventListener('visibilitychange', this.handleVisibilityChange, false)
this.unfocused = document.hidden
}
window.addEventListener('keydown', this.handleShortKey)
2020-09-29 10:18:37 +00:00
setTimeout(this.determineVisibleStatuses, 250)
},
2021-04-25 10:44:50 +00:00
unmounted () {
2022-04-10 14:47:54 +00:00
window.removeEventListener('scroll', this.handleScroll)
window.removeEventListener('keydown', this.handleShortKey)
if (typeof document.hidden !== 'undefined') document.removeEventListener('visibilitychange', this.handleVisibilityChange, false)
this.$store.commit('setLoading', { timeline: this.timelineName, value: false })
},
2016-10-28 13:40:13 +00:00
methods: {
stopBlockingClicks: debounce( function() {
this.blockingClicks = false
}, 1000),
blockClicksTemporarily () {
if (!this.blockingClicks) {
this.blockingClicks = true
}
this.stopBlockingClicks()
},
handleShortKey (e) {
2019-06-12 07:56:08 +00:00
// Ignore when input fields are focused
if (['textarea', 'input'].includes(e.target.tagName.toLowerCase())) return
if (e.key === '.') this.showNewStatuses()
},
2016-10-28 13:40:13 +00:00
showNewStatuses () {
if (this.timeline.flushMarker !== 0) {
this.$store.commit('clearTimeline', { timeline: this.timelineName, excludeUserId: true })
this.$store.commit('queueFlush', { timeline: this.timelineName, id: 0 })
this.fetchOlderStatuses()
} else {
this.blockClicksTemporarily()
this.$store.commit('showNewStatuses', { timeline: this.timelineName })
this.paused = false
}
if (!this.inProfile) {
window.scrollTo({ top: 0 })
}
2016-11-06 16:44:05 +00:00
},
fetchOlderStatuses: throttle( function () {
2016-11-06 16:44:05 +00:00
const store = this.$store
const credentials = store.state.users.currentUser.credentials
2016-11-07 14:04:27 +00:00
store.commit('setLoading', { timeline: this.timelineName, value: true })
2016-11-06 16:44:05 +00:00
timelineFetcher.fetchAndUpdate({
store,
credentials,
timeline: this.timelineName,
older: true,
2017-06-12 14:34:41 +00:00
showImmediately: true,
2017-09-17 11:26:35 +00:00
userId: this.userId,
listId: this.listId,
2017-09-17 11:26:35 +00:00
tag: this.tag
}).then(({ statuses }) => {
2019-03-02 12:57:41 +00:00
if (statuses && statuses.length === 0) {
this.bottomedOut = true
}
2020-11-10 10:52:54 +00:00
}).finally(() =>
store.commit('setLoading', { timeline: this.timelineName, value: false })
)
}, 1000, this),
2020-09-29 10:18:37 +00: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
2020-09-29 10:18:37 +00:00
// 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
},
scrollLoad (e) {
2018-04-22 20:16:28 +00:00
const bodyBRect = document.body.getBoundingClientRect()
const height = Math.max(bodyBRect.height, -(bodyBRect.y))
if (this.timeline.loading === false &&
this.$el.offsetHeight > 0 &&
(window.innerHeight + window.pageYOffset) >= (height - 750)) {
this.fetchOlderStatuses()
}
},
handleScroll: throttle( function (e) {
2020-09-29 10:18:37 +00:00
this.determineVisibleStatuses()
this.scrollLoad(e)
}, 200),
handleVisibilityChange () {
this.unfocused = document.hidden
2016-10-28 13:40:13 +00:00
}
},
watch: {
newStatusCount (count) {
if (!this.$store.getters.mergedConfig.streaming) {
return
}
if (count > 0) {
// only 'stream' them when you're scrolled to the top
2022-04-10 14:47:54 +00:00
const doc = document.documentElement
const top = (window.pageYOffset || doc.scrollTop) - (doc.clientTop || 0)
if (top < 15 &&
!this.paused &&
!(this.unfocused && this.$store.getters.mergedConfig.pauseOnUnfocused)
2019-07-05 07:02:14 +00:00
) {
this.showNewStatuses()
} else {
this.paused = true
}
}
}
2016-10-28 13:19:42 +00:00
}
2016-10-26 17:03:55 +00:00
}
2016-10-28 13:19:42 +00:00
export default Timeline