mirror of
https://github.com/hcengineering/platform.git
synced 2025-04-26 18:29:51 +00:00
86 lines
2.7 KiB
Svelte
86 lines
2.7 KiB
Svelte
<!--
|
|
// Copyright © 2020, 2021 Anticrm Platform Contributors.
|
|
// Copyright © 2021 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 { AttachmentsPresenter } from '@anticrm/attachment-resources'
|
|
import { CommentsPresenter } from '@anticrm/chunter-resources'
|
|
import { ContactPresenter } from '@anticrm/contact-resources'
|
|
import type { WithLookup } from '@anticrm/core'
|
|
import type { Card } from '@anticrm/board'
|
|
import { ActionIcon, Component, IconMoreH, showPanel, showPopup } from '@anticrm/ui'
|
|
import view from '@anticrm/view'
|
|
import { ContextMenu } from '@anticrm/view-resources'
|
|
import board from '../plugin'
|
|
import notification from '@anticrm/notification'
|
|
|
|
export let object: WithLookup<Card>
|
|
export let draggable: boolean
|
|
|
|
function showMenu (ev?: Event): void {
|
|
showPopup(ContextMenu, { object }, (ev as MouseEvent).target as HTMLElement)
|
|
}
|
|
|
|
function showLead () {
|
|
showPanel(view.component.EditDoc, object._id, object._class, 'middle')
|
|
}
|
|
</script>
|
|
|
|
<div class="card-container" {draggable} class:draggable on:dragstart on:dragend>
|
|
<div class="flex-between mb-4">
|
|
<div class="flex-col">
|
|
<div class="fs-title cursor-pointer" on:click={showLead}>{object.title}</div>
|
|
</div>
|
|
<div class="flex-row-center">
|
|
<div class="mr-2">
|
|
<Component is={notification.component.NotificationPresenter} props={{ value: object }} />
|
|
</div>
|
|
<ActionIcon
|
|
label={board.string.More}
|
|
action={(evt) => {
|
|
showMenu(evt)
|
|
}}
|
|
icon={IconMoreH}
|
|
size={'small'}
|
|
/>
|
|
</div>
|
|
</div>
|
|
<div class="flex-between">
|
|
<div class="flex-row-center">
|
|
{#if (object.attachments ?? 0) > 0}
|
|
<div class="step-lr75"><AttachmentsPresenter value={object} /></div>
|
|
{/if}
|
|
{#if (object.comments ?? 0) > 0}
|
|
<div class="step-lr75"><CommentsPresenter value={object} /></div>
|
|
{/if}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<style lang="scss">
|
|
.card-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 1rem 1.25rem;
|
|
background-color: rgba(222, 222, 240, 0.06);
|
|
border-radius: 0.75rem;
|
|
user-select: none;
|
|
backdrop-filter: blur(10px);
|
|
|
|
&.draggable {
|
|
cursor: grab;
|
|
}
|
|
}
|
|
</style>
|