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

300 lines
9.3 KiB
JavaScript
Raw Normal View History

2026-01-06 16:23:17 +02:00
import { debounce, keyBy, throttle } from 'lodash'
import { mapState } from 'pinia'
2026-01-08 17:26:52 +02:00
import Conversation from 'src/components/conversation/conversation.vue'
import QuickFilterSettings from 'src/components/quick_filter_settings/quick_filter_settings.vue'
import QuickViewSettings from 'src/components/quick_view_settings/quick_view_settings.vue'
import ScrollTopButton from 'src/components/scroll_top_button/scroll_top_button.vue'
import TimelineMenu from 'src/components/timeline_menu/timeline_menu.vue'
2026-01-06 16:22:52 +02:00
2026-01-29 20:44:55 +02:00
import { useInterfaceStore } from 'src/stores/interface.js'
import { useMergedConfigStore } from 'src/stores/merged_config.js'
2026-08-10 22:26:22 +03:00
import { useStatusesStore } from 'src/stores/statuses.js'
2026-08-11 18:54:54 +03:00
import { useTimelinesStore } from 'src/stores/timelines.js'
2026-08-10 15:00:59 +03:00
import { useUsersStore } from 'src/stores/users.js'
2026-01-29 20:40:00 +02:00
2026-01-08 17:26:52 +02:00
import { library } from '@fortawesome/fontawesome-svg-core'
import {
faArrowUp,
faCheck,
faCircleNotch,
faCirclePlus,
faCog,
faMinus,
} from '@fortawesome/free-solid-svg-icons'
2026-01-06 16:22:52 +02:00
library.add(faCircleNotch, faCog, faMinus, faArrowUp, faCirclePlus, faCheck)
2019-07-25 08:03:41 -04:00
2016-10-26 19:03:55 +02:00
const Timeline = {
2026-08-10 22:26:22 +03:00
props: {
2026-08-11 18:54:54 +03:00
timelineRef: Object,
2026-08-10 22:26:22 +03:00
count: Number,
footerSlipgate: Object, // reference to an element where we should put our footer
2026-08-11 20:25:43 +03:00
embedded: Boolean,
inProfile: Boolean,
skipPinned: Boolean,
2026-08-10 22:26:22 +03:00
},
2026-01-06 16:22:52 +02:00
data() {
return {
showScrollTop: false,
paused: false,
unfocused: false,
2020-09-29 10:18:37 +00:00
bottomedOut: false,
virtualScrollIndex: 0,
2026-01-06 16:22:52 +02:00
blockingClicks: false,
}
},
components: {
2025-04-06 12:12:17 +00:00
ScrollTopButton,
Conversation,
TimelineMenu,
QuickFilterSettings,
2026-01-06 16:22:52 +02:00
QuickViewSettings,
},
computed: {
2026-08-10 22:26:22 +03:00
timeline() {
2026-08-11 18:54:54 +03:00
return useTimelinesStore()[this.timelineRef.name]
2026-08-10 22:26:22 +03:00
},
2026-01-06 16:22:52 +02:00
filteredVisibleStatuses() {
2026-08-11 18:54:54 +03:00
return [...this.timeline.visibleStatusesIds.keys()]
.map((id) => this.timeline.statuses.get(id))
2026-08-13 01:12:48 +03:00
.filter(({ pinned }) => (this.skipPinned ? !pinned : true))
2022-03-24 14:09:25 +02:00
},
2026-01-06 16:22:52 +02:00
newStatusCount() {
return this.timeline.newStatusCount
},
2026-01-06 16:22:52 +02:00
showLoadButton() {
2020-06-30 17:02:38 +03:00
return this.timeline.newStatusCount > 0 || this.timeline.flushMarker !== 0
},
2026-01-06 16:22:52 +02:00
loadButtonString() {
if (this.timeline.flushMarker !== 0) {
return this.$t('timeline.reload')
} else {
return `${this.$t('timeline.show_new')} (${this.newStatusCount})`
}
},
2026-01-06 16:22:52 +02:00
mobileLoadButtonString() {
if (this.timeline.flushMarker !== 0) {
return '+'
} else {
return this.newStatusCount > 99 ? '∞' : this.newStatusCount
}
},
2026-01-06 16:22:52 +02:00
classes() {
let rootClasses = !this.embedded
? ['panel', 'panel-default']
: ['-embedded']
if (this.blockingClicks)
rootClasses = rootClasses.concat(['-blocked', '_misclick-prevention'])
return {
2020-10-28 08:53:23 +02:00
root: rootClasses,
2026-01-06 16:22:52 +02:00
header: ['timeline-heading'].concat(
!this.embedded ? ['panel-heading', '-sticky'] : ['panel-body'],
),
body: ['timeline-body'].concat(
!this.embedded ? ['panel-body'] : ['panel-body'],
),
footer: ['timeline-footer'].concat(
!this.embedded ? ['panel-footer'] : ['panel-body'],
),
}
2019-05-26 14:15:35 -04:00
},
2026-01-06 16:22:52 +02:00
statusesToDisplay() {
2026-08-11 18:54:54 +03:00
const amount = this.timeline.visibleStatusesIds.size
2020-09-29 10:18:37 +00:00
const statusesPerSide = Math.ceil(Math.max(3, window.innerHeight / 80))
2026-08-11 20:25:43 +03:00
const min = Math.max(0, this.virtualScrollIndex - statusesPerSide)
const max = Math.min(amount, this.virtualScrollIndex + statusesPerSide)
2026-08-11 18:54:54 +03:00
return new Set(
[...this.timeline.visibleStatusesIds.keys()].slice(min, max),
)
2020-09-29 10:18:37 +00:00
},
2026-01-06 16:22:52 +02:00
virtualScrollingEnabled() {
return useMergedConfigStore().mergedConfig.virtualScrolling
},
2023-04-05 21:06:37 -06:00
...mapState(useInterfaceStore, {
2026-01-06 16:22:52 +02:00
mobileLayout: (store) => store.layoutType === 'mobile',
}),
},
2026-01-06 16:22:52 +02:00
created() {
2026-08-11 18:54:54 +03:00
this.timelineChange(this.timelineRef)
2016-11-06 20:11:00 +01:00
},
2026-01-06 16:22:52 +02:00
mounted() {
2026-08-04 00:31:24 +03:00
if (document.hidden !== undefined) {
2026-01-06 16:22:52 +02:00
document.addEventListener(
'visibilitychange',
this.handleVisibilityChange,
false,
)
this.unfocused = document.hidden
}
window.addEventListener('keydown', this.handleShortKey)
2026-08-11 18:54:54 +03:00
window.addEventListener('scroll', this.handleScroll)
2020-09-29 10:18:37 +00:00
setTimeout(this.determineVisibleStatuses, 250)
},
2026-01-06 16:22:52 +02:00
unmounted() {
2026-08-13 01:12:48 +03:00
this.timelineChange(null, this.timelineRef)
2022-04-10 17:47:54 +03:00
window.removeEventListener('scroll', this.handleScroll)
window.removeEventListener('keydown', this.handleShortKey)
2026-08-04 00:31:24 +03:00
if (document.hidden !== undefined)
2026-01-06 16:22:52 +02:00
document.removeEventListener(
'visibilitychange',
this.handleVisibilityChange,
false,
)
},
2016-10-28 15:40:13 +02:00
methods: {
2026-08-11 18:54:54 +03:00
timelineChange(newTimeline, oldTimeline) {
2026-08-11 20:25:43 +03:00
const sameName = newTimeline?.name === oldTimeline?.name
const sameArgument = newTimeline?.argument === oldTimeline?.argument
if (sameName && sameArgument) return
2026-08-13 01:12:48 +03:00
if (oldTimeline) {
useTimelinesStore().deactivate(oldTimeline.name)
}
if (newTimeline) {
useTimelinesStore().activate(newTimeline.name, newTimeline.argument)
2026-08-11 18:54:54 +03:00
}
},
stopBlockingClicks: debounce(function () {
this.blockingClicks = false
}, 1000),
2026-01-06 16:22:52 +02:00
blockClicksTemporarily() {
if (!this.blockingClicks) {
this.blockingClicks = true
}
this.stopBlockingClicks()
},
2026-01-06 16:22:52 +02:00
handleShortKey(e) {
2019-06-12 10:56:08 +03:00
// Ignore when input fields are focused
if (['textarea', 'input'].includes(e.target.tagName.toLowerCase())) return
if (e.key === '.') this.showNewStatuses()
},
2026-01-06 16:22:52 +02:00
showNewStatuses() {
if (this.timeline.flushMarker !== 0) {
2026-08-11 18:54:54 +03:00
useTimelinesStore().clearTimeline(this.timelineRef.name)
useTimelinesStore().queueFlush(this.timelineRef.name, '')
this.fetchOlderStatuses()
} else {
this.blockClicksTemporarily()
2026-08-11 18:54:54 +03:00
useTimelinesStore().showNewStatuses(this.timelineRef.name)
this.paused = false
}
2022-04-10 18:44:03 +03:00
window.scrollTo({ top: 0 })
2016-11-06 17:44:05 +01:00
},
2026-01-06 16:22:52 +02:00
fetchOlderStatuses: throttle(
function () {
2026-08-11 18:54:54 +03:00
this.timeline.fetcher
2026-08-11 20:59:18 +03:00
.fetchAndUpdate({
older: true,
showImmediately: true,
})
2026-01-06 16:22:52 +02:00
.then(({ statuses }) => {
2026-08-04 15:59:52 +03:00
if (statuses?.length === 0) {
2026-01-06 16:22:52 +02:00
this.bottomedOut = true
}
})
},
1000,
this,
),
determineVisibleStatuses() {
2020-09-29 10:18:37 +00:00
if (!this.$refs.timeline) return
if (!this.virtualScrollingEnabled) return
const statuses = this.$refs.timeline.children
2026-01-06 16:22:52 +02:00
const cappedScrollIndex = Math.max(
0,
Math.min(this.virtualScrollIndex, statuses.length - 1),
)
2020-09-29 10:18:37 +00:00
if (statuses.length === 0) return
const height = Math.max(document.body.offsetHeight, window.pageYOffset)
2026-01-06 16:22:52 +02:00
const centerOfScreen = window.pageYOffset + window.innerHeight * 0.5
2020-09-29 10:18:37 +00:00
// Start from approximating the index of some visible status by using the
// the center of the screen on the timeline.
let approxIndex = Math.min(
Math.floor(statuses.length * (centerOfScreen / height)),
statuses.length - 1,
)
2020-09-29 10:18:37 +00:00
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
2026-01-06 16:22:52 +02:00
const virtualScrollIndexY =
statuses[cappedScrollIndex].getBoundingClientRect().y
2020-09-29 10:18:37 +00:00
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
},
2026-01-06 16:22:52 +02:00
scrollLoad() {
2018-04-22 20:16:28 +00:00
const bodyBRect = document.body.getBoundingClientRect()
2026-01-06 16:22:52 +02:00
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()
}
},
2020-09-29 10:18:37 +00:00
handleScroll: throttle(function (e) {
this.determineVisibleStatuses()
this.scrollLoad(e)
}, 200),
2026-01-06 16:22:52 +02:00
handleVisibilityChange() {
this.unfocused = document.hidden
2026-01-06 16:22:52 +02:00
},
},
watch: {
2026-08-11 18:54:54 +03:00
timelineRef(newTimeline, oldTimeline) {
this.timelineChange(newTimeline, oldTimeline)
},
filteredVisibleStatuses() {
this.determineVisibleStatuses()
},
2026-01-06 16:22:52 +02:00
newStatusCount(count) {
if (!useMergedConfigStore().mergedConfig.streaming) {
return
}
if (count > 0) {
// only 'stream' them when you're scrolled to the top
2022-04-10 17:47:54 +03:00
const doc = document.documentElement
const top = (window.pageYOffset || doc.scrollTop) - (doc.clientTop || 0)
2026-01-06 16:22:52 +02:00
if (
top < 15 &&
!this.paused &&
2026-02-13 14:26:39 +02:00
!(
this.unfocused &&
useMergedConfigStore().mergedConfig.pauseOnUnfocused
2026-02-13 14:26:39 +02:00
)
2019-07-05 10:02:14 +03:00
) {
this.showNewStatuses()
} else {
this.paused = true
}
}
2026-01-06 16:22:52 +02:00
},
},
2016-10-26 19:03:55 +02:00
}
2016-10-28 15:19:42 +02:00
export default Timeline