mirror of
https://github.com/hcengineering/platform.git
synced 2025-04-25 09:50:19 +00:00
51 lines
1.8 KiB
Svelte
51 lines
1.8 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 { eventToHTMLElement, Label, ModernButton, showPopup, Icon } from '@hcengineering/ui'
|
|
import PinnedMessagesPopup from './PinnedMessagesPopup.svelte'
|
|
import { createQuery } from '@hcengineering/presentation'
|
|
import activity, { ActivityMessage } from '@hcengineering/activity'
|
|
import { Class, Doc, Ref } from '@hcengineering/core'
|
|
import view from '@hcengineering/view'
|
|
|
|
import chunter from '../plugin'
|
|
|
|
export let _class: Ref<Class<Doc>>
|
|
export let _id: Ref<Doc>
|
|
|
|
const pinnedQuery = createQuery()
|
|
|
|
let pinnedMessagesCount = 0
|
|
|
|
$: pinnedQuery.query(
|
|
activity.class.ActivityMessage,
|
|
{ attachedTo: _id, isPinned: true },
|
|
(res: ActivityMessage[]) => {
|
|
pinnedMessagesCount = res.length
|
|
}
|
|
)
|
|
function openMessagesPopup (ev: MouseEvent) {
|
|
showPopup(PinnedMessagesPopup, { attachedTo: _id, attachedToClass: _class }, eventToHTMLElement(ev))
|
|
}
|
|
</script>
|
|
|
|
{#if pinnedMessagesCount > 0}
|
|
<div class="antiHSpacer x2" />
|
|
<ModernButton size={'extra-small'} on:click={openMessagesPopup}>
|
|
<Icon icon={view.icon.Pin} size={'x-small'} />
|
|
<span class="text-sm"><Label label={chunter.string.PinnedCount} params={{ count: pinnedMessagesCount }} /></span>
|
|
</ModernButton>
|
|
{/if}
|