platform/plugins/contact-resources/src/components/CreatePerson.svelte

121 lines
4.0 KiB
Svelte
Raw Normal View History

<!--
// 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 attachment from '@anticrm/attachment'
import { Channel, combineName, findPerson, Person } from '@anticrm/contact'
import { AttachedData, Data, generateId } from '@anticrm/core'
import { getResource } from '@anticrm/platform'
import { Card, EditableAvatar, getClient } from '@anticrm/presentation'
import { Button, EditBox, eventToHTMLElement, IconInfo, Label, showPopup } from '@anticrm/ui'
import { createEventDispatcher } from 'svelte'
import contact from '../plugin'
import { ChannelsDropdown } from '..'
import ChannelsView from './ChannelsView.svelte'
import PersonPresenter from './PersonPresenter.svelte'
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()
let avatar: File | undefined
function onAvatarDone (e: any) {
const { file } = e.detail
avatar = file
}
function removeAvatar (): void {
avatar = undefined
}
async function createPerson () {
const person: Data<Person> = {
name: combineName(firstName, lastName),
city: object.city
}
if (avatar !== undefined) {
const uploadFile = await getResource(attachment.helper.UploadFile)
person.avatar = await uploadFile(avatar)
}
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, { ...object, name: combineName(firstName, lastName) }, channels).then((p) => {
matches = p
})
</script>
<Card
label={contact.string.CreatePerson}
okAction={createPerson}
canSave={firstName.length > 0 && lastName.length > 0 && matches.length === 0}
bind:space={contact.space.Contacts}
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'} maxWidth={'32rem'} focus />
<EditBox placeholder={contact.string.PersonLastNamePlaceholder} bind:value={lastName} kind={'large-style'} maxWidth={'32rem'} />
<div class="mt-1">
<EditBox placeholder={contact.string.PersonLocationPlaceholder} bind:value={object.city} kind={'small-style'} maxWidth={'32rem'} />
</div>
</div>
<div class="ml-4">
<EditableAvatar avatar={object.avatar} size={'large'} on:done={onAvatarDone} on:remove={removeAvatar} />
</div>
</div>
<svelte:fragment slot="pool">
<ChannelsDropdown bind:value={channels} kind={'no-border'} editable />
</svelte:fragment>
</Card>