platform/plugins/notification-resources/src/components/DocNotifyContextPresenter.svelte
Kristina 7f6f5e28a6
UBERF-4360: rewrite chat (#4265)
Signed-off-by: Kristina Fefelova <kristin.fefelova@gmail.com>
2024-01-11 21:46:11 +07:00

56 lines
1.7 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 { DocNotifyContext } from '@hcengineering/notification'
import { Doc } from '@hcengineering/core'
import { getDocLinkTitle, getDocTitle } from '@hcengineering/view-resources'
import { Icon } from '@hcengineering/ui'
import { createQuery, getClient } from '@hcengineering/presentation'
import chunter from '@hcengineering/chunter'
export let value: DocNotifyContext
const client = getClient()
const objectQuery = createQuery()
let object: Doc | undefined
$: objectQuery.query(value.attachedToClass, { _id: value.attachedTo }, (res) => {
object = res[0]
})
$: icon = object && client.getHierarchy().getClass(object._class).icon
async function getTitle (object: Doc) {
if (object._class === chunter.class.DirectMessage) {
return await getDocTitle(client, object._id, object._class, object)
}
return await getDocLinkTitle(client, object._id, object._class, object)
}
</script>
{#if object}
<div class="flex-presenter">
{#if icon}
<Icon {icon} size="small" />
{/if}
<div class="mr-4" />
{#await getTitle(object) then title}
{title}
{/await}
</div>
{/if}