Files
huly-platform/plugins/contact-resources/src/components/CreateEmployee.svelte
T
2025-02-17 11:02:01 +07:00

230 lines
6.5 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 { AvatarType, Channel, combineName, ContactEvents, Employee, Person } from '@hcengineering/contact'
import {
AccountRole,
AttachedData,
buildSocialIdString,
Data,
generateId,
Ref,
SocialIdType
} from '@hcengineering/core'
import login from '@hcengineering/login'
import { getResource } from '@hcengineering/platform'
import { Card, getClient } from '@hcengineering/presentation'
import { createFocusManager, EditBox, FocusHandler, IconInfo, Label } from '@hcengineering/ui'
import { createEventDispatcher } from 'svelte'
import { ChannelsDropdown } from '..'
import contact from '../plugin'
import { personByPersonIdStore } from '../utils'
import EditableAvatar from './EditableAvatar.svelte'
import { Analytics } from '@hcengineering/analytics'
export let canSave: boolean = true
export let onCreate: ((id: Ref<Employee>) => Promise<void>) | undefined = undefined
let avatarEditor: EditableAvatar
let firstName = ''
let lastName = ''
let email = ''
const id: Ref<Employee> = generateId()
export function canClose (): boolean {
return firstName === '' && lastName === '' && email === ''
}
let saving: boolean = false
const person: Data<Person> = {
name: '',
city: '',
avatarType: AvatarType.COLOR
}
const dispatch = createEventDispatcher()
const client = getClient()
async function createEmployee (): Promise<void> {
try {
saving = true
changeEmail()
const mail = email.trim()
const socialString = buildSocialIdString({
type: SocialIdType.EMAIL,
value: mail
})
const existingPerson = $personByPersonIdStore.get(socialString)
if (existingPerson !== undefined && client.getHierarchy().hasMixin(existingPerson, contact.mixin.Employee)) {
return
}
const name = combineName(firstName, lastName)
person.name = name
const info = await avatarEditor.createAvatar()
person.avatar = info.avatar
person.avatarType = info.avatarType
person.avatarProps = info.avatarProps
if (existingPerson === undefined) {
await client.createDoc(contact.class.Person, contact.space.Contacts, person, id)
} else {
await client.update(existingPerson, person)
}
const employeeRef = (existingPerson?._id as Ref<Employee>) ?? id
await client.createMixin(id, contact.class.Person, contact.space.Contacts, contact.mixin.Employee, {
active: false
})
await client.addCollection(
contact.class.SocialIdentity,
contact.space.Contacts,
employeeRef,
contact.class.Person,
'socialIds',
{
type: SocialIdType.EMAIL,
value: mail,
confirmed: false,
key: socialString
}
)
const sendInvite = await getResource(login.function.SendInvite)
await sendInvite(mail, AccountRole.User)
for (const channel of channels) {
await client.addCollection(
contact.class.Channel,
contact.space.Contacts,
id,
contact.class.Person,
'channels',
{
value: channel.value,
provider: channel.provider
}
)
}
if (onCreate != null) {
await onCreate(employeeRef)
}
Analytics.handleEvent(ContactEvents.EmployeeCreated, { id, email: mail })
dispatch('close', id)
} finally {
saving = false
}
}
$: emailSocialString = buildSocialIdString({
type: SocialIdType.EMAIL,
value: email.trim()
})
let channels: AttachedData<Channel>[] = []
$: emailPerson = $personByPersonIdStore.get(emailSocialString)
$: exists = emailPerson !== undefined && client.getHierarchy().hasMixin(emailPerson, contact.mixin.Employee)
const manager = createFocusManager()
function changeEmail (): void {
const index = channels.findIndex((p) => p.provider === contact.channelProvider.Email)
if (index !== -1) {
channels[index].value = email.trim().toLowerCase()
} else {
channels.push({
provider: contact.channelProvider.Email,
value: email.trim()
})
}
channels = channels
}
</script>
<FocusHandler {manager} />
<Card
label={contact.string.CreateEmployee}
okAction={createEmployee}
canSave={firstName.trim().length > 0 && lastName.trim().length > 0 && email.trim().length > 0 && !exists && canSave}
on:close={() => {
dispatch('close')
}}
on:changeContent
>
<svelte:fragment slot="error">
{#if exists && !saving}
<div class="flex-row-center error-color">
<IconInfo size={'small'} />
<span class="text-sm overflow-label ml-2">
<Label label={contact.string.PersonAlreadyExists} />
</span>
</div>
{/if}
</svelte:fragment>
<div class="flex-row-center">
<div class="flex-grow flex-col">
<EditBox
placeholder={contact.string.PersonFirstNamePlaceholder}
bind:value={firstName}
kind={'large-style'}
autoFocus
focusIndex={1}
/>
<EditBox
placeholder={contact.string.PersonLastNamePlaceholder}
bind:value={lastName}
kind={'large-style'}
focusIndex={2}
/>
<div class="mt-1">
<EditBox
placeholder={contact.string.Email}
bind:value={email}
kind={'small-style'}
focusIndex={3}
on:blur={changeEmail}
/>
</div>
<slot name="extraControls" />
</div>
<div class="ml-4">
<EditableAvatar
{person}
name={combineName(firstName, lastName)}
{email}
size={'large'}
bind:this={avatarEditor}
/>
</div>
</div>
<svelte:fragment slot="pool">
<ChannelsDropdown
bind:value={channels}
focusIndex={10}
kind={'regular'}
size={'large'}
editable
restricted={[contact.channelProvider.Email]}
/>
</svelte:fragment>
</Card>