platform/plugins/attachment-resources/src/components/activity/AttachmentsUpdatedMessage.svelte
Kristina ba49e4d66e
UBERF-4707: fix activity messages updating (#4238)
Signed-off-by: Kristina Fefelova <kristin.fefelova@gmail.com>
2023-12-21 22:31:32 +07:00

45 lines
1.5 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 { DocUpdateMessage } from '@hcengineering/activity'
import { Ref } from '@hcengineering/core'
import { getClient } from '@hcengineering/presentation'
import { Attachment } from '@hcengineering/attachment'
import { getOrBuildObject } from '@hcengineering/view-resources'
import attachment from '../../plugin'
import AttachmentPresenter from '../AttachmentPresenter.svelte'
import RemovedAttachmentPresenter from '../RemovedAttachmentPresenter.svelte'
export let message: DocUpdateMessage
export let _id: Ref<Attachment>
export let value: Attachment | undefined = undefined
const client = getClient()
$: value === undefined &&
getOrBuildObject<Attachment>(client, _id, attachment.class.Attachment).then((res) => {
value = res
})
</script>
{#if value}
{#if message.action === 'remove'}
<RemovedAttachmentPresenter {value} />
{:else}
<AttachmentPresenter {value} />
{/if}
{/if}