platform/plugins/board-resources/src/components/presenters/NotificationPresenter.svelte
Denis Bykhov bdbe7de4f1
TSK-925 Collaborators (#2849)
Signed-off-by: Denis Bykhov <bykhov.denis@gmail.com>
2023-03-29 15:18:59 +06:00

35 lines
1.3 KiB
Svelte

<!--
// Copyright © 2022 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 { Doc } from '@hcengineering/core'
import notification from '@hcengineering/notification'
import { NotificationClientImpl } from '@hcengineering/notification-resources'
import { Icon, IconSize } from '@hcengineering/ui'
export let object: Doc
export let size: IconSize = 'small'
const notificationClient = NotificationClientImpl.getClient()
const lastViews = notificationClient.getLastViews()
$: lastView = $lastViews[object._id]
$: subscribed = lastView !== undefined && lastView !== -1
</script>
{#if subscribed}
<div class="sm-tool-icon ml-1 mr-1 flex-center">
<span class="icon"><Icon icon={notification.icon.Notifications} {size} /></span>
</div>
{/if}