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-03-24 21:42:22 +02:00
|
|
|
import { useMergedConfigStore } from 'src/stores/merged_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',
|
2017-03-01 20:36:37 +01:00
|
|
|
'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',
|
2024-01-04 22:46:04 +01:00
|
|
|
'statusId',
|
2024-09-23 23:10:32 +02:00
|
|
|
'bookmarkFolderId',
|
2018-12-17 19:14:38 +03:00
|
|
|
'tag',
|
2019-02-20 10:13:28 -05:00
|
|
|
'embedded',
|
2019-05-26 14:15:35 -04:00
|
|
|
'count',
|
2019-09-13 15:34:17 -04:00
|
|
|
'pinnedStatusIds',
|
2022-04-25 23:50:22 +03:00
|
|
|
'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() {
|
2017-11-13 01:06:48 +02:00
|
|
|
return {
|
2022-08-17 20:49:20 +03:00
|
|
|
showScrollTop: false,
|
2018-08-06 07:58:34 +03:00
|
|
|
paused: false,
|
2019-01-29 21:04:52 +02:00
|
|
|
unfocused: false,
|
2020-09-29 10:18:37 +00:00
|
|
|
bottomedOut: false,
|
2020-10-27 12:59:50 +02:00
|
|
|
virtualScrollIndex: 0,
|
2026-01-06 16:22:52 +02:00
|
|
|
blockingClicks: false,
|
2017-11-13 01:06:48 +02:00
|
|
|
}
|
|
|
|
|
},
|
2020-07-02 18:03:02 +03:00
|
|
|
components: {
|
|
|
|
|
Status,
|
2025-04-06 12:12:17 +00:00
|
|
|
ScrollTopButton,
|
2020-07-02 18:03:02 +03:00
|
|
|
Conversation,
|
2021-02-25 10:56:16 +02:00
|
|
|
TimelineMenu,
|
2022-08-01 23:20:27 +03:00
|
|
|
QuickFilterSettings,
|
2026-01-06 16:22:52 +02:00
|
|
|
QuickViewSettings,
|
2020-07-02 18:03:02 +03:00
|
|
|
},
|
2017-03-09 13:38:32 +01:00
|
|
|
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() {
|
2017-11-13 01:06:48 +02:00
|
|
|
return this.timeline.newStatusCount
|
2017-11-21 16:12:47 +02:00
|
|
|
},
|
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() {
|
2017-11-23 13:46:37 +02:00
|
|
|
if (this.timeline.flushMarker !== 0) {
|
2020-06-30 17:37:36 +03:00
|
|
|
return this.$t('timeline.reload')
|
2017-11-21 16:12:47 +02:00
|
|
|
} else {
|
2020-06-30 17:37:36 +03:00
|
|
|
return `${this.$t('timeline.show_new')} (${this.newStatusCount})`
|
2017-11-21 16:12:47 +02:00
|
|
|
}
|
2018-12-17 19:14:38 +03:00
|
|
|
},
|
2026-01-06 16:22:52 +02:00
|
|
|
mobileLoadButtonString() {
|
2022-11-01 22:26:04 +02:00
|
|
|
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'])
|
2018-12-17 19:14:38 +03:00
|
|
|
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'],
|
|
|
|
|
),
|
2018-12-17 19:14:38 +03:00
|
|
|
}
|
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
|
2022-05-19 20:42:40 -04:00
|
|
|
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-03-24 21:42:22 +02:00
|
|
|
return useMergedConfigStore().mergedConfig.virtualScrolling
|
2022-08-24 22:31:48 +03:00
|
|
|
},
|
2023-04-05 21:06:37 -06:00
|
|
|
...mapState(useInterfaceStore, {
|
2026-01-06 16:22:52 +02:00
|
|
|
mobileLayout: (store) => store.layoutType === 'mobile',
|
|
|
|
|
}),
|
2017-03-09 13:38:32 +01:00
|
|
|
},
|
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
|
2016-11-24 18:31:18 +01:00
|
|
|
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)
|
2017-06-03 18:51:55 +03:00
|
|
|
|
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,
|
2024-01-04 22:46:04 +01:00
|
|
|
statusId: this.statusId,
|
2024-09-23 23:10:32 +02:00
|
|
|
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() {
|
2018-08-06 07:58:34 +03:00
|
|
|
if (typeof document.hidden !== 'undefined') {
|
2026-01-06 16:22:52 +02:00
|
|
|
document.addEventListener(
|
|
|
|
|
'visibilitychange',
|
|
|
|
|
this.handleVisibilityChange,
|
|
|
|
|
false,
|
|
|
|
|
)
|
2018-08-06 07:58:34 +03:00
|
|
|
this.unfocused = document.hidden
|
|
|
|
|
}
|
2019-02-17 14:37:24 -07:00
|
|
|
window.addEventListener('keydown', this.handleShortKey)
|
2020-09-29 10:18:37 +00:00
|
|
|
setTimeout(this.determineVisibleStatuses, 250)
|
2018-08-06 07:58:34 +03:00
|
|
|
},
|
2026-01-06 16:22:52 +02:00
|
|
|
unmounted() {
|
2022-04-10 17:47:54 +03:00
|
|
|
window.removeEventListener('scroll', this.handleScroll)
|
2019-02-17 14:37:24 -07:00
|
|
|
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,
|
|
|
|
|
})
|
2017-11-02 16:26:17 +02:00
|
|
|
},
|
2016-10-28 15:40:13 +02:00
|
|
|
methods: {
|
2020-10-27 12:59:50 +02:00
|
|
|
stopBlockingClicks: debounce(function () {
|
|
|
|
|
this.blockingClicks = false
|
|
|
|
|
}, 1000),
|
2026-01-06 16:22:52 +02:00
|
|
|
blockClicksTemporarily() {
|
2020-10-27 12:59:50 +02:00
|
|
|
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
|
2019-02-17 14:37:24 -07:00
|
|
|
if (e.key === '.') this.showNewStatuses()
|
|
|
|
|
},
|
2026-01-06 16:22:52 +02:00
|
|
|
showNewStatuses() {
|
2017-11-23 13:46:37 +02:00
|
|
|
if (this.timeline.flushMarker !== 0) {
|
2026-01-06 16:22:52 +02:00
|
|
|
this.$store.commit('clearTimeline', {
|
|
|
|
|
timeline: this.timelineName,
|
|
|
|
|
excludeUserId: true,
|
|
|
|
|
})
|
2017-11-21 16:12:47 +02:00
|
|
|
this.$store.commit('queueFlush', { timeline: this.timelineName, id: 0 })
|
2023-07-18 19:06:00 -04:00
|
|
|
if (this.timelineName === 'user') {
|
|
|
|
|
this.$store.dispatch('fetchPinnedStatuses', this.userId)
|
|
|
|
|
}
|
2017-11-21 16:12:47 +02:00
|
|
|
this.fetchOlderStatuses()
|
|
|
|
|
} else {
|
2020-10-27 12:59:50 +02:00
|
|
|
this.blockClicksTemporarily()
|
2017-11-21 16:12:47 +02:00
|
|
|
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
|
|
|
|
|
) {
|
2017-06-03 18:51:55 +03:00
|
|
|
this.fetchOlderStatuses()
|
|
|
|
|
}
|
2018-08-06 07:58:34 +03:00
|
|
|
},
|
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() {
|
2018-08-06 07:58:34 +03:00
|
|
|
this.unfocused = document.hidden
|
2026-01-06 16:22:52 +02:00
|
|
|
},
|
2017-11-13 01:06:48 +02:00
|
|
|
},
|
|
|
|
|
watch: {
|
2026-01-06 16:22:52 +02:00
|
|
|
newStatusCount(count) {
|
2026-03-24 21:42:22 +02:00
|
|
|
if (!useMergedConfigStore().mergedConfig.streaming) {
|
2017-11-13 01:06:48 +02:00
|
|
|
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
|
|
|
!(
|
2026-03-24 21:42:22 +02:00
|
|
|
this.unfocused &&
|
|
|
|
|
useMergedConfigStore().mergedConfig.pauseOnUnfocused
|
2026-02-13 14:26:39 +02:00
|
|
|
)
|
2019-07-05 10:02:14 +03:00
|
|
|
) {
|
2017-11-13 01:06:48 +02: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
|