mirror of
https://github.com/hcengineering/platform.git
synced 2026-09-10 03:37:43 +02:00
Fixed scroll to new messages on chat open (#5369)
Signed-off-by: Kristina Fefelova <kristin.fefelova@gmail.com>
This commit is contained in:
@@ -29,6 +29,7 @@
|
||||
import { InboxNotificationsClientImpl } from '@hcengineering/notification-resources'
|
||||
import { get } from 'svelte/store'
|
||||
import { tick, beforeUpdate, afterUpdate } from 'svelte'
|
||||
import { getResource } from '@hcengineering/platform'
|
||||
|
||||
import ActivityMessagesSeparator from './ChannelMessagesSeparator.svelte'
|
||||
import { filterChatMessages, getClosestDate, readChannelMessages } from '../utils'
|
||||
@@ -58,7 +59,12 @@
|
||||
const client = getClient()
|
||||
const inboxClient = InboxNotificationsClientImpl.getClient()
|
||||
const contextByDocStore = inboxClient.contextByDoc
|
||||
const filters = client.getModel().findAllSync(activity.class.ActivityMessagesFilter, {})
|
||||
|
||||
let filters: ActivityMessagesFilter[] = []
|
||||
const filterResources = new Map<
|
||||
Ref<ActivityMessagesFilter>,
|
||||
(message: ActivityMessage, _class?: Ref<Doc>) => boolean
|
||||
>()
|
||||
|
||||
const messagesStore = provider.messagesStore
|
||||
const isLoadingStore = provider.isLoadingStore
|
||||
@@ -93,15 +99,23 @@
|
||||
|
||||
$: notifyContext = $contextByDocStore.get(objectId)
|
||||
|
||||
$: void filterChatMessages(messages, filters, objectClass, selectedFilters).then((filteredMessages) => {
|
||||
displayMessages = filteredMessages
|
||||
})
|
||||
void client
|
||||
.getModel()
|
||||
.findAll(activity.class.ActivityMessagesFilter, {})
|
||||
.then(async (res) => {
|
||||
filters = res
|
||||
for (const filter of filters) {
|
||||
filterResources.set(filter._id, await getResource(filter.filter))
|
||||
}
|
||||
})
|
||||
|
||||
$: displayMessages = filterChatMessages(messages, filters, filterResources, objectClass, selectedFilters)
|
||||
|
||||
inboxClient.inboxNotificationsByContext.subscribe(() => {
|
||||
readViewportMessages()
|
||||
})
|
||||
|
||||
function scrollToBottom (afterScrollFn?: () => void) {
|
||||
function scrollToBottom (afterScrollFn?: () => void): void {
|
||||
if (scroller !== undefined && scrollElement !== undefined) {
|
||||
scroller.scrollBy(scrollElement.scrollHeight)
|
||||
updateSelectedDate()
|
||||
@@ -109,9 +123,19 @@
|
||||
}
|
||||
}
|
||||
|
||||
function scrollToSeparator () {
|
||||
if (separatorElement) {
|
||||
function scrollToSeparator (): void {
|
||||
if (separatorElement && scrollElement) {
|
||||
const messagesElements = scrollContentBox?.getElementsByClassName('activityMessage')
|
||||
const messagesHeight = displayMessages
|
||||
.slice(separatorIndex)
|
||||
.reduce((res, msg) => res + (messagesElements?.[msg._id as any]?.clientHeight ?? 0), 0)
|
||||
|
||||
separatorElement.scrollIntoView()
|
||||
|
||||
if (messagesHeight >= scrollElement.clientHeight) {
|
||||
scroller?.scrollBy(-50)
|
||||
}
|
||||
|
||||
updateShouldScrollToNew()
|
||||
readViewportMessages()
|
||||
}
|
||||
@@ -373,7 +397,7 @@
|
||||
newTimestamp !== undefined
|
||||
? displayMessages.findIndex((message) => (message.createdOn ?? 0) >= (newTimestamp ?? 0))
|
||||
: -1
|
||||
$: void initializeScroll($isLoadingStore, separatorElement, separatorIndex)
|
||||
$: void initializeScroll(isLoading, separatorElement, separatorIndex)
|
||||
|
||||
let isInitialScrolling = true
|
||||
async function initializeScroll (isLoading: boolean, separatorElement?: HTMLDivElement, separatorIndex?: number) {
|
||||
@@ -389,6 +413,7 @@
|
||||
scrollToMessage()
|
||||
isInitialScrolling = false
|
||||
} else if (separatorIndex === -1) {
|
||||
await wait()
|
||||
isScrollInitialized = true
|
||||
shouldWaitAndRead = true
|
||||
autoscroll = true
|
||||
|
||||
@@ -1,170 +0,0 @@
|
||||
<!--
|
||||
// Copyright © 2023 Hardcore Engineering Inc.
|
||||
//
|
||||
// Licensed under the Eclipse Public License, Version 2.0 (the "License");
|
||||
// you may not use this file except in compliance with the License. You may
|
||||
// obtain a copy of the License at https://www.eclipse.org/legal/epl-2.0
|
||||
//
|
||||
// Unless required by applicable law or agreed to in writing, software
|
||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
//
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
-->
|
||||
<script lang="ts">
|
||||
import activity, { ActivityMessage } from '@hcengineering/activity'
|
||||
import { Person } from '@hcengineering/contact'
|
||||
import { Avatar, personByIdStore } from '@hcengineering/contact-resources'
|
||||
import { Doc, IdMap, Ref, WithLookup } from '@hcengineering/core'
|
||||
import notification, {
|
||||
ActivityInboxNotification,
|
||||
DocNotifyContext,
|
||||
InboxNotification,
|
||||
InboxNotificationsClient
|
||||
} from '@hcengineering/notification'
|
||||
import { getResource } from '@hcengineering/platform'
|
||||
import { Label, TimeSince, getLocation, navigate } from '@hcengineering/ui'
|
||||
|
||||
import { buildThreadLink } from '../navigation'
|
||||
|
||||
export let object: ActivityMessage
|
||||
export let embedded = false
|
||||
export let onReply: (() => void) | undefined = undefined
|
||||
|
||||
const maxDisplayPersons = 5
|
||||
|
||||
$: lastReply = object.lastReply ?? new Date().getTime()
|
||||
$: persons = new Set(object.repliedPersons)
|
||||
|
||||
let inboxClient: InboxNotificationsClient | undefined = undefined
|
||||
|
||||
void getResource(notification.function.GetInboxNotificationsClient).then((getClientFn) => {
|
||||
inboxClient = getClientFn()
|
||||
})
|
||||
|
||||
let displayPersons: Person[] = []
|
||||
|
||||
$: contextByDocStore = inboxClient?.contextByDoc
|
||||
$: notificationsByContextStore = inboxClient?.inboxNotificationsByContext
|
||||
|
||||
$: hasNew = hasNewReplies(object, $contextByDocStore, $notificationsByContextStore)
|
||||
$: updateQuery(persons, $personByIdStore)
|
||||
|
||||
function hasNewReplies (
|
||||
message: ActivityMessage,
|
||||
notifyContexts?: Map<Ref<Doc>, DocNotifyContext>,
|
||||
inboxNotificationsByContext?: Map<Ref<DocNotifyContext>, WithLookup<InboxNotification>[]>
|
||||
): boolean {
|
||||
const context: DocNotifyContext | undefined = notifyContexts?.get(message._id)
|
||||
|
||||
if (context === undefined) {
|
||||
return false
|
||||
}
|
||||
|
||||
return (inboxNotificationsByContext?.get(context._id) ?? [])
|
||||
.filter((notification) => {
|
||||
const activityNotifications = notification as ActivityInboxNotification
|
||||
return activityNotifications.attachedToClass !== activity.class.DocUpdateMessage
|
||||
})
|
||||
.some(({ isViewed }) => !isViewed)
|
||||
}
|
||||
|
||||
function updateQuery (personIds: Set<Ref<Person>>, personById: IdMap<Person>): void {
|
||||
displayPersons = Array.from(personIds)
|
||||
.map((id) => personById.get(id))
|
||||
.filter((person): person is Person => person !== undefined)
|
||||
.slice(0, maxDisplayPersons - 1)
|
||||
}
|
||||
|
||||
function handleReply (e: MouseEvent): void {
|
||||
e.stopPropagation()
|
||||
e.preventDefault()
|
||||
|
||||
if (onReply) {
|
||||
onReply()
|
||||
return
|
||||
}
|
||||
|
||||
navigate(buildThreadLink(getLocation(), object.attachedTo, object.attachedToClass, object._id))
|
||||
}
|
||||
</script>
|
||||
|
||||
{#if !embedded && object.replies && object.replies > 0}
|
||||
<!-- svelte-ignore a11y-click-events-have-key-events -->
|
||||
<!-- svelte-ignore a11y-no-static-element-interactions -->
|
||||
<div class="flex-row-center container cursor-pointer mt-2" on:click={handleReply}>
|
||||
<div class="flex-row-center">
|
||||
<div class="avatars">
|
||||
{#each displayPersons as person}
|
||||
<Avatar size="x-small" avatar={person.avatar} name={person.name} />
|
||||
{/each}
|
||||
</div>
|
||||
|
||||
{#if persons.size > maxDisplayPersons}
|
||||
<div class="plus">
|
||||
+{persons.size - maxDisplayPersons}
|
||||
</div>
|
||||
{/if}
|
||||
</div>
|
||||
<div class="whitespace-nowrap ml-2 mr-2 over-underline repliesCount">
|
||||
<Label label={activity.string.RepliesCount} params={{ replies: object.replies ?? 0 }} />
|
||||
</div>
|
||||
{#if hasNew}
|
||||
<div class="notifyMarker" />
|
||||
{/if}
|
||||
<div class="lastReply">
|
||||
<Label label={activity.string.LastReply} />
|
||||
</div>
|
||||
<div class="time">
|
||||
<TimeSince value={lastReply} />
|
||||
</div>
|
||||
</div>
|
||||
{/if}
|
||||
|
||||
<style lang="scss">
|
||||
.container {
|
||||
border: 1px solid transparent;
|
||||
border-radius: 0.5rem;
|
||||
padding: 0.25rem 0.5rem;
|
||||
width: fit-content;
|
||||
height: 2.125rem;
|
||||
margin-left: -0.5rem;
|
||||
|
||||
.plus {
|
||||
margin-left: 0.25rem;
|
||||
}
|
||||
|
||||
.repliesCount {
|
||||
color: var(--theme-link-color);
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.time {
|
||||
font-size: 0.75rem;
|
||||
}
|
||||
|
||||
.lastReply {
|
||||
font-size: 0.75rem;
|
||||
margin-right: 0.25rem;
|
||||
}
|
||||
|
||||
.notifyMarker {
|
||||
margin-right: 0.25rem;
|
||||
width: 0.425rem;
|
||||
height: 0.425rem;
|
||||
border-radius: 50%;
|
||||
background-color: var(--highlight-red);
|
||||
}
|
||||
|
||||
&:hover {
|
||||
border: 1px solid var(--button-border-hover);
|
||||
background-color: var(--theme-bg-color);
|
||||
}
|
||||
}
|
||||
|
||||
.avatars {
|
||||
display: flex;
|
||||
gap: 0.25rem;
|
||||
}
|
||||
</style>
|
||||
@@ -24,13 +24,14 @@
|
||||
Space
|
||||
} from '@hcengineering/core'
|
||||
import { IntlString } from '@hcengineering/platform'
|
||||
import presentation, { createQuery } from '@hcengineering/presentation'
|
||||
import presentation, { createQuery, getClient } from '@hcengineering/presentation'
|
||||
import { AnyComponent, Button, Icon, Label, Scroller, SearchEdit, showPopup } from '@hcengineering/ui'
|
||||
import { FilterBar, FilterButton, SpacePresenter } from '@hcengineering/view-resources'
|
||||
import workbench from '@hcengineering/workbench'
|
||||
import { Channel } from '@hcengineering/chunter'
|
||||
import { openChannel } from '../../../navigation'
|
||||
import { InboxNotificationsClientImpl } from '@hcengineering/notification-resources'
|
||||
|
||||
import { openChannel } from '../../../navigation'
|
||||
import { getObjectIcon, joinChannel, leaveChannel } from '../../../utils'
|
||||
import chunter from './../../../plugin'
|
||||
|
||||
@@ -45,6 +46,9 @@
|
||||
const me = getCurrentAccount()._id
|
||||
const channelsQuery = createQuery()
|
||||
|
||||
const client = getClient()
|
||||
const notificationsClient = InboxNotificationsClientImpl.getClient()
|
||||
|
||||
const sort: SortingQuery<Space> = {
|
||||
name: SortingOrder.Ascending
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user