platform/plugins/contact-resources/src/components/CreatePerson.svelte
Denis Bykhov c37502077c
TSK-462 Allow sub issue drafts (#2823)
Signed-off-by: Denis Bykhov <bykhov.denis@gmail.com>
2023-03-24 17:23:44 +07:00

125 lines
3.8 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 { Channel, combineName, findPerson, Person } from '@hcengineering/contact'
import { AttachedData, Data, generateId } from '@hcengineering/core'
import { Card, getClient } from '@hcengineering/presentation'
import { EditBox, IconInfo, Label, createFocusManager, FocusHandler } from '@hcengineering/ui'
import { createEventDispatcher } from 'svelte'
import { ChannelsDropdown } from '..'
import contact from '../plugin'
import EditableAvatar from './EditableAvatar.svelte'
import PersonPresenter from './PersonPresenter.svelte'
let avatarEditor: EditableAvatar
let firstName = ''
let lastName = ''
const id = generateId()
export function canClose (): boolean {
return firstName === '' && lastName === ''
}
const object: Person = {} as Person
const dispatch = createEventDispatcher()
const client = getClient()
async function createPerson () {
const person: Data<Person> = {
createOn: Date.now(),
name: combineName(firstName, lastName),
city: object.city
}
person.avatar = await avatarEditor.createAvatar()
await client.createDoc(contact.class.Person, contact.space.Contacts, person, id)
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
})
}
dispatch('close')
}
let channels: AttachedData<Channel>[] = []
let matches: Person[] = []
$: findPerson(client, combineName(firstName, lastName), channels).then((p) => {
matches = p
})
const manager = createFocusManager()
</script>
<FocusHandler {manager} />
<Card
label={contact.string.CreatePerson}
okAction={createPerson}
canSave={firstName.length > 0 && lastName.length > 0 && matches.length === 0}
on:close={() => {
dispatch('close')
}}
>
<svelte:fragment slot="error">
{#if matches.length > 0}
<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 class="ml-4"><PersonPresenter value={matches[0]} /></div>
</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'}
focus
focusIndex={1}
/>
<EditBox
placeholder={contact.string.PersonLastNamePlaceholder}
bind:value={lastName}
kind={'large-style'}
focusIndex={2}
/>
<div class="mt-1">
<EditBox
placeholder={contact.string.PersonLocationPlaceholder}
bind:value={object.city}
kind={'small-style'}
focusIndex={3}
/>
</div>
</div>
<div class="ml-4">
<EditableAvatar avatar={object.avatar} {id} size={'large'} bind:this={avatarEditor} />
</div>
</div>
<svelte:fragment slot="pool">
<ChannelsDropdown bind:value={channels} focusIndex={10} kind={'no-border'} editable />
</svelte:fragment>
</Card>