mirror of
https://github.com/hcengineering/platform.git
synced 2025-04-15 12:55:59 +00:00
181 lines
5.2 KiB
Svelte
181 lines
5.2 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, IconClose, Label, location as locationStore } from '@hcengineering/ui'
|
|
import { createEventDispatcher, onMount } from 'svelte'
|
|
import activity, { ActivityMessage, DisplayActivityMessage } from '@hcengineering/activity'
|
|
import { getMessageFromLoc, loadSavedMessages } from '@hcengineering/activity-resources'
|
|
import contact from '@hcengineering/contact'
|
|
|
|
import chunter from '../../plugin'
|
|
import ThreadParentMessage from './ThreadParentPresenter.svelte'
|
|
import { getChannelIcon, getChannelName } from '../../utils'
|
|
import ChannelScrollView from '../ChannelScrollView.svelte'
|
|
|
|
export let _id: Ref<ActivityMessage>
|
|
export let selectedMessageId: Ref<ActivityMessage> | undefined = undefined
|
|
export let showHeader: boolean = true
|
|
|
|
const dispatch = createEventDispatcher()
|
|
|
|
const client = getClient()
|
|
const hierarchy = client.getHierarchy()
|
|
|
|
const messageQuery = createQuery()
|
|
const channelQuery = createQuery()
|
|
const messagesQuery = createQuery()
|
|
|
|
let channel: Doc | undefined = undefined
|
|
let message: DisplayActivityMessage | undefined = undefined
|
|
let messages: DisplayActivityMessage[] = []
|
|
|
|
let channelName: string | undefined = undefined
|
|
|
|
locationStore.subscribe((newLocation) => {
|
|
selectedMessageId = getMessageFromLoc(newLocation)
|
|
})
|
|
|
|
$: 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]
|
|
})
|
|
|
|
$: message &&
|
|
messagesQuery.query(chunter.class.ThreadMessage, { attachedTo: message._id }, (res) => {
|
|
messages = res
|
|
})
|
|
|
|
$: 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: getChannelIcon(message.attachedToClass),
|
|
iconProps: { value: channel },
|
|
iconWidth: isPersonAvatar ? 'auto' : undefined,
|
|
withoutIconBackground: isPersonAvatar,
|
|
title: channelName,
|
|
label: channelName ? undefined : chunter.string.Channel
|
|
},
|
|
{ label: chunter.string.Thread }
|
|
]
|
|
}
|
|
|
|
onMount(() => {
|
|
loadSavedMessages()
|
|
})
|
|
</script>
|
|
|
|
<div class="popupPanel panel">
|
|
{#if showHeader}
|
|
<div class="ac-header divide full caption-height" style="padding: 0.5rem 1rem">
|
|
<Breadcrumbs items={getBreadcrumbsItems(channel, message, channelName)} />
|
|
<!-- svelte-ignore a11y-click-events-have-key-events -->
|
|
<!-- svelte-ignore a11y-no-static-element-interactions -->
|
|
<div
|
|
class="close"
|
|
on:click={() => {
|
|
dispatch('close')
|
|
}}
|
|
>
|
|
<IconClose size="medium" />
|
|
</div>
|
|
</div>
|
|
{/if}
|
|
|
|
<div class="popupPanel-body">
|
|
<div class="container">
|
|
{#if message}
|
|
<ChannelScrollView
|
|
{selectedMessageId}
|
|
{messages}
|
|
withDates={false}
|
|
skipLabels
|
|
object={message}
|
|
objectId={message._id}
|
|
objectClass={message._class}
|
|
>
|
|
<svelte:fragment slot="header">
|
|
<div class="mt-3 mr-6 ml-6">
|
|
<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>
|
|
</div>
|
|
</div>
|
|
|
|
<style lang="scss">
|
|
.container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 100%;
|
|
}
|
|
|
|
.close {
|
|
margin-left: 0.75rem;
|
|
opacity: 0.4;
|
|
cursor: pointer;
|
|
|
|
&:hover {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
.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>
|