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

340 lines
10 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
2026-01-06 16:23:17 +02:00
import Conversation from '../conversation/conversation.vue'
import QuickFilterSettings from '../quick_filter_settings/quick_filter_settings.vue'
import QuickViewSettings from '../quick_view_settings/quick_view_settings.vue'
import ScrollTopButton from '../scroll_top_button/scroll_top_button.vue'
import Status from '../status/status.vue'
import TimelineMenu from '../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'
2026-02-13 14:26:39 +02:00
import { useSyncConfigStore } from 'src/stores/sync_config.js'
2026-01-29 20:40:00 +02:00
import timelineFetcher from 'src/services/timeline_fetcher/timeline_fetcher.service.js'
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 = {
props: [
2016-10-28 15:40:13 +02:00
'timeline',
'timelineName',
2017-06-12 16:34:41 +02:00
'title',
2017-09-17 14:26:35 +03:00
'userId',
2022-08-06 17:26:43 +03:00
'listId',
'statusId',
'bookmarkFolderId',
'tag',
'embedded',
2019-05-26 14:15:35 -04:00
'count',
'pinnedStatusIds',
'inProfile',
2026-01-06 16:22:52 +02:00
'footerSlipgate', // reference to an element where we should put our footer
2016-10-28 15:19:42 +02: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: {
Status,
2025-04-06 12:12:17 +00:00
ScrollTopButton,
Conversation,
TimelineMenu,
QuickFilterSettings,
2026-01-06 16:22:52 +02:00
QuickViewSettings,
},
computed: {
2026-01-06 16:22:52 +02:00
filteredVisibleStatuses() {
return this.timeline.visibleStatuses.filter(
(status) =>
this.timelineName !== 'user' ||
(status.id >= this.timeline.minId &&
status.id <= this.timeline.maxId),
)
2022-03-24 14:09:25 +02:00
},
2026-01-06 16:22:52 +02:00
filteredPinnedStatusIds() {
return (this.pinnedStatusIds || []).filter(
(statusId) => this.timeline.statusesObject[statusId],
)
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
},
2019-07-20 16:54:30 -04:00
// id map of statuses which need to be hidden in the main list due to pinning logic
2026-01-06 16:22:52 +02:00
pinnedStatusIdsObject() {
2019-08-17 22:10:01 -04:00
return keyBy(this.pinnedStatusIds)
2020-09-29 10:18:37 +00:00
},
2026-01-06 16:22:52 +02:00
statusesToDisplay() {
2020-09-29 10:18:37 +00:00
const amount = this.timeline.visibleStatuses.length
const statusesPerSide = Math.ceil(Math.max(3, window.innerHeight / 80))
2026-01-06 16:22:52 +02:00
const nonPinnedIndex =
this.virtualScrollIndex - this.filteredPinnedStatusIds.length
const min = Math.max(0, nonPinnedIndex - statusesPerSide)
const max = Math.min(amount, nonPinnedIndex + statusesPerSide)
2026-01-06 16:22:52 +02:00
return this.timeline.visibleStatuses.slice(min, max).map((_) => _.id)
2020-09-29 10:18:37 +00:00
},
2026-01-06 16:22:52 +02:00
virtualScrollingEnabled() {
2026-02-13 14:26:39 +02:00
return useSyncConfigStore().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() {
2016-11-06 20:11:00 +01:00
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
2022-04-10 17:47:54 +03:00
window.addEventListener('scroll', this.handleScroll)
2026-01-06 16:22:52 +02:00
if (store.state.api.fetchers[this.timelineName]) {
return false
}
2019-02-19 09:42:53 -08:00
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 14:26:35 +03:00
userId: this.userId,
2022-08-06 17:26:43 +03:00
listId: this.listId,
statusId: this.statusId,
bookmarkFolderId: this.bookmarkFolderId,
2026-01-06 16:22:52 +02:00
tag: this.tag,
2016-11-06 20:11:00 +01:00
})
},
2026-01-06 16:22:52 +02:00
mounted() {
if (typeof 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)
2020-09-29 10:18:37 +00:00
setTimeout(this.determineVisibleStatuses, 250)
},
2026-01-06 16:22:52 +02:00
unmounted() {
2022-04-10 17:47:54 +03:00
window.removeEventListener('scroll', this.handleScroll)
window.removeEventListener('keydown', this.handleShortKey)
2026-01-06 16:22:52 +02:00
if (typeof document.hidden !== 'undefined')
document.removeEventListener(
'visibilitychange',
this.handleVisibilityChange,
false,
)
this.$store.commit('setLoading', {
timeline: this.timelineName,
value: false,
})
},
2016-10-28 15:40:13 +02:00
methods: {
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-01-06 16:22:52 +02:00
this.$store.commit('clearTimeline', {
timeline: this.timelineName,
excludeUserId: true,
})
this.$store.commit('queueFlush', { timeline: this.timelineName, id: 0 })
if (this.timelineName === 'user') {
this.$store.dispatch('fetchPinnedStatuses', this.userId)
}
this.fetchOlderStatuses()
} else {
this.blockClicksTemporarily()
this.$store.commit('showNewStatuses', { timeline: this.timelineName })
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 () {
const store = this.$store
const credentials = store.state.users.currentUser.credentials
store.commit('setLoading', { timeline: this.timelineName, value: true })
timelineFetcher
.fetchAndUpdate({
store,
credentials,
timeline: this.timelineName,
older: true,
showImmediately: true,
userId: this.userId,
listId: this.listId,
statusId: this.statusId,
bookmarkFolderId: this.bookmarkFolderId,
tag: this.tag,
})
.then(({ statuses }) => {
if (statuses && statuses.length === 0) {
this.bottomedOut = true
}
})
.finally(() =>
store.commit('setLoading', {
timeline: this.timelineName,
value: false,
}),
)
},
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.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
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-01-06 16:22:52 +02:00
newStatusCount(count) {
2026-02-13 14:26:39 +02:00
if (!useSyncConfigStore().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 && useSyncConfigStore().mergedConfig.pauseOnUnfocused
)
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