mirror of
https://github.com/hcengineering/platform.git
synced 2025-02-08 20:07:36 +00:00
131 lines
4.0 KiB
Svelte
131 lines
4.0 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, findContacts, Organization } from '@hcengineering/contact'
|
|
import { AttachedData, fillDefaults, generateId, Ref, TxOperations, WithLookup } from '@hcengineering/core'
|
|
import { Card, getClient, InlineAttributeBar } from '@hcengineering/presentation'
|
|
import { Button, createFocusManager, EditBox, FocusHandler, IconInfo, Label } from '@hcengineering/ui'
|
|
import { createEventDispatcher } from 'svelte'
|
|
import contact from '../plugin'
|
|
import ChannelsDropdown from './ChannelsDropdown.svelte'
|
|
import Company from './icons/Company.svelte'
|
|
import OrganizationPresenter from './OrganizationPresenter.svelte'
|
|
|
|
export let onCreate: ((orgId: Ref<Organization>, client: TxOperations) => Promise<void>) | undefined = undefined
|
|
|
|
export function canClose (): boolean {
|
|
return object.name === ''
|
|
}
|
|
|
|
const id: Ref<Organization> = generateId()
|
|
|
|
const object: Organization = {
|
|
name: ''
|
|
} as Organization
|
|
|
|
const dispatch = createEventDispatcher()
|
|
const client = getClient()
|
|
const hierarchy = client.getHierarchy()
|
|
|
|
fillDefaults(hierarchy, object, contact.class.Organization)
|
|
|
|
async function createOrganization () {
|
|
await client.createDoc(contact.class.Organization, contact.space.Contacts, object, id)
|
|
for (const channel of channels) {
|
|
await client.addCollection(
|
|
contact.class.Channel,
|
|
contact.space.Contacts,
|
|
id,
|
|
contact.class.Organization,
|
|
'channels',
|
|
{
|
|
value: channel.value,
|
|
provider: channel.provider
|
|
}
|
|
)
|
|
}
|
|
if (onCreate !== undefined) {
|
|
await onCreate?.(id, client)
|
|
}
|
|
|
|
dispatch('close', id)
|
|
}
|
|
|
|
let channels: AttachedData<Channel>[] = []
|
|
|
|
const manager = createFocusManager()
|
|
|
|
let matches: WithLookup<Organization>[] = []
|
|
let matchedChannels: AttachedData<Channel>[] = []
|
|
$: findContacts(client, contact.class.Organization, object.name, channels).then((p) => {
|
|
matches = p.contacts as Organization[]
|
|
matchedChannels = p.channels
|
|
})
|
|
</script>
|
|
|
|
<FocusHandler {manager} />
|
|
|
|
<Card
|
|
label={contact.string.CreateOrganization}
|
|
okAction={createOrganization}
|
|
canSave={object.name.length > 0}
|
|
on:close={() => {
|
|
dispatch('close')
|
|
}}
|
|
on:changeContent
|
|
>
|
|
<div class="flex-row-center clear-mins">
|
|
<div class="mr-3">
|
|
<Button icon={Company} size={'medium'} kind={'link-bordered'} disabled />
|
|
</div>
|
|
<EditBox
|
|
placeholder={contact.string.OrganizationNamePlaceholder}
|
|
bind:value={object.name}
|
|
kind={'large-style'}
|
|
focus
|
|
focusIndex={1}
|
|
/>
|
|
</div>
|
|
<svelte:fragment slot="pool">
|
|
<div class="flex-row-center flex-wrap">
|
|
<ChannelsDropdown
|
|
bind:value={channels}
|
|
focusIndex={10}
|
|
editable
|
|
highlighted={matchedChannels.map((it) => it.provider)}
|
|
/>
|
|
|
|
<InlineAttributeBar
|
|
_class={contact.class.Organization}
|
|
{object}
|
|
toClass={contact.class.Contact}
|
|
on:update
|
|
extraProps={{ showNavigate: false }}
|
|
/>
|
|
</div>
|
|
</svelte:fragment>
|
|
<svelte:fragment slot="footer">
|
|
{#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"><OrganizationPresenter value={matches[0]} /></div>
|
|
</div>
|
|
{/if}
|
|
</svelte:fragment>
|
|
</Card>
|