2021-08-07 17:03:06 +00:00
|
|
|
<!--
|
|
|
|
// 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'
|
2021-11-02 08:45:08 +00:00
|
|
|
import { EditBox, Grid, Dropdown } from '@anticrm/ui'
|
2021-08-07 17:03:06 +00:00
|
|
|
|
2021-11-02 08:45:08 +00:00
|
|
|
import { getClient, SpaceCreateCard } from '@anticrm/presentation'
|
|
|
|
import Company from './icons/Company.svelte'
|
|
|
|
import Vacancy from './icons/Vacancy.svelte'
|
2021-08-07 17:03:06 +00:00
|
|
|
|
|
|
|
import recruit from '../plugin'
|
|
|
|
import core from '@anticrm/core'
|
2021-10-08 14:49:46 +00:00
|
|
|
import view from '@anticrm/view'
|
2021-08-07 17:03:06 +00:00
|
|
|
|
|
|
|
const dispatch = createEventDispatcher()
|
|
|
|
|
|
|
|
let name: string = ''
|
|
|
|
let description: string = ''
|
|
|
|
|
2021-11-04 11:17:59 +00:00
|
|
|
export function canClose(): boolean {
|
|
|
|
return name === ''
|
|
|
|
}
|
|
|
|
|
2021-08-07 17:03:06 +00:00
|
|
|
const client = getClient()
|
|
|
|
|
2021-09-17 08:28:15 +00:00
|
|
|
const colors = [
|
|
|
|
'#7C6FCD',
|
|
|
|
'#6F7BC5',
|
|
|
|
'#A5D179',
|
|
|
|
'#77C07B',
|
|
|
|
'#F28469'
|
|
|
|
]
|
|
|
|
|
2021-09-05 12:03:33 +00:00
|
|
|
async function createVacancy() {
|
|
|
|
const id = await client.createDoc(recruit.class.Vacancy, core.space.Model, {
|
2021-08-07 17:03:06 +00:00
|
|
|
name,
|
|
|
|
description,
|
|
|
|
private: false,
|
2021-12-02 09:09:37 +00:00
|
|
|
members: []
|
2021-08-07 17:03:06 +00:00
|
|
|
})
|
2021-09-22 08:41:03 +00:00
|
|
|
const s1 = await client.createDoc(core.class.State, id, {
|
2021-09-17 08:28:15 +00:00
|
|
|
title: 'Initial',
|
|
|
|
color: colors[0]
|
2021-09-05 12:03:33 +00:00
|
|
|
})
|
2021-09-22 08:41:03 +00:00
|
|
|
const s2 = await client.createDoc(core.class.State, id, {
|
|
|
|
title: 'Interview 1',
|
2021-09-17 08:28:15 +00:00
|
|
|
color: colors[1]
|
2021-09-05 12:03:33 +00:00
|
|
|
})
|
2021-09-22 08:41:03 +00:00
|
|
|
const s3 = await client.createDoc(core.class.State, id, {
|
|
|
|
title: 'Interview 2',
|
2021-09-17 08:28:15 +00:00
|
|
|
color: colors[2]
|
2021-09-05 12:03:33 +00:00
|
|
|
})
|
2021-09-22 08:41:03 +00:00
|
|
|
const s4 = await client.createDoc(core.class.State, id, {
|
|
|
|
title: 'Interview 3',
|
|
|
|
color: colors[3]
|
|
|
|
})
|
|
|
|
const s5 = await client.createDoc(core.class.State, id, {
|
|
|
|
title: 'Interview 4',
|
|
|
|
color: colors[4]
|
|
|
|
})
|
|
|
|
const s6 = await client.createDoc(core.class.State, id, {
|
|
|
|
title: 'Final',
|
|
|
|
color: colors[0]
|
|
|
|
})
|
2021-10-09 15:02:32 +00:00
|
|
|
// await client.updateDoc(recruit.class.Vacancy, core.space.Model, id, {
|
|
|
|
// })
|
2021-10-08 14:49:46 +00:00
|
|
|
await client.createDoc(view.class.Kanban, id, {
|
|
|
|
attachedTo: id,
|
2021-10-09 15:02:32 +00:00
|
|
|
states: [s1, s2, s3, s4, s5, s6],
|
2021-10-08 14:49:46 +00:00
|
|
|
order: []
|
|
|
|
})
|
2021-08-07 17:03:06 +00:00
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
2021-11-02 08:45:08 +00:00
|
|
|
<SpaceCreateCard
|
|
|
|
label={recruit.string.CreateVacancy}
|
|
|
|
okAction={createVacancy}
|
|
|
|
canSave={name ? true : false}
|
|
|
|
on:close={() => { dispatch('close') }}
|
|
|
|
>
|
|
|
|
<Grid column={1} rowGap={1.5}>
|
2021-11-03 14:59:24 +00:00
|
|
|
<EditBox label={recruit.string.VacancyName} bind:value={name} icon={Vacancy} placeholder="Software Engineer" maxWidth="39rem" focus/>
|
|
|
|
<Dropdown icon={Company} label={'Company *'} placeholder={'Company'} />
|
2021-11-02 08:45:08 +00:00
|
|
|
</Grid>
|
|
|
|
</SpaceCreateCard>
|