mirror of
https://github.com/hcengineering/platform.git
synced 2025-04-18 22:38:33 +00:00
158 lines
4.9 KiB
Svelte
158 lines
4.9 KiB
Svelte
<!--
|
|
// 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 { Doc, Ref } from '@hcengineering/core'
|
|
import { createQuery, getClient } from '@hcengineering/presentation'
|
|
import { Breadcrumbs, Label, location as locationStore, Header } from '@hcengineering/ui'
|
|
import { onDestroy } from 'svelte'
|
|
import activity, { ActivityMessage, DisplayActivityMessage } from '@hcengineering/activity'
|
|
import { getMessageFromLoc, messageInFocus } from '@hcengineering/activity-resources'
|
|
import contact from '@hcengineering/contact'
|
|
|
|
import chunter from '../../plugin'
|
|
import ThreadParentMessage from './ThreadParentPresenter.svelte'
|
|
import { getObjectIcon, getChannelName } from '../../utils'
|
|
import ChannelScrollView from '../ChannelScrollView.svelte'
|
|
import { ChannelDataProvider } from '../../channelDataProvider'
|
|
|
|
export let _id: Ref<ActivityMessage>
|
|
export let selectedMessageId: Ref<ActivityMessage> | undefined = undefined
|
|
export let showHeader: boolean = true
|
|
|
|
const client = getClient()
|
|
const hierarchy = client.getHierarchy()
|
|
|
|
const messageQuery = createQuery()
|
|
const channelQuery = createQuery()
|
|
|
|
let channel: Doc | undefined = undefined
|
|
let message: DisplayActivityMessage | undefined = undefined
|
|
|
|
let channelName: string | undefined = undefined
|
|
let dataProvider: ChannelDataProvider | undefined = undefined
|
|
|
|
const unsubscribe = messageInFocus.subscribe((id) => {
|
|
if (id !== undefined && id !== selectedMessageId) {
|
|
selectedMessageId = id
|
|
}
|
|
|
|
messageInFocus.set(undefined)
|
|
})
|
|
|
|
const unsubscribeLocation = locationStore.subscribe((newLocation) => {
|
|
const id = getMessageFromLoc(newLocation)
|
|
selectedMessageId = id
|
|
messageInFocus.set(id)
|
|
})
|
|
|
|
onDestroy(() => {
|
|
unsubscribe()
|
|
unsubscribeLocation()
|
|
})
|
|
|
|
$: messageQuery.query(activity.class.ActivityMessage, { _id }, (result: ActivityMessage[]) => {
|
|
message = result[0] as DisplayActivityMessage
|
|
})
|
|
|
|
$: message &&
|
|
channelQuery.query(message.attachedToClass, { _id: message.attachedTo }, (res) => {
|
|
channel = res[0]
|
|
})
|
|
|
|
$: if (message !== undefined && dataProvider === undefined) {
|
|
dataProvider = new ChannelDataProvider(
|
|
undefined,
|
|
message.space,
|
|
message._id,
|
|
chunter.class.ThreadMessage,
|
|
selectedMessageId,
|
|
true
|
|
)
|
|
}
|
|
|
|
$: message &&
|
|
getChannelName(message.attachedTo, message.attachedToClass, channel).then((res) => {
|
|
channelName = res
|
|
})
|
|
|
|
function getBreadcrumbsItems (channel?: Doc, message?: DisplayActivityMessage, channelName?: string) {
|
|
if (message === undefined) {
|
|
return []
|
|
}
|
|
|
|
const isPersonAvatar =
|
|
message.attachedToClass === chunter.class.DirectMessage ||
|
|
hierarchy.isDerived(message.attachedToClass, contact.class.Person)
|
|
|
|
return [
|
|
{
|
|
icon: getObjectIcon(message.attachedToClass),
|
|
iconProps: { value: channel },
|
|
iconWidth: isPersonAvatar ? 'auto' : undefined,
|
|
withoutIconBackground: isPersonAvatar,
|
|
title: channelName,
|
|
label: channelName ? undefined : chunter.string.Channel
|
|
},
|
|
{ label: chunter.string.Thread }
|
|
]
|
|
}
|
|
</script>
|
|
|
|
{#if showHeader}
|
|
<Header type={'type-aside'} adaptive={'disabled'} on:close>
|
|
<Breadcrumbs items={getBreadcrumbsItems(channel, message, channelName)} currentOnly />
|
|
</Header>
|
|
{/if}
|
|
|
|
<div class="hulyComponent-content hulyComponent-content__container noShrink">
|
|
{#if message && dataProvider !== undefined}
|
|
<ChannelScrollView bind:selectedMessageId embedded skipLabels object={message} provider={dataProvider}>
|
|
<svelte:fragment slot="header">
|
|
<div class="mt-3">
|
|
<ThreadParentMessage {message} />
|
|
</div>
|
|
<div class="separator">
|
|
{#if message.replies && message.replies > 0}
|
|
<div class="label lower">
|
|
<Label label={activity.string.RepliesCount} params={{ replies: message.replies }} />
|
|
</div>
|
|
{/if}
|
|
<div class="line" />
|
|
</div>
|
|
</svelte:fragment>
|
|
</ChannelScrollView>
|
|
{/if}
|
|
</div>
|
|
|
|
<style lang="scss">
|
|
.separator {
|
|
display: flex;
|
|
align-items: center;
|
|
margin: 0.5rem 0;
|
|
|
|
.label {
|
|
white-space: nowrap;
|
|
margin: 0 0.5rem;
|
|
color: var(--theme-halfcontent-color);
|
|
}
|
|
|
|
.line {
|
|
background: var(--theme-refinput-border);
|
|
height: 1px;
|
|
width: 100%;
|
|
}
|
|
}
|
|
</style>
|