Files
huly-platform/plugins/controlled-documents-resources/src/components/document/presenters/OwnerPresenter.svelte
T
2024-06-03 19:55:54 +04:00

81 lines
2.6 KiB
Svelte

<!--
// Copyright © 2024 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 documents, { Document } from '@hcengineering/controlled-documents'
import { Employee } from '@hcengineering/contact'
import { PersonPresenter } from '@hcengineering/contact-resources'
import { Ref } from '@hcengineering/core'
import { IntlString } from '@hcengineering/platform'
import { getClient } from '@hcengineering/presentation'
import { eventToHTMLElement, showPopup } from '@hcengineering/ui'
import { checkMyPermission, permissionsStore } from '@hcengineering/view-resources'
import document from '../../../plugin'
import ChangeOwnerPopup from '../popups/ChangeOwnerPopup.svelte'
import { getCurrentEmployee } from '../../../utils'
export let _id: Ref<Employee> | undefined
export let value: Employee | null | undefined
export let object: Document
export let isEditable: boolean = false
export let shouldShowLabel: boolean = false
export let defaultName: IntlString | undefined = undefined
const client = getClient()
const me = getCurrentEmployee()
$: canChangeOwner =
isEditable &&
(object.owner === me ||
checkMyPermission(documents.permission.UpdateDocumentOwner, object.space, $permissionsStore))
const handleOwnerChanged = async (result: Employee | null | undefined) => {
if (!isEditable || !result || result._id === object.owner) {
return
}
await client.update(object, { owner: result._id })
}
const handleOwnerEditorOpened = async (event: MouseEvent) => {
if (!canChangeOwner) {
return
}
event?.preventDefault()
event?.stopPropagation()
showPopup(
ChangeOwnerPopup,
{
object
},
eventToHTMLElement(event),
handleOwnerChanged
)
}
</script>
<PersonPresenter
{defaultName}
value={_id ?? value?._id}
disabled={!canChangeOwner}
avatarSize={'x-small'}
shouldShowPlaceholder={true}
shouldShowName={shouldShowLabel}
tooltipLabels={{ personLabel: document.string.AssignedTo, placeholderLabel: document.string.Unassigned }}
onEdit={canChangeOwner ? handleOwnerEditorOpened : undefined}
/>