mirror of
https://github.com/hcengineering/platform.git
synced 2025-02-08 11:57:43 +00:00
77 lines
2.3 KiB
Svelte
77 lines
2.3 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 { Organization, Person } from '@anticrm/contact'
|
||
|
import { Class, Ref, Space } from '@anticrm/core'
|
||
|
import { Card, getClient, UserBox } from '@anticrm/presentation'
|
||
|
import { createFocusManager, FocusHandler } from '@anticrm/ui'
|
||
|
import { createEventDispatcher } from 'svelte'
|
||
|
import contact from '../plugin'
|
||
|
|
||
|
export let organization: Ref<Organization>
|
||
|
export let _class: Ref<Class<Organization>>
|
||
|
export let space: Ref<Space>
|
||
|
const dispatch = createEventDispatcher()
|
||
|
|
||
|
let person: Ref<Person> | undefined
|
||
|
|
||
|
export function canClose (): boolean {
|
||
|
return person === undefined
|
||
|
}
|
||
|
|
||
|
const client = getClient()
|
||
|
|
||
|
async function createMember () {
|
||
|
if (person === undefined) {
|
||
|
return
|
||
|
}
|
||
|
const id = await client.addCollection(contact.class.Member, space, organization, _class, 'members', {
|
||
|
contact: person
|
||
|
})
|
||
|
|
||
|
dispatch('close', id)
|
||
|
}
|
||
|
const manager = createFocusManager()
|
||
|
</script>
|
||
|
|
||
|
<FocusHandler {manager} />
|
||
|
<Card
|
||
|
label={contact.string.AddMember}
|
||
|
okAction={createMember}
|
||
|
canSave={!!person}
|
||
|
on:close={() => {
|
||
|
dispatch('close')
|
||
|
}}
|
||
|
>
|
||
|
<div class="flex-row-center clear-mins">
|
||
|
<!-- <div class="mr-3">
|
||
|
<Button focusIndex={1} icon={Vacancy} size={'medium'} kind={'link-bordered'} disabled />
|
||
|
</div> -->
|
||
|
</div>
|
||
|
<svelte:fragment slot="pool">
|
||
|
<UserBox
|
||
|
focusIndex={3}
|
||
|
_class={contact.class.Person}
|
||
|
label={contact.string.Member}
|
||
|
placeholder={contact.string.Member}
|
||
|
bind:value={person}
|
||
|
kind={'no-border'}
|
||
|
size={'small'}
|
||
|
icon={contact.icon.Person}
|
||
|
create={{ component: contact.component.CreatePerson, label: contact.string.CreatePerson }}
|
||
|
/>
|
||
|
</svelte:fragment>
|
||
|
</Card>
|