mirror of
https://github.com/hcengineering/platform.git
synced 2026-08-23 12:52:24 +02:00
144 lines
4.4 KiB
Svelte
144 lines
4.4 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 { AttachmentRefInput } from '@hcengineering/attachment-resources'
|
|
import chunter, { Comment } from '@hcengineering/chunter'
|
|
import { updateBacklinks } from '@hcengineering/chunter-resources/src/backlinks'
|
|
import { EmployeeAccount } from '@hcengineering/contact'
|
|
import { AttachedData, getCurrentAccount, Ref } from '@hcengineering/core'
|
|
import { getClient } from '@hcengineering/presentation'
|
|
import { Request, RequestStatus } from '@hcengineering/request'
|
|
import type { RefAction } from '@hcengineering/text-editor'
|
|
import { Button } from '@hcengineering/ui'
|
|
import request from '../plugin'
|
|
import Comments from './icons/Comments.svelte'
|
|
import DocFail from './icons/DocFail.svelte'
|
|
import DocSuccess from './icons/DocSuccess.svelte'
|
|
|
|
export let value: Request
|
|
|
|
const client = getClient()
|
|
const me = getCurrentAccount()._id as Ref<EmployeeAccount>
|
|
|
|
const approvable = value.requested.filter((a) => a === me).length > value.approved.filter((a) => a === me).length
|
|
|
|
async function approve () {
|
|
await saveComment()
|
|
await client.update(value, {
|
|
$push: {
|
|
approved: me
|
|
}
|
|
})
|
|
}
|
|
|
|
$: disabled = commentIsEmpty(message, attachments)
|
|
|
|
async function reject () {
|
|
await saveComment()
|
|
await client.update(value, {
|
|
rejected: me,
|
|
status: RequestStatus.Rejected
|
|
})
|
|
}
|
|
|
|
let message: string = ''
|
|
let attachments: number | undefined = 0
|
|
|
|
async function onUpdate (event: CustomEvent<AttachedData<Comment>>) {
|
|
message = event.detail.message
|
|
attachments = event.detail.attachments
|
|
}
|
|
|
|
async function saveComment (): Promise<void> {
|
|
const _id = await client.addCollection(chunter.class.Comment, value.space, value._id, value._class, 'comments', {
|
|
message,
|
|
attachments
|
|
})
|
|
|
|
await client.createMixin(_id, chunter.class.Comment, value.space, request.mixin.RequestDecisionComment, {})
|
|
|
|
// We need to update backlinks before and after.
|
|
await updateBacklinks(client, value.attachedTo, value.attachedToClass, value._id, message)
|
|
refInput.createAttachments()
|
|
loading = false
|
|
}
|
|
|
|
async function comment (): Promise<void> {
|
|
await client.addCollection(chunter.class.Comment, value.space, value._id, value._class, 'comments', {
|
|
message,
|
|
attachments
|
|
})
|
|
|
|
// We need to update backlinks before and after.
|
|
await updateBacklinks(client, value.attachedTo, value.attachedToClass, value._id, message)
|
|
loading = false
|
|
}
|
|
|
|
function commentIsEmpty (message: string, attachments: number | undefined): boolean {
|
|
return (message === '<p></p>' || message.trim().length === 0) && !((attachments ?? 0) > 0)
|
|
}
|
|
|
|
let refInput: AttachmentRefInput
|
|
let extraActions: RefAction[]
|
|
$: extraActions = [
|
|
{
|
|
label: request.string.Approve,
|
|
icon: DocSuccess,
|
|
action: () => approve(),
|
|
order: 1000,
|
|
fill: 'var(--theme-won-color)',
|
|
disabled
|
|
},
|
|
{
|
|
label: request.string.Reject,
|
|
icon: DocFail,
|
|
action: () => reject(),
|
|
order: 2000,
|
|
fill: 'var(--theme-lost-color)',
|
|
disabled
|
|
}
|
|
]
|
|
let loading = false
|
|
|
|
async function cancel () {
|
|
await client.update(value, {
|
|
status: RequestStatus.Cancelled
|
|
})
|
|
}
|
|
</script>
|
|
|
|
{#if value.status === RequestStatus.Active}
|
|
{#if value.createdBy === me}
|
|
<div class="mt-2">
|
|
<Button label={request.string.Cancel} on:click={cancel} />
|
|
</div>
|
|
{/if}
|
|
<div class="mt-2">
|
|
<AttachmentRefInput
|
|
bind:this={refInput}
|
|
space={value.space}
|
|
_class={value._class}
|
|
objectId={value._id}
|
|
iconSend={Comments}
|
|
labelSend={request.string.Comment}
|
|
on:message={comment}
|
|
on:update={onUpdate}
|
|
placeholder={request.string.PleaseTypeMessage}
|
|
extraActions={approvable ? extraActions : undefined}
|
|
bind:loading
|
|
/>
|
|
</div>
|
|
{/if}
|