platform/plugins/view-resources/src/components/ObjectPresenter.svelte
Alexander Platov 0d1139f385
UBER-307,-308,-310,-311,-312: fixed activity in Inbox (#3298)
Signed-off-by: Alexander Platov <sas_lord@mail.ru>
2023-05-31 13:41:21 +07:00

74 lines
2.3 KiB
Svelte

<!--
// Copyright © 2021 Anticrm Platform Contributors.
//
// 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 type { Class, Doc, Ref, RelatedDocument } from '@hcengineering/core'
import { createQuery, getClient } from '@hcengineering/presentation'
import { AttributeModel } from '@hcengineering/view'
import { getObjectPresenter } from '../utils'
export let objectId: Ref<Doc> | undefined = undefined
export let _class: Ref<Class<Doc>> | undefined = undefined
export let value: Doc | RelatedDocument | undefined = undefined
export let props: Record<string, any> = {}
export let inline: boolean = true
export let accent: boolean = true
export let shouldShowAvatar: boolean = true
export let noUnderline: boolean = false
const client = getClient()
let presenter: AttributeModel | undefined
const docQuery = createQuery()
let doc: Doc | undefined
$: if (value === undefined && _class != null) {
docQuery.query(_class, { _id: objectId }, (r) => {
doc = r.shift()
})
} else if (
value?._id !== undefined &&
value?._class !== undefined &&
objectId === undefined &&
_class === undefined &&
(value as Doc)?.space === undefined
) {
docQuery.query(value._class, { _id: value._id }, (r) => {
;[doc] = r
})
} else if (value?._id !== undefined && value?._class !== undefined && (value as Doc).space !== undefined) {
docQuery.unsubscribe()
doc = value as Doc
}
$: if (doc !== undefined) {
getObjectPresenter(client, doc._class, { key: '' }).then((p) => {
presenter = p
})
}
</script>
{#if presenter}
<svelte:component
this={presenter.presenter}
value={doc}
{...props}
{inline}
{accent}
{shouldShowAvatar}
{noUnderline}
on:accent-color
/>
{/if}