mirror of
https://github.com/hcengineering/platform.git
synced 2025-04-30 12:15:51 +00:00
65 lines
1.9 KiB
Svelte
65 lines
1.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 { SortingOrder } from '@hcengineering/core'
|
|
import { createQuery } from '@hcengineering/presentation'
|
|
import chunter, { ChatMessage, DirectMessage } from '@hcengineering/chunter'
|
|
import { Label } from '@hcengineering/ui'
|
|
import { ActivityMessagePresenter } from '@hcengineering/activity-resources'
|
|
|
|
import chunterResources from '../plugin'
|
|
|
|
export let object: DirectMessage
|
|
|
|
const NUM_OF_RECENT_MESSAGES = 5 as const
|
|
|
|
let messages: ChatMessage[] = []
|
|
const messagesQuery = createQuery()
|
|
$: messagesQuery.query(
|
|
chunter.class.ChatMessage,
|
|
{ attachedTo: object._id },
|
|
(res) => {
|
|
if (res !== undefined) {
|
|
messages = res.sort((a, b) => (a.createdOn ?? 0) - (b.createdOn ?? 0))
|
|
}
|
|
},
|
|
{
|
|
limit: NUM_OF_RECENT_MESSAGES,
|
|
sort: {
|
|
createdOn: SortingOrder.Descending
|
|
}
|
|
}
|
|
)
|
|
</script>
|
|
|
|
<div class="flex-col flex-gap-3 preview-container">
|
|
{#if messages.length}
|
|
{#each messages as message}
|
|
<ActivityMessagePresenter value={message} skipLabel />
|
|
{/each}
|
|
{:else}
|
|
<Label label={chunterResources.string.NoMessages} />
|
|
{/if}
|
|
</div>
|
|
|
|
<style lang="scss">
|
|
.preview-container {
|
|
padding: 0.5rem;
|
|
background-color: var(--theme-bg-color);
|
|
border: 1px solid var(--theme-divider-color);
|
|
border-radius: 0.25rem;
|
|
}
|
|
</style>
|