platform/plugins/recruit-resources/src/components/CreateApplication.svelte

72 lines
2.4 KiB
Svelte
Raw Normal View History

<!--
// Copyright © 2020 Anticrm Platform Contributors.
//
// 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 { createEventDispatcher } from 'svelte'
import type { Ref, Space } from '@anticrm/core'
import { DatePicker, EditBox, Tabs, Section, Grid, Row, Button, IconFile } from '@anticrm/ui'
import { UserBox, Card, UserInfo, Avatar } from '@anticrm/presentation'
import type { Employee, Person } from '@anticrm/contact'
import Address from './icons/Address.svelte'
import Attachment from './icons/Attachment.svelte'
import { getClient } from '@anticrm/presentation'
import core from '@anticrm/core'
import recruit from '../plugin'
import contact from '@anticrm/contact'
export let space: Ref<Space>
export let candidate: Ref<Person> // | null = null
export let employee: Ref<Employee> // | null = null
export let preserveCandidate = false
let _space = space
const dispatch = createEventDispatcher()
const client = getClient()
async function createApplication() {
const state = await client.findOne(core.class.State, { space: _space })
if (state === undefined) {
throw new Error('create application: state not found')
}
await client.createDoc(recruit.class.Applicant, _space, {
candidate,
state: state._id
})
dispatch('close')
}
</script>
<Card label={'Create Application'}
okLabel={'Save'}
okAction={createApplication}
canSave={candidate !== undefined}
spaceClass={recruit.class.Vacancy}
spaceLabel={'Vacancy'}
spacePlaceholder={'Select vacancy'}
bind:space={_space}
on:close={() => { dispatch('close') }}>
<Grid column={1} rowGap={1.75}>
{#if !preserveCandidate}
<UserBox _class={recruit.class.Candidate} title='Candidate' caption='Candidates' bind:value={candidate} />
{/if}
<UserBox _class={contact.class.Employee} title='Assigned recruiter' caption='Recruiters' bind:value={employee} />
</Grid>
</Card>