mirror of
https://github.com/nextcloud/spreed.git
synced 2025-12-17 21:12:20 +01:00
1254 lines
39 KiB
Vue
1254 lines
39 KiB
Vue
<!--
|
|
- SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors
|
|
- SPDX-License-Identifier: AGPL-3.0-or-later
|
|
-->
|
|
|
|
<template>
|
|
<div
|
|
ref="scroller"
|
|
class="scroller messages-list__scroller"
|
|
:class="{
|
|
'scroller--chatScrolledToBottom': isChatScrolledToBottom,
|
|
'scroller--isScrolling': isScrolling,
|
|
}"
|
|
@scroll="onScroll"
|
|
@scrollend="endScroll">
|
|
<template v-if="isInitialisingMessages">
|
|
<LoadingPlaceholder
|
|
type="messages"
|
|
class="messages-list__placeholder"
|
|
:count="15" />
|
|
</template>
|
|
|
|
<NcEmptyContent
|
|
v-else-if="showEmptyContent"
|
|
class="messages-list__empty-content"
|
|
:name="t('spreed', 'No messages')"
|
|
:description="t('spreed', 'All messages have expired or have been deleted.')">
|
|
<template #icon>
|
|
<IconMessageOutline :size="64" />
|
|
</template>
|
|
</NcEmptyContent>
|
|
|
|
<template v-else>
|
|
<TransitionWrapper name="fade">
|
|
<div ref="scrollerLoader" class="scroller__loading">
|
|
<NcLoadingIcon v-if="loadingOldMessages" class="scroller__loading-element" :size="32" />
|
|
</div>
|
|
</TransitionWrapper>
|
|
|
|
<ul
|
|
v-for="(list, dateTimestamp) in messagesGroupedByDateByAuthor"
|
|
:key="`section_${dateTimestamp}`"
|
|
:ref="`dateGroup-${token}`"
|
|
:data-date-timestamp="dateTimestamp"
|
|
class="scroller__content"
|
|
:class="{ 'has-sticky': dateTimestamp === stickyDate }">
|
|
<li :key="`${currentDay}_${dateTimestamp}`" class="messages-date">
|
|
<StaticDateTime
|
|
:time="dateTimestamp * 1000"
|
|
class="messages-date__text"
|
|
role="heading"
|
|
aria-level="3" />
|
|
</li>
|
|
<template
|
|
v-for="group in list"
|
|
:key="group.id">
|
|
<component
|
|
:is="messagesGroupComponent[group.type]"
|
|
:token="token"
|
|
:messages="group.messages"
|
|
:previous-message-id="group.previousMessageId"
|
|
:next-message-id="group.nextMessageId" />
|
|
<div
|
|
v-if="isLastReadMessage(group)"
|
|
v-intersection-observer="lastReadMessageVisibilityChanged"
|
|
class="message-unread-marker">
|
|
<div class="message-unread-marker__wrapper">
|
|
<span class="message-unread-marker__text">{{ t('spreed', 'Unread messages') }}</span>
|
|
<NcAssistantButton
|
|
v-if="shouldShowSummaryOption"
|
|
:disabled="loadingSummary"
|
|
@click="generateSummary">
|
|
{{ t('spreed', 'Generate summary') }}
|
|
</NcAssistantButton>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</ul>
|
|
|
|
<TransitionWrapper name="fade">
|
|
<span v-if="loadingNewMessages" class="scroller__loading-new">
|
|
<span class="scroller__loading-new-wrapper">
|
|
<NcLoadingIcon :size="20" />
|
|
{{ t('spreed', 'Loading …') }}
|
|
</span>
|
|
</span>
|
|
</TransitionWrapper>
|
|
</template>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { n, t } from '@nextcloud/l10n'
|
|
import { vIntersectionObserver as IntersectionObserver } from '@vueuse/components'
|
|
import debounce from 'debounce'
|
|
import { computed, provide, ref } from 'vue'
|
|
import NcAssistantButton from '@nextcloud/vue/components/NcAssistantButton'
|
|
import NcEmptyContent from '@nextcloud/vue/components/NcEmptyContent'
|
|
import NcLoadingIcon from '@nextcloud/vue/components/NcLoadingIcon'
|
|
import IconMessageOutline from 'vue-material-design-icons/MessageOutline.vue'
|
|
import LoadingPlaceholder from '../UIShared/LoadingPlaceholder.vue'
|
|
import StaticDateTime from '../UIShared/StaticDateTime.vue'
|
|
import TransitionWrapper from '../UIShared/TransitionWrapper.vue'
|
|
import MessagesGroup from './MessagesGroup/MessagesGroup.vue'
|
|
import MessagesSystemGroup from './MessagesGroup/MessagesSystemGroup.vue'
|
|
import { useDocumentVisibility } from '../../composables/useDocumentVisibility.ts'
|
|
import { useGetMessages } from '../../composables/useGetMessages.ts'
|
|
import { useGetThreadId } from '../../composables/useGetThreadId.ts'
|
|
import { ATTENDEE, CONVERSATION } from '../../constants.ts'
|
|
import { CHAT_STYLE } from '../../constants.ts'
|
|
import { getTalkConfig, hasTalkFeature } from '../../services/CapabilitiesManager.ts'
|
|
import { EventBus } from '../../services/EventBus.ts'
|
|
import { useChatStore } from '../../stores/chat.ts'
|
|
import { useChatExtrasStore } from '../../stores/chatExtras.ts'
|
|
import { useSettingsStore } from '../../stores/settings.ts'
|
|
import { convertToUnix } from '../../utils/formattedTime.ts'
|
|
|
|
const SCROLL_TOLERANCE = 10
|
|
const LOAD_HISTORY_THRESHOLD = 800
|
|
const canSummarizeChat = hasTalkFeature('local', 'chat-summary-api')
|
|
const summaryThreshold = getTalkConfig('local', 'chat', 'summary-threshold') ?? 0
|
|
|
|
const messagesGroupComponent = {
|
|
system: MessagesSystemGroup,
|
|
default: MessagesGroup,
|
|
}
|
|
|
|
export default {
|
|
name: 'MessagesList',
|
|
components: {
|
|
IconMessageOutline,
|
|
LoadingPlaceholder,
|
|
NcEmptyContent,
|
|
NcAssistantButton,
|
|
NcLoadingIcon,
|
|
StaticDateTime,
|
|
TransitionWrapper,
|
|
},
|
|
|
|
directives: {
|
|
IntersectionObserver,
|
|
},
|
|
|
|
provide() {
|
|
return {
|
|
getMessagesListScroller: () => this.$refs.scroller,
|
|
}
|
|
},
|
|
|
|
props: {
|
|
/**
|
|
* The conversation token.
|
|
*/
|
|
token: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
|
|
isChatScrolledToBottom: {
|
|
type: Boolean,
|
|
default: true,
|
|
},
|
|
|
|
isVisible: {
|
|
type: Boolean,
|
|
default: true,
|
|
},
|
|
},
|
|
|
|
emits: ['update:isChatScrolledToBottom'],
|
|
|
|
setup(props) {
|
|
const {
|
|
contextMessageId,
|
|
loadingOldMessages,
|
|
loadingNewMessages,
|
|
isInitialisingMessages,
|
|
isChatBeginningReached,
|
|
isChatEndReached,
|
|
|
|
getOldMessages,
|
|
getNewMessages,
|
|
} = useGetMessages()
|
|
|
|
const isDocumentVisible = useDocumentVisibility()
|
|
const isChatVisible = computed(() => isDocumentVisible.value && props.isVisible)
|
|
const threadId = useGetThreadId()
|
|
const settingsStore = useSettingsStore()
|
|
const isSplitViewEnabled = computed(() => settingsStore.chatStyle === CHAT_STYLE.SPLIT)
|
|
provide('messagesList:isSplitViewEnabled', isSplitViewEnabled)
|
|
|
|
return {
|
|
messagesGroupComponent,
|
|
chatExtrasStore: useChatExtrasStore(),
|
|
chatStore: useChatStore(),
|
|
isChatVisible,
|
|
threadId,
|
|
|
|
contextMessageId,
|
|
loadingOldMessages,
|
|
loadingNewMessages,
|
|
isInitialisingMessages,
|
|
isChatBeginningReached,
|
|
isChatEndReached,
|
|
|
|
getOldMessages,
|
|
getNewMessages,
|
|
}
|
|
},
|
|
|
|
data() {
|
|
return {
|
|
/**
|
|
* A list of messages grouped by same day and then by author and time.
|
|
*/
|
|
messagesGroupedByDateByAuthor: {},
|
|
|
|
/**
|
|
* We store this value in order to determine whether the user has scrolled up
|
|
* or down at each iteration of the debounceHandleScroll method.
|
|
*/
|
|
previousScrollTopValue: null,
|
|
|
|
isFocusingMessage: false,
|
|
|
|
debounceUpdateReadMarkerPosition: () => {},
|
|
|
|
debounceHandleScroll: () => {},
|
|
|
|
isScrolling: null,
|
|
|
|
stickyDate: null,
|
|
|
|
endScrollTimeout: () => {},
|
|
|
|
isUnreadMarkerSeen: false,
|
|
|
|
loadingSummary: false,
|
|
}
|
|
},
|
|
|
|
computed: {
|
|
visualLastReadMessageId() {
|
|
return this.$store.getters.getVisualLastReadMessageId(this.token)
|
|
},
|
|
|
|
/**
|
|
* Gets the messages array. We need this because the DynamicScroller needs an array to
|
|
* loop through.
|
|
*
|
|
* @return {Array}
|
|
*/
|
|
messagesList() {
|
|
return this.chatStore.getMessagesList(this.token, {
|
|
messageId: this.contextMessageId,
|
|
threadId: this.threadId,
|
|
})
|
|
},
|
|
|
|
chatLoadedIdentifier() {
|
|
return this.token + ':' + this.contextMessageId + ':' + this.threadId + ':' + this.isInitialisingMessages
|
|
},
|
|
|
|
showEmptyContent() {
|
|
return !this.messagesList.length
|
|
},
|
|
|
|
/**
|
|
* In order for the state of the component to be sticky,
|
|
* the div .scroller must be scrolled to the bottom.
|
|
* When isSticky is true, as new messages are appended to the list, the div .scroller
|
|
* automatically scrolls down to the last message, if it's false, new messages are
|
|
* appended but the scrolling position is not altered.
|
|
*
|
|
* @return {boolean}
|
|
*/
|
|
isSticky() {
|
|
return this.isChatScrolledToBottom && !this.isInitialisingMessages
|
|
},
|
|
|
|
conversation() {
|
|
return this.$store.getters.conversation(this.token)
|
|
},
|
|
|
|
currentDay() {
|
|
return convertToUnix(new Date().setHours(0, 0, 0, 0))
|
|
},
|
|
|
|
shouldShowSummaryOption() {
|
|
if (this.conversation.remoteServer || !canSummarizeChat || this.chatExtrasStore.hasChatSummaryTaskRequested(this.token)) {
|
|
return false
|
|
}
|
|
return (this.conversation.unreadMessages >= summaryThreshold)
|
|
},
|
|
},
|
|
|
|
watch: {
|
|
isChatVisible(visible) {
|
|
if (visible) {
|
|
this.onWindowFocus()
|
|
}
|
|
},
|
|
|
|
isInitialisingMessages(newValue, oldValue) {
|
|
if (oldValue && !newValue) { // switching true -> false
|
|
this.$nextTick(() => {
|
|
// basically scrolling to either the last read message or the message in the URL anchor
|
|
// and there is a fallback to scroll to the bottom if the message is not found
|
|
this.scrollToFocusedMessage(this.getMessageIdFromHash())
|
|
})
|
|
}
|
|
},
|
|
|
|
token(newToken, oldToken) {
|
|
// Expire older messages when navigating to another conversation
|
|
this.$store.dispatch('easeMessageList', { token: oldToken })
|
|
this.isUnreadMarkerSeen = false
|
|
},
|
|
|
|
messagesList: {
|
|
immediate: true,
|
|
handler(newMessages, oldMessages) {
|
|
const newGroups = this.prepareMessagesGroups(newMessages)
|
|
if (!oldMessages || (oldMessages?.length && newMessages.length && newMessages[0].token !== oldMessages?.at(0)?.token)) {
|
|
// messages were just loaded or token has changed, reset the messages
|
|
this.messagesGroupedByDateByAuthor = newGroups
|
|
} else {
|
|
this.softUpdateByDateGroups(this.messagesGroupedByDateByAuthor, newGroups)
|
|
}
|
|
|
|
// scroll to bottom if needed
|
|
this.scrollToBottom({ smooth: false })
|
|
|
|
this.$nextTick(() => {
|
|
if (this.isInitialisingMessages) {
|
|
return
|
|
}
|
|
this.checkChatNotScrollable()
|
|
|
|
if (this.conversation?.type === CONVERSATION.TYPE.NOTE_TO_SELF) {
|
|
this.updateTasksCount()
|
|
}
|
|
})
|
|
},
|
|
},
|
|
|
|
chatLoadedIdentifier() {
|
|
// resetting to default values
|
|
this.stickyDate = null
|
|
if (this.$refs.scroller) {
|
|
this.$refs.scroller.removeEventListener('wheel', this.handleWheelEvent)
|
|
}
|
|
|
|
if (!this.isInitialisingMessages) {
|
|
this.$nextTick(() => {
|
|
this.checkSticky()
|
|
// setting wheel event for non-scrollable chat
|
|
if (!this.isChatBeginningReached && this.checkChatNotScrollable()) {
|
|
this.$refs.scroller.addEventListener('wheel', this.handleWheelEvent, { passive: true })
|
|
}
|
|
})
|
|
}
|
|
},
|
|
|
|
visualLastReadMessageId(newValue, oldValue) {
|
|
if (newValue === oldValue) {
|
|
return
|
|
}
|
|
const newGroups = this.prepareMessagesGroups(this.messagesList)
|
|
this.softUpdateByDateGroups(this.messagesGroupedByDateByAuthor, newGroups)
|
|
this.isUnreadMarkerSeen = false
|
|
},
|
|
|
|
},
|
|
|
|
mounted() {
|
|
this.debounceUpdateReadMarkerPosition = debounce(this.updateReadMarkerPosition, 1000)
|
|
this.debounceHandleScroll = debounce(this.handleScroll, 50)
|
|
|
|
EventBus.on('scroll-chat-to-bottom', this.scrollToBottom)
|
|
EventBus.on('focus-message', this.focusMessage)
|
|
window.addEventListener('focus', this.onWindowFocus)
|
|
|
|
this.resizeObserver = new ResizeObserver(this.updateSize)
|
|
this.resizeObserver.observe(this.$refs.scroller)
|
|
|
|
// Scroll to bottom when joining / leaving the call -> remounting component
|
|
if (!this.isInitialisingMessages) {
|
|
this.scrollToBottom({ smooth: false, force: true })
|
|
}
|
|
},
|
|
|
|
beforeUnmount() {
|
|
this.debounceUpdateReadMarkerPosition.clear?.()
|
|
this.debounceHandleScroll.clear?.()
|
|
|
|
window.removeEventListener('focus', this.onWindowFocus)
|
|
EventBus.off('scroll-chat-to-bottom', this.scrollToBottom)
|
|
EventBus.off('focus-message', this.focusMessage)
|
|
|
|
if (this.resizeObserver) {
|
|
this.resizeObserver.disconnect()
|
|
}
|
|
},
|
|
|
|
methods: {
|
|
t,
|
|
n,
|
|
updateSize() {
|
|
if (this.isChatScrolledToBottom) {
|
|
this.$refs.scroller.scrollTo({
|
|
top: this.$refs.scroller.scrollHeight,
|
|
})
|
|
} else {
|
|
this.checkChatNotScrollable()
|
|
}
|
|
},
|
|
|
|
prepareMessagesGroups(messages) {
|
|
let prevGroupMap = null
|
|
const groupsByDate = {}
|
|
let lastMessage = null
|
|
let groupId = null
|
|
let dateTimestamp = null
|
|
for (const message of messages) {
|
|
if (!this.messagesShouldBeGrouped(message, lastMessage)) {
|
|
groupId = message.id
|
|
if (message.timestamp === 0) {
|
|
// This is a temporary message, the timestamp is today
|
|
dateTimestamp = this.currentDay
|
|
} else {
|
|
dateTimestamp = convertToUnix(new Date(message.timestamp * 1000).setHours(0, 0, 0, 0))
|
|
}
|
|
|
|
if (!groupsByDate[dateTimestamp]) {
|
|
groupsByDate[dateTimestamp] = {}
|
|
}
|
|
|
|
groupsByDate[dateTimestamp][groupId] = {
|
|
id: message.id,
|
|
messages: [message],
|
|
token: this.token,
|
|
dateTimestamp,
|
|
previousMessageId: lastMessage?.id || 0,
|
|
nextMessageId: 0,
|
|
type: message.systemMessage.length !== 0 ? 'system' : 'default',
|
|
}
|
|
|
|
// Update the previous group with the next message id
|
|
if (prevGroupMap) {
|
|
groupsByDate[prevGroupMap.date][prevGroupMap.groupId].nextMessageId = message.id
|
|
}
|
|
|
|
// Update the previous group map points
|
|
prevGroupMap = {
|
|
date: dateTimestamp,
|
|
groupId: message.id,
|
|
}
|
|
} else {
|
|
// Group is the same, so we just append the message to the array of messages
|
|
groupsByDate[prevGroupMap.date][prevGroupMap.groupId].messages.push(message)
|
|
}
|
|
lastMessage = message
|
|
}
|
|
return groupsByDate
|
|
},
|
|
|
|
softUpdateByDateGroups(oldDateGroups, newDateGroups) {
|
|
const dateTimestamps = new Set([...Object.keys(oldDateGroups), ...Object.keys(newDateGroups)])
|
|
|
|
dateTimestamps.forEach((dateTimestamp) => {
|
|
if (newDateGroups[dateTimestamp]) {
|
|
if (oldDateGroups[dateTimestamp]) {
|
|
// the group by date has changed, we update its content (groups by author)
|
|
this.softUpdateAuthorGroups(oldDateGroups[dateTimestamp], newDateGroups[dateTimestamp], dateTimestamp)
|
|
} else {
|
|
// the group is new
|
|
this.messagesGroupedByDateByAuthor[dateTimestamp] = newDateGroups[dateTimestamp]
|
|
}
|
|
} else {
|
|
// the group is not in the new list, remove it
|
|
delete this.messagesGroupedByDateByAuthor[dateTimestamp]
|
|
}
|
|
})
|
|
},
|
|
|
|
softUpdateAuthorGroups(oldGroups, newGroups, dateTimestamp) {
|
|
const groupIds = new Set([...Object.keys(oldGroups), ...Object.keys(newGroups)])
|
|
|
|
groupIds.forEach((id) => {
|
|
if (oldGroups[id] && !newGroups[id]) {
|
|
// group no longer exists, remove
|
|
delete this.messagesGroupedByDateByAuthor[dateTimestamp][id]
|
|
} else if ((newGroups[id] && !oldGroups[id]) || !this.areGroupsIdentical(newGroups[id], oldGroups[id])) {
|
|
// group did not exist before, or group differs from previous state, add
|
|
this.messagesGroupedByDateByAuthor[dateTimestamp][id] = newGroups[id]
|
|
}
|
|
})
|
|
},
|
|
|
|
areGroupsIdentical(group1, group2) {
|
|
// Compare plain values
|
|
if (group1.messages.length !== group2.messages.length
|
|
|| group1.dateSeparator !== group2.dateSeparator
|
|
|| group1.previousMessageId !== group2.previousMessageId
|
|
|| group1.nextMessageId !== group2.nextMessageId) {
|
|
return false
|
|
}
|
|
|
|
// Compare ids and stringified messages (look for temporary, edited, deleted messages, replaced from server)
|
|
return group1.messages.every((message, index) => group2.messages[index].id === message.id
|
|
&& JSON.stringify(group2.messages[index]) === JSON.stringify(message))
|
|
},
|
|
|
|
/**
|
|
* Compare two messages to decide if they should be grouped
|
|
*
|
|
* @param {object} message1 The new message
|
|
* @param {string} message1.id The ID of the new message
|
|
* @param {string} message1.actorType Actor type of the new message
|
|
* @param {string} message1.actorId Actor id of the new message
|
|
* @param {string} message1.actorDisplayName Actor display name of the new message
|
|
* @param {string} message1.systemMessage System message content of the new message
|
|
* @param {number} message1.timestamp Timestamp of the new message
|
|
* @param {null|object} message2 The previous message
|
|
* @param {string} message2.id The ID of the second message
|
|
* @param {string} message2.actorType Actor type of the previous message
|
|
* @param {string} message2.actorId Actor id of the previous message
|
|
* @param {string} message2.actorDisplayName Actor display name of previous message
|
|
* @param {string} message2.systemMessage System message content of the previous message
|
|
* @param {number} message2.timestamp Timestamp of the second message
|
|
* @return {boolean} Boolean if the messages should be grouped or not
|
|
*/
|
|
messagesShouldBeGrouped(message1, message2) {
|
|
if (!message2) {
|
|
return false // No previous message
|
|
}
|
|
|
|
// If there is last read message visually, the group ends there
|
|
if ((message1.id === this.visualLastReadMessageId && message2.id > message1.id)
|
|
|| (message2.id === this.visualLastReadMessageId && message1.id > message2.id)) {
|
|
return false
|
|
}
|
|
|
|
if (!!message1.lastEditTimestamp || !!message2.lastEditTimestamp) {
|
|
return false // Edited messages are not grouped
|
|
}
|
|
|
|
if (message1.actorType === ATTENDEE.ACTOR_TYPE.BOTS // Don't group messages of bots
|
|
&& message1.actorId !== ATTENDEE.CHANGELOG_BOT_ID // Apart from the changelog bot
|
|
&& message1.actorId !== ATTENDEE.SAMPLE_BOT_ID) { // Apart from the sample message
|
|
return false
|
|
}
|
|
|
|
const message1IsSystem = message1.systemMessage.length !== 0
|
|
const message2IsSystem = message2.systemMessage.length !== 0
|
|
|
|
if (message1IsSystem !== message2IsSystem) {
|
|
// Only group system messages with each others
|
|
return false
|
|
}
|
|
|
|
if (!message1IsSystem // System messages are grouped independently of author
|
|
&& ((message1.actorType !== message2.actorType // Otherwise the type and id need to match
|
|
|| message1.actorId !== message2.actorId)
|
|
|| (message1.actorType === ATTENDEE.ACTOR_TYPE.BRIDGED // Or, if the message is bridged, display names also need to match
|
|
&& message1.actorDisplayName !== message2.actorDisplayName))) {
|
|
return false
|
|
}
|
|
|
|
const date1 = this.getDateOfMessage(message1)
|
|
const date2 = this.getDateOfMessage(message2)
|
|
|
|
if (date1.getFullYear() !== date2.getFullYear() || date1.getMonth() !== date2.getMonth() || date1.getDate() !== date2.getDate()) {
|
|
// Not posted on the same day
|
|
return false
|
|
}
|
|
|
|
// Only group messages within a short period of time (5 minutes), so unrelated messages are not grouped together
|
|
return Math.abs(date1 - date2) < 300000
|
|
},
|
|
|
|
/**
|
|
* Generate the date of the messages
|
|
*
|
|
* @param {object} message The message object
|
|
* @param {string} message.id The ID of the message
|
|
* @param {number} message.timestamp Timestamp of the message (in UNIX format)
|
|
* @return {object} Date object
|
|
*/
|
|
getDateOfMessage(message) {
|
|
if (message.id.toString().startsWith('temp-')) {
|
|
return new Date()
|
|
}
|
|
return new Date(message.timestamp * 1000)
|
|
},
|
|
|
|
getMessageIdFromHash(hash = undefined) {
|
|
if (hash) {
|
|
return parseInt(hash.slice(9), 10)
|
|
} else if (this.$route?.hash?.startsWith('#message_')) {
|
|
return parseInt(this.$route.hash.slice(9), 10)
|
|
}
|
|
return null
|
|
},
|
|
|
|
scrollToFocusedMessage(focusMessageId) {
|
|
let isFocused = null
|
|
if (focusMessageId) {
|
|
// scroll to message in URL anchor
|
|
this.focusMessage({ messageId: focusMessageId, smooth: false, highlight: true })
|
|
return
|
|
}
|
|
|
|
if (this.visualLastReadMessageId) {
|
|
// scroll to last read message if visible in the current pages
|
|
isFocused = this.focusMessage({ messageId: this.visualLastReadMessageId, smooth: false, highlight: false })
|
|
}
|
|
|
|
if (!isFocused) {
|
|
// Safeguard 1: scroll to first visible message before the read marker
|
|
const fallbackLastReadMessageId = this.$store.getters.getFirstDisplayableMessageIdBeforeReadMarker(this.token, this.visualLastReadMessageId)
|
|
if (fallbackLastReadMessageId) {
|
|
isFocused = this.focusMessage({ messageId: fallbackLastReadMessageId, smooth: false, highlight: false })
|
|
}
|
|
|
|
if (!isFocused) {
|
|
// Safeguard 2: in case the fallback message is not found too
|
|
// scroll to bottom
|
|
this.scrollToBottom({ smooth: false, force: true })
|
|
} else {
|
|
this.$store.dispatch('setVisualLastReadMessageId', {
|
|
token: this.token,
|
|
id: fallbackLastReadMessageId,
|
|
})
|
|
}
|
|
}
|
|
|
|
// Update read marker in all cases except when the message is from URL anchor
|
|
this.debounceUpdateReadMarkerPosition()
|
|
},
|
|
|
|
checkSticky() {
|
|
const ulElements = this.$refs['dateGroup-' + this.token]
|
|
if (!ulElements) {
|
|
return
|
|
}
|
|
|
|
const scrollerRect = this.$refs.scroller.getBoundingClientRect()
|
|
ulElements.forEach((element) => {
|
|
const rect = element.getBoundingClientRect()
|
|
if (rect.top <= scrollerRect.top && rect.bottom >= scrollerRect.top) {
|
|
this.stickyDate = element.getAttribute('data-date-timestamp')
|
|
}
|
|
})
|
|
},
|
|
|
|
onScroll(event) {
|
|
// handle scrolling status
|
|
if (this.isScrolling) {
|
|
clearTimeout(this.endScrollTimeout)
|
|
}
|
|
this.isScrolling = this.previousScrollTopValue > event.target.scrollTop ? 'up' : 'down'
|
|
this.previousScrollTopValue = event.target.scrollTop
|
|
this.endScrollTimeout = setTimeout(this.endScroll, 3000)
|
|
// handle sticky date
|
|
if (this.$refs.scroller.scrollTop === 0) {
|
|
this.stickyDate = null
|
|
} else {
|
|
this.checkSticky()
|
|
}
|
|
// handle scroll event
|
|
this.debounceHandleScroll()
|
|
},
|
|
|
|
/**
|
|
* When the div is scrolled, this method checks if it's been scrolled to the top
|
|
* or to the bottom of the list bottom.
|
|
*
|
|
* @param {object} data the wrapping object
|
|
* @param {boolean} data.skipHeightCheck whether to fetch messages without checking the height
|
|
*/
|
|
async handleScroll({ skipHeightCheck = false } = {}) {
|
|
if (!this.$refs.scroller) {
|
|
return
|
|
}
|
|
|
|
if (!this.chatStore.chatBlocks[this.token]) {
|
|
// This can happen if the browser is fast enough to close the sidebar
|
|
// when switching from a one-to-one to a group conversation.
|
|
console.debug('Ignoring handleScroll as the messages history is empty')
|
|
return
|
|
}
|
|
|
|
if (this.isInitialisingMessages) {
|
|
console.debug('Ignore handleScroll as we are initialising the message history')
|
|
return
|
|
}
|
|
|
|
if (this.isFocusingMessage) {
|
|
console.debug('Ignore handleScroll as we are programmatically scrolling to focus a message')
|
|
return
|
|
}
|
|
|
|
const { scrollHeight, scrollTop, clientHeight } = this.$refs.scroller
|
|
const scrollOffsetFromTop = scrollHeight - scrollTop
|
|
const scrollOffsetFromBottom = Math.abs(scrollOffsetFromTop - clientHeight)
|
|
|
|
// For chats that are scrolled to bottom and not fitted in one screen
|
|
if (scrollOffsetFromBottom < SCROLL_TOLERANCE && this.isChatEndReached && scrollTop > 0) {
|
|
this.setChatScrolledToBottom(true)
|
|
this.debounceUpdateReadMarkerPosition()
|
|
return
|
|
}
|
|
|
|
if (scrollOffsetFromBottom >= SCROLL_TOLERANCE) {
|
|
this.setChatScrolledToBottom(false)
|
|
}
|
|
|
|
if ((scrollHeight > clientHeight && scrollTop < LOAD_HISTORY_THRESHOLD && this.isScrolling === 'up')
|
|
|| skipHeightCheck) {
|
|
if (this.loadingOldMessages || this.isChatBeginningReached) {
|
|
// already loading, don't do it twice
|
|
return
|
|
}
|
|
await this.getOldMessages(this.token, false)
|
|
if (this.$refs.scroller.scrollHeight !== scrollHeight) {
|
|
// scroll to previous position + added height
|
|
this.$refs.scroller.scrollTo({
|
|
top: scrollTop + (this.$refs.scroller.scrollHeight - scrollHeight),
|
|
})
|
|
}
|
|
this.setChatScrolledToBottom(false, { auto: true })
|
|
} else if ((scrollHeight > clientHeight && scrollOffsetFromBottom < LOAD_HISTORY_THRESHOLD && this.isScrolling === 'down')
|
|
|| skipHeightCheck) {
|
|
if (this.loadingNewMessages || this.isChatEndReached) {
|
|
// already loading, don't do it twice
|
|
return
|
|
}
|
|
await this.getNewMessages(this.token, false)
|
|
if (this.$refs.scroller.scrollHeight !== scrollHeight) {
|
|
// scroll to previous position + added height
|
|
this.$refs.scroller.scrollTo({
|
|
top: scrollTop,
|
|
})
|
|
}
|
|
this.setChatScrolledToBottom(false, { auto: true })
|
|
}
|
|
|
|
this.debounceUpdateReadMarkerPosition()
|
|
},
|
|
|
|
endScroll() {
|
|
this.debounceHandleScroll.flush?.()
|
|
this.isScrolling = null
|
|
clearTimeout(this.endScrollTimeout)
|
|
},
|
|
|
|
/**
|
|
* Finds the last message that is fully visible in the scroller viewport
|
|
*
|
|
* Starts searching forward after the given message element until we reach
|
|
* the bottom of the viewport.
|
|
*
|
|
* @param {object} messageEl message element after which to start searching
|
|
* @return {object|undefined} DOM element for the last visible message
|
|
*/
|
|
findFirstVisibleMessage(messageEl) {
|
|
if (!this.$refs.scroller) {
|
|
return
|
|
}
|
|
|
|
let el = messageEl
|
|
|
|
// When the current message is not visible (reaction or expired)
|
|
// we use the next message from the list start the scroller-visibility check
|
|
if (!el || el.offsetParent === null) {
|
|
const messageId = this.$store.getters.getFirstDisplayableMessageIdAfterReadMarker(this.token, this.conversation.lastReadMessage)
|
|
el = document.getElementById('message_' + messageId)
|
|
}
|
|
let previousEl = el
|
|
|
|
const { scrollTop } = this.$refs.scroller
|
|
while (el) {
|
|
// is the message element fully visible with no intersection with the bottom border ?
|
|
if (el.offsetTop - scrollTop >= 0) {
|
|
// this means that the previous message we had was fully visible,
|
|
// so we return that
|
|
return previousEl
|
|
}
|
|
|
|
previousEl = el
|
|
el = document.getElementById('message_' + el.getAttribute('data-next-message-id'))
|
|
}
|
|
|
|
return previousEl
|
|
},
|
|
|
|
/**
|
|
* Sync the visual marker position with what is currently in the store.
|
|
* This separation exists to avoid jumpy marker while scrolling.
|
|
*
|
|
* Also see updateReadMarkerPosition() for the backend update.
|
|
*/
|
|
refreshReadMarkerPosition() {
|
|
if (!this.conversation) {
|
|
return
|
|
}
|
|
console.debug('setVisualLastReadMessageId token=' + this.token + ' id=' + this.conversation.lastReadMessage)
|
|
this.$store.dispatch('setVisualLastReadMessageId', {
|
|
token: this.token,
|
|
id: this.conversation.lastReadMessage,
|
|
})
|
|
},
|
|
|
|
/**
|
|
* Finds the last visual read message element
|
|
*
|
|
* @return {object} DOM element of the last read message
|
|
*/
|
|
getVisualLastReadMessageElement() {
|
|
let el = document.getElementById('message_' + this.visualLastReadMessageId)
|
|
if (el) {
|
|
el = el.closest('.message')
|
|
if (el === null || el.offsetParent === null) {
|
|
// Exception: when the message remains not visible
|
|
// e.g: it is the last message in collapsed group
|
|
// unread marker is set to the combined system message.
|
|
// Look for the unread marker itself
|
|
el = document.querySelector('.message-unread-marker')
|
|
if (el) {
|
|
el = el.closest('.message')
|
|
} else {
|
|
console.warn('Visual last read message element not found')
|
|
}
|
|
}
|
|
}
|
|
|
|
return el
|
|
},
|
|
|
|
/**
|
|
* Recalculates the current read marker position based on the first visible element,
|
|
* but only do so if the previous marker was already seen.
|
|
*
|
|
* The new marker position will be sent to the backend but not applied visually.
|
|
* Visually, the marker will only move the next time the user is focusing back to this
|
|
* conversation in refreshReadMarkerPosition()
|
|
*/
|
|
updateReadMarkerPosition() {
|
|
if (!this.conversation) {
|
|
return
|
|
}
|
|
|
|
// to fix issues, this scenario should not happen
|
|
if (this.conversation.lastReadMessage === 0) {
|
|
console.debug('clearLastReadMessage because lastReadMessage was 0 token=' + this.token)
|
|
this.$store.dispatch('clearLastReadMessage', { token: this.token, updateVisually: true })
|
|
return
|
|
}
|
|
|
|
if (this.conversation.lastReadMessage === this.conversation.lastMessage?.id) {
|
|
// already at bottom, nothing to do
|
|
return
|
|
}
|
|
|
|
const lastReadMessageElement = this.getVisualLastReadMessageElement()
|
|
|
|
// first unread message has not been seen yet, so don't move it
|
|
if (!this.isUnreadMarkerSeen) {
|
|
return
|
|
}
|
|
|
|
// if we're at bottom of the chat with no more new messages to load, then simply clear the marker
|
|
if (this.isSticky && this.isChatEndReached) {
|
|
console.debug('clearLastReadMessage because of isSticky token=' + this.token)
|
|
this.$store.dispatch('clearLastReadMessage', { token: this.token })
|
|
return
|
|
}
|
|
|
|
if (lastReadMessageElement && this.$refs.scroller
|
|
&& (lastReadMessageElement.offsetTop - this.$refs.scroller.scrollTop > 0)) {
|
|
// still visible, hasn't disappeared at the top yet
|
|
return
|
|
}
|
|
|
|
const firstVisibleMessage = this.findFirstVisibleMessage(lastReadMessageElement)
|
|
if (!firstVisibleMessage) {
|
|
console.warn('First visible message not found: ', firstVisibleMessage)
|
|
return
|
|
}
|
|
|
|
const messageId = parseInt(firstVisibleMessage.getAttribute('data-message-id'), 10)
|
|
if (messageId <= this.conversation.lastReadMessage) {
|
|
// it was probably a scroll up, don't update
|
|
return
|
|
}
|
|
|
|
// we don't update visually here, it will update the next time the
|
|
// user focuses back on the conversation. See refreshReadMarkerPosition().
|
|
console.debug('updateLastReadMessage token=' + this.token + ' messageId=' + messageId)
|
|
this.$store.dispatch('updateLastReadMessage', { token: this.token, id: messageId, updateVisually: false })
|
|
},
|
|
|
|
/**
|
|
* Scrolls to the bottom of the list.
|
|
*
|
|
* @param {object} options Options for scrolling
|
|
* @param {boolean} [options.smooth] 'smooth' scrolling to the bottom ('auto' by default)
|
|
* @param {boolean} [options.force] force scrolling to the bottom (otherwise check for current position)
|
|
*/
|
|
scrollToBottom(options = {}) {
|
|
this.$nextTick(() => {
|
|
if (!this.$refs.scroller || this.isFocusingMessage) {
|
|
return
|
|
}
|
|
|
|
let newTop
|
|
if (options?.force) {
|
|
newTop = this.$refs.scroller.scrollHeight
|
|
this.setChatScrolledToBottom(true)
|
|
} else if (!this.isSticky) {
|
|
// Reading old messages
|
|
return
|
|
} else if (!this.isChatVisible) {
|
|
const firstUnreadMessageHeight = this.$refs.scroller.scrollHeight - this.$refs.scroller.scrollTop - this.$refs.scroller.offsetHeight
|
|
const scrollBy = firstUnreadMessageHeight < 40 ? 10 : 40
|
|
// We jump half a message and stop autoscrolling, so the user can read up
|
|
// Single new line from the previous author is 35px so scroll half a line (10px)
|
|
// Single new line from the new author is 75px so scroll half an avatar (40px)
|
|
newTop = this.$refs.scroller.scrollTop + scrollBy
|
|
this.setChatScrolledToBottom(false)
|
|
} else {
|
|
newTop = this.$refs.scroller.scrollHeight
|
|
this.setChatScrolledToBottom(true)
|
|
}
|
|
|
|
if (options?.smooth && this.$refs.scroller.scrollTop < newTop - 1.5 * window.innerHeight) {
|
|
// Imitate scrolling the whole distance to the element
|
|
this.$refs.scroller.scrollTo({
|
|
top: newTop - 1.5 * window.innerHeight,
|
|
behavior: 'instant',
|
|
})
|
|
}
|
|
this.$refs.scroller.scrollTo({
|
|
top: newTop,
|
|
behavior: options?.smooth ? 'smooth' : 'auto',
|
|
})
|
|
})
|
|
},
|
|
|
|
/**
|
|
* Temporarily highlight the given message id with a fade out effect.
|
|
*
|
|
* @param payload function payload
|
|
* @param payload.messageId message id
|
|
* @param payload.smooth true to smooth scroll, false to jump directly
|
|
* @param payload.highlight true to highlight and set focus to the message
|
|
* @return {boolean} true if element was found, false otherwise
|
|
*/
|
|
focusMessage({ messageId, smooth = true, highlight = true }) {
|
|
const element = document.getElementById(`message_${messageId}`)
|
|
if (!element) {
|
|
// Message id doesn't exist
|
|
// TODO: in some cases might need to trigger a scroll up if this is an older message
|
|
// https://github.com/nextcloud/spreed/pull/10084
|
|
console.warn('Message to focus not found in DOM', messageId)
|
|
return false // element not found
|
|
}
|
|
|
|
let scrollElement = element
|
|
if (this.isChatVisible && scrollElement.offsetParent === null) {
|
|
console.debug('Message to focus is hidden, scrolling to its nearest visible parent', messageId)
|
|
const closestParent = scrollElement.closest('ul[style="display: none;"]') ?? scrollElement.closest('ul')
|
|
scrollElement = closestParent.parentElement
|
|
}
|
|
|
|
console.debug('Scrolling to a focused message programmatically')
|
|
this.isFocusingMessage = true
|
|
|
|
// TODO: doesn't work if chat is hidden. Need to store
|
|
// delayed 'shouldScroll' and call after chat is visible
|
|
// FIXME: because scrollToBottom is also triggered and it is wrapped in $nextTick
|
|
// We need to trigger this at the same time (nextTick) to avoid focusing and then scrolling to bottom
|
|
this.$nextTick(() => {
|
|
if (smooth) {
|
|
const newTop = scrollElement.getBoundingClientRect().top - this.$refs.scrollerLoader.getBoundingClientRect().top
|
|
if (this.$refs.scroller.scrollTop > newTop) {
|
|
// Imitate scrolling the whole distance to the element
|
|
// If this goes to scrollTop < LOAD_HISTORY_THRESHOLD, might initiate loading of old messages
|
|
this.$refs.scroller.scrollTo({
|
|
top: Math.max(LOAD_HISTORY_THRESHOLD, newTop),
|
|
behavior: 'instant',
|
|
})
|
|
}
|
|
}
|
|
scrollElement.scrollIntoView({
|
|
behavior: smooth ? 'smooth' : 'auto',
|
|
block: 'center',
|
|
inline: 'nearest',
|
|
})
|
|
})
|
|
|
|
if (this.$refs.scroller && !smooth) {
|
|
// scroll the viewport slightly further to make sure the element is about 1/3 from the top
|
|
this.$refs.scroller.scrollTop += this.$refs.scroller.offsetHeight / 4
|
|
}
|
|
|
|
this.checkChatNotScrollable()
|
|
|
|
if (highlight && scrollElement === element) {
|
|
// element is visible, highlight it
|
|
element.classList.add('message--highlighted')
|
|
setTimeout(() => {
|
|
element?.classList.remove('message--highlighted')
|
|
}, 5_000)
|
|
}
|
|
this.isFocusingMessage = false
|
|
|
|
return true // element found
|
|
},
|
|
|
|
setChatScrolledToBottom(value, { auto = false } = {}) {
|
|
let isScrolledToBottom = value
|
|
if (auto) {
|
|
const scrollOffset = this.$refs.scroller.scrollHeight - this.$refs.scroller.scrollTop
|
|
isScrolledToBottom = Math.abs(scrollOffset - this.$refs.scroller.clientHeight) < SCROLL_TOLERANCE
|
|
}
|
|
this.$emit('update:isChatScrolledToBottom', isScrolledToBottom)
|
|
if (isScrolledToBottom) {
|
|
// mark as read if marker was seen
|
|
// we have to do this early because unfocusing the window will remove the stickiness
|
|
this.debounceUpdateReadMarkerPosition()
|
|
}
|
|
},
|
|
|
|
onWindowFocus() {
|
|
// setTimeout is needed here for Safari to correctly remove the unread marker
|
|
setTimeout(() => {
|
|
this.refreshReadMarkerPosition()
|
|
// Regenerate relative date separators
|
|
}, 2)
|
|
},
|
|
|
|
updateTasksCount() {
|
|
if (!this.$refs.scroller) {
|
|
return
|
|
}
|
|
const tasksDoneCount = this.$refs.scroller.querySelectorAll('.checkbox-content__icon--checked')?.length
|
|
const tasksCount = this.$refs.scroller.querySelectorAll('.task-list-item')?.length
|
|
this.chatExtrasStore.setTasksCounters({ tasksCount, tasksDoneCount })
|
|
},
|
|
|
|
checkChatNotScrollable() {
|
|
if (this.isInitialisingMessages) {
|
|
return
|
|
}
|
|
const isNotScrollable = this.$refs.scroller
|
|
? this.$refs.scroller.clientHeight === this.$refs.scroller.scrollHeight
|
|
: false
|
|
|
|
if (isNotScrollable && !this.isChatScrolledToBottom) {
|
|
this.setChatScrolledToBottom(true)
|
|
}
|
|
|
|
return isNotScrollable
|
|
},
|
|
|
|
handleWheelEvent(event) {
|
|
// If messages fit in the viewport and user scrolls up, we need to trigger the loading of older messages
|
|
if (event.deltaY < 0) {
|
|
if (this.isChatBeginningReached) {
|
|
// Remove event listener as it needs to be triggered
|
|
// only when it's not confirmed that the chat beginning is reached
|
|
this.$refs.scroller.removeEventListener('wheel', this.handleWheelEvent)
|
|
return
|
|
}
|
|
|
|
this.isScrolling = 'up'
|
|
this.debounceHandleScroll({ skipHeightCheck: true })
|
|
} else if (event.deltaY > 0) {
|
|
if (this.isChatEndReached) {
|
|
// Remove event listener as it needs to be triggered
|
|
// only when it's not confirmed that the chat end is reached
|
|
this.$refs.scroller.removeEventListener('wheel', this.handleWheelEvent)
|
|
return
|
|
}
|
|
|
|
this.isScrolling = 'down'
|
|
this.debounceHandleScroll({ skipHeightCheck: true })
|
|
}
|
|
},
|
|
|
|
isLastReadMessage(group) {
|
|
if (!group.nextMessageId) {
|
|
return false
|
|
}
|
|
|
|
const message = group.messages.at(-1)
|
|
if (this.conversation.lastMessage && message.id >= this.conversation.lastMessage?.id) {
|
|
return false
|
|
}
|
|
|
|
return message.id === this.visualLastReadMessageId
|
|
},
|
|
|
|
lastReadMessageVisibilityChanged([{ isIntersecting }]) {
|
|
if (isIntersecting) {
|
|
this.isUnreadMarkerSeen = true
|
|
}
|
|
},
|
|
|
|
async generateSummary() {
|
|
this.loadingSummary = true
|
|
await this.chatExtrasStore.requestChatSummary(this.token, this.visualLastReadMessageId)
|
|
this.loadingSummary = false
|
|
},
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
@use '../../assets/variables' as *;
|
|
|
|
.scroller {
|
|
position: relative;
|
|
flex: 1 0;
|
|
padding-top: var(--default-grid-baseline);
|
|
overflow-y: scroll;
|
|
overflow-x: hidden;
|
|
border-bottom: 1px solid var(--color-border);
|
|
transition: $transition;
|
|
|
|
&--chatScrolledToBottom {
|
|
border-block-end-color: transparent;
|
|
}
|
|
|
|
&__content {
|
|
max-width: $messages-list-max-width;
|
|
margin: 0 auto;
|
|
|
|
/* Safe margin to fit MessageButtonsBar on screen for last one-line message */
|
|
&:last-of-type {
|
|
margin-bottom: calc(var(--default-clickable-area) - var(--clickable-area-small) - var(--default-grid-baseline));
|
|
}
|
|
}
|
|
|
|
&__loading {
|
|
position: relative;
|
|
height: 0;
|
|
max-width: $messages-list-max-width;
|
|
margin: 0 auto;
|
|
|
|
&-element {
|
|
position: absolute;
|
|
top: 0;
|
|
inset-inline-start: calc(2 * var(--default-grid-baseline));
|
|
}
|
|
}
|
|
|
|
&__loading-new {
|
|
display: grid;
|
|
grid-template-columns: minmax(0, $messages-text-max-width) $messages-info-width;
|
|
max-width: $messages-list-max-width;
|
|
margin-inline: auto;
|
|
padding-inline-start: calc($messages-avatar-width);
|
|
|
|
&-wrapper {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
gap: var(--default-grid-baseline);
|
|
}
|
|
}
|
|
}
|
|
|
|
.messages-list {
|
|
&__placeholder {
|
|
display: flex;
|
|
flex-direction: column-reverse;
|
|
overflow: hidden;
|
|
height: 100%;
|
|
}
|
|
|
|
&__empty-content {
|
|
height: 100%;
|
|
}
|
|
}
|
|
|
|
.messages-date {
|
|
position: sticky;
|
|
top: 0;
|
|
display: grid;
|
|
grid-template-columns: minmax(0, $messages-text-max-width) $messages-info-width;
|
|
z-index: 2;
|
|
margin-inline-start: calc($messages-avatar-width);
|
|
margin-bottom: 5px;
|
|
padding-inline: var(--default-grid-baseline);
|
|
pointer-events: none;
|
|
|
|
&__text {
|
|
margin: 0 auto;
|
|
padding: var(--default-grid-baseline) calc(3 * var(--default-grid-baseline));
|
|
text-wrap: nowrap;
|
|
color: var(--color-text-maxcontrast);
|
|
background-color: var(--color-background-dark);
|
|
border-radius: var(--border-radius-element, var(--border-radius-pill));
|
|
}
|
|
}
|
|
|
|
.has-sticky .messages-date {
|
|
transition: opacity 0.3s ease-in-out;
|
|
transition-delay: 2s;
|
|
opacity: 0;
|
|
}
|
|
|
|
.scroller--isScrolling .has-sticky .messages-date {
|
|
opacity: 1;
|
|
transition: opacity 0s;
|
|
}
|
|
|
|
.message-unread-marker {
|
|
position: relative;
|
|
margin: calc(4 * var(--default-grid-baseline));
|
|
|
|
&::before {
|
|
content: '';
|
|
width: 100%;
|
|
border-top: 1px solid var(--color-border-maxcontrast);
|
|
position: absolute;
|
|
top: 50%;
|
|
z-index: -1;
|
|
}
|
|
|
|
&__wrapper {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
gap: calc(3 * var(--default-grid-baseline));
|
|
margin-inline: auto;
|
|
padding-inline: calc(3 * var(--default-grid-baseline));
|
|
width: fit-content;
|
|
border-radius: var(--border-radius);
|
|
background-color: var(--color-main-background);
|
|
}
|
|
|
|
&__text {
|
|
text-align: center;
|
|
white-space: nowrap;
|
|
font-weight: bold;
|
|
color: var(--color-main-text);
|
|
}
|
|
}
|
|
</style>
|