2026-08-13 01:22:44 +03:00
|
|
|
import { debounce, throttle } from 'lodash'
|
2026-01-06 16:23:17 +02:00
|
|
|
import { mapState } from 'pinia'
|
2026-01-08 17:26:52 +02:00
|
|
|
|
2026-06-04 21:56:25 +03: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'
|
2026-03-24 21:42:22 +02:00
|
|
|
import { useMergedConfigStore } from 'src/stores/merged_config.js'
|
2026-08-19 19:19:59 +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-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() {
|
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-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: {
|
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-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-18 21:35:06 +03:00
|
|
|
return this.timeline.order
|
|
|
|
|
.filter((id) => this.timeline.visibleStatusIds.has(id))
|
|
|
|
|
.map((id) => useStatusesStore().allStatuses.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() {
|
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() {
|
2026-08-24 15:01:59 +03:00
|
|
|
return this.timeline.newStatusCount > 0 || this.timeline.reloadNeeded
|
2020-06-30 17:02:38 +03:00
|
|
|
},
|
2026-01-06 16:22:52 +02:00
|
|
|
loadButtonString() {
|
2026-08-24 15:01:59 +03:00
|
|
|
if (this.timeline.reloadNeeded) {
|
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() {
|
2026-08-24 15:01:59 +03:00
|
|
|
if (this.timeline.reloadNeeded) {
|
2022-11-01 22:26:04 +02:00
|
|
|
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
|
|
|
},
|
2026-01-06 16:22:52 +02:00
|
|
|
statusesToDisplay() {
|
2026-08-24 16:04:40 +03:00
|
|
|
if (!this.virtualScrollingEnabled) return this.visibleStatusIds
|
2026-08-18 21:35:06 +03:00
|
|
|
const amount = this.timeline.visibleStatusIds.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-19 19:19:59 +03:00
|
|
|
return new Set(this.timeline.order.slice(min, max))
|
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() {
|
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,
|
|
|
|
|
)
|
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)
|
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)
|
2018-08-06 07:58:34 +03:00
|
|
|
},
|
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)
|
2019-02-17 14:37:24 -07:00
|
|
|
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,
|
|
|
|
|
)
|
2017-11-02 16:26:17 +02:00
|
|
|
},
|
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
|
|
|
}
|
|
|
|
|
},
|
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() {
|
2026-08-24 15:01:59 +03:00
|
|
|
if (this.timeline.reloadNeeded) {
|
2026-08-11 18:54:54 +03:00
|
|
|
useTimelinesStore().clearTimeline(this.timelineRef.name)
|
2017-11-21 16:12:47 +02:00
|
|
|
this.fetchOlderStatuses()
|
|
|
|
|
} else {
|
2020-10-27 12:59:50 +02:00
|
|
|
this.blockClicksTemporarily()
|
2026-08-11 18:54:54 +03:00
|
|
|
useTimelinesStore().showNewStatuses(this.timelineRef.name)
|
2017-11-21 16:12:47 +02:00
|
|
|
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-19 02:03:23 +03:00
|
|
|
this.timeline.fetcher.fetchOlder()
|
2026-01-06 16:22:52 +02:00
|
|
|
},
|
|
|
|
|
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.
|
2026-08-01 23:36:31 +03:00
|
|
|
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
|
2026-08-19 02:03:23 +03:00
|
|
|
|
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 (
|
2026-08-19 02:03:23 +03:00
|
|
|
!this.timeline.fetcher.loading.value &&
|
2026-01-06 16:22:52 +02:00
|
|
|
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-08-11 18:54:54 +03:00
|
|
|
timelineRef(newTimeline, oldTimeline) {
|
|
|
|
|
this.timelineChange(newTimeline, oldTimeline)
|
|
|
|
|
},
|
2026-05-18 23:05:36 +03:00
|
|
|
filteredVisibleStatuses() {
|
|
|
|
|
this.determineVisibleStatuses()
|
|
|
|
|
},
|
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
|