platform/plugins/contact-resources/src/components/EditEmployee.svelte
Denis Bykhov 821ed6cd7b
UBER-798 (#3628)
Signed-off-by: Denis Bykhov <bykhov.denis@gmail.com>
2023-08-24 22:51:30 +07:00

197 lines
5.5 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 {
Channel,
Employee,
Person,
PersonAccount,
combineName,
getFirstName,
getLastName
} from '@hcengineering/contact'
import { AccountRole, Ref, getCurrentAccount } from '@hcengineering/core'
import { AttributeEditor, createQuery, getClient } from '@hcengineering/presentation'
import setting, { IntegrationType } from '@hcengineering/setting'
import { EditBox, FocusHandler, Scroller, createFocusManager } from '@hcengineering/ui'
import { createEventDispatcher, onMount } from 'svelte'
import { ChannelsDropdown } from '..'
import contact from '../plugin'
import Avatar from './Avatar.svelte'
import ChannelsEditor from './ChannelsEditor.svelte'
import EditableAvatar from './EditableAvatar.svelte'
export let object: Person
export let readonly = false
export let channels: Channel[] | undefined = undefined
const client = getClient()
const account = getCurrentAccount() as PersonAccount
let avatarEditor: EditableAvatar
$: owner = account.person === object._id
$: editable = !readonly && (account.role >= AccountRole.Maintainer || owner)
let firstName = getFirstName(object.name)
let lastName = getLastName(object.name)
$: setName(object)
let email: string | undefined
$: if (editable) {
client.findOne(contact.class.PersonAccount, { person: (object as Employee)._id }).then((acc) => {
email = acc?.email
})
}
function setName (object: Person) {
firstName = getFirstName(object.name)
lastName = getLastName(object.name)
}
const dispatch = createEventDispatcher()
async function firstNameChange () {
await client.update(object, {
name: combineName(firstName, getLastName(object.name))
})
}
async function lastNameChange () {
await client.update(object, {
name: combineName(getFirstName(object.name), lastName)
})
}
let integrations: Set<Ref<IntegrationType>> = new Set<Ref<IntegrationType>>()
const settingsQuery = createQuery()
$: settingsQuery.query(setting.class.Integration, { createdBy: account._id, disabled: false }, (res) => {
integrations = new Set(res.map((p) => p.type))
})
const sendOpen = () => dispatch('open', { ignoreKeys: ['comments', 'name', 'channels', 'city'] })
onMount(sendOpen)
async function onAvatarDone () {
if (object.avatar != null) {
await avatarEditor.removeAvatar(object.avatar)
}
const avatar = await avatarEditor.createAvatar()
await client.update(object, {
avatar
})
}
const manager = createFocusManager()
</script>
<FocusHandler {manager} />
{#if object !== undefined}
<div class="flex-row-stretch flex-grow">
<div class="flex-no-shrink mr-8">
{#key object}
{#if editable}
<EditableAvatar
avatar={object.avatar}
{email}
id={object._id}
size={'x-large'}
bind:this={avatarEditor}
on:done={onAvatarDone}
/>
{:else}
<Avatar avatar={object.avatar} size={'x-large'} />
{/if}
{/key}
</div>
<div class="flex-grow flex-col">
<div class="name select-text">
{#if owner}
<EditBox
placeholder={contact.string.PersonFirstNamePlaceholder}
bind:value={firstName}
disabled={!editable}
on:change={firstNameChange}
focusIndex={1}
/>
{:else}
{firstName}
{/if}
</div>
<div class="name select-text">
{#if owner}
<EditBox
placeholder={contact.string.PersonLastNamePlaceholder}
bind:value={lastName}
on:change={lastNameChange}
disabled={!editable}
focusIndex={2}
/>
{:else}
{lastName}
{/if}
</div>
<div class="location">
<AttributeEditor maxWidth="20rem" _class={contact.class.Person} {editable} {object} key="city" focusIndex={3} />
</div>
<div class="separator" />
<Scroller contentDirection={'horizontal'} padding={'.125rem .125rem .5rem'} stickedScrollBars thinScrollBars>
{#if channels === undefined}
<ChannelsEditor
attachedTo={object._id}
attachedClass={object._class}
{editable}
bind:integrations
shape={'circle'}
focusIndex={10}
/>
{:else}
<ChannelsDropdown
value={channels}
editable={false}
kind={'link-bordered'}
size={'small'}
length={'full'}
shape={'circle'}
/>
{/if}
</Scroller>
</div>
</div>
{/if}
<style lang="scss">
.name {
font-weight: 500;
font-size: 1.25rem;
color: var(--caption-color);
}
.location {
margin-top: 0.25rem;
font-size: 0.75rem;
}
.separator {
margin: 1rem 0;
height: 1px;
background-color: var(--divider-color);
}
</style>