platform/models/recruit/src/migration.ts
Vyacheslav Tumanov 9a7f75c1ed
ATS-9: update states once template updates (#3496)
Signed-off-by: Vyacheslav Tumanov <me@slavatumanov.me>
2023-07-13 10:01:28 +06:00

166 lines
5.1 KiB
TypeScript

//
// 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.
//
import { getCategories } from '@anticrm/skillset'
import core, { Doc, Ref, Space, TxOperations } from '@hcengineering/core'
import { MigrateOperation, MigrationClient, MigrationUpgradeClient, createOrUpdate } from '@hcengineering/model'
import tags, { TagCategory } from '@hcengineering/model-tags'
import { createKanbanTemplate, createSequence } from '@hcengineering/model-task'
import task, { KanbanTemplate } from '@hcengineering/task'
import { PaletteColorIndexes } from '@hcengineering/ui/src/colors'
import recruit from './plugin'
export const recruitOperation: MigrateOperation = {
async migrate (client: MigrationClient): Promise<void> {},
async upgrade (client: MigrationUpgradeClient): Promise<void> {
const tx = new TxOperations(client, core.account.System)
await createDefaults(tx)
await fixTemplateSpace(tx)
}
}
async function fixTemplateSpace (tx: TxOperations): Promise<void> {
const templateSpace = await tx.findOne(task.class.KanbanTemplateSpace, { _id: recruit.space.VacancyTemplates })
if (templateSpace !== undefined && templateSpace?.attachedToClass === undefined) {
await tx.update(templateSpace, { attachedToClass: recruit.class.Vacancy })
}
}
async function createDefaults (tx: TxOperations): Promise<void> {
await createSpaces(tx)
await createOrUpdate(
tx,
tags.class.TagCategory,
tags.space.Tags,
{
icon: recruit.icon.Skills,
label: 'Other',
targetClass: recruit.mixin.Candidate,
tags: [],
default: true
},
recruit.category.Other
)
for (const c of getCategories()) {
await createOrUpdate(
tx,
tags.class.TagCategory,
tags.space.Tags,
{
icon: recruit.icon.Skills,
label: c.label,
targetClass: recruit.mixin.Candidate,
tags: c.skills,
default: false
},
(recruit.category.Category + '.' + c.id) as Ref<TagCategory>
)
}
await createSequence(tx, recruit.class.Review)
await createSequence(tx, recruit.class.Opinion)
await createSequence(tx, recruit.class.Applicant)
await createSequence(tx, recruit.class.Vacancy)
await createDefaultKanbanTemplate(tx)
}
async function createDefaultKanbanTemplate (tx: TxOperations): Promise<Ref<KanbanTemplate>> {
const defaultKanban = {
states: [
{ color: PaletteColorIndexes.Coin, name: 'HR Interview' },
{ color: PaletteColorIndexes.Cerulean, name: 'Technical Interview' },
{ color: PaletteColorIndexes.Waterway, name: 'Test task' },
{ color: PaletteColorIndexes.Grass, name: 'Offer' }
],
doneStates: [
{ isWon: true, name: 'Won' },
{ isWon: false, name: 'Lost' }
]
}
return await createKanbanTemplate(tx, {
kanbanId: recruit.template.DefaultVacancy,
space: recruit.space.VacancyTemplates as Ref<Doc> as Ref<Space>,
title: 'Default vacancy',
description: '',
shortDescription: '',
states: defaultKanban.states,
doneStates: defaultKanban.doneStates
})
}
async function createSpaces (tx: TxOperations): Promise<void> {
const current = await tx.findOne(core.class.Space, {
_id: recruit.space.CandidatesPublic
})
if (current === undefined) {
await tx.createDoc(
recruit.class.Candidates,
core.space.Space,
{
name: 'public',
description: 'Public Candidates',
private: false,
members: [],
archived: false
},
recruit.space.CandidatesPublic
)
}
const currentReviews = await tx.findOne(core.class.Space, {
_id: recruit.space.Reviews
})
if (currentReviews === undefined) {
await tx.createDoc(
core.class.Space,
core.space.Space,
{
name: 'Reviews',
description: 'Public reviews',
private: false,
members: [],
archived: false
},
recruit.space.Reviews
)
} else if (currentReviews.private) {
await tx.update(currentReviews, { private: false })
}
const currentTemplate = await tx.findOne(core.class.Space, {
_id: recruit.space.VacancyTemplates
})
if (currentTemplate === undefined) {
await tx.createDoc(
task.class.KanbanTemplateSpace,
core.space.Space,
{
name: recruit.string.Vacancies,
description: recruit.string.ManageVacancyStatuses,
icon: recruit.component.TemplatesIcon,
editor: recruit.component.VacancyTemplateEditor,
private: false,
members: [],
archived: false,
attachedToClass: recruit.class.Vacancy
},
recruit.space.VacancyTemplates
)
}
}