// // 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 { Class, Doc, Ref, Space, TxOperations } from '@hcengineering/core' import { createOrUpdate, MigrateOperation, MigrationClient, MigrationUpgradeClient } from '@hcengineering/model' import core from '@hcengineering/model-core' import { KanbanTemplate, StateTemplate, DoneStateTemplate, genRanks, createKanban } from '@hcengineering/task' import { DOMAIN_TASK } from '.' import task from './plugin' import tags from '@hcengineering/model-tags' /** * @public */ export interface KanbanTemplateData { kanbanId: Ref space: Ref title: KanbanTemplate['title'] description?: string shortDescription?: string states: Pick[] doneStates: (Pick & { isWon: boolean })[] } /** * @public */ export async function createSequence (tx: TxOperations, _class: Ref>): Promise { if ((await tx.findOne(task.class.Sequence, { attachedTo: _class })) === undefined) { await tx.createDoc(task.class.Sequence, task.space.Sequence, { attachedTo: _class, sequence: 0 }) } } /** * @public */ export async function createKanbanTemplate ( client: TxOperations, data: KanbanTemplateData ): Promise> { const current = await client.findOne(task.class.KanbanTemplate, { _id: data.kanbanId }) if (current !== undefined) { return current._id } const tmpl = await client.createDoc( task.class.KanbanTemplate, data.space, { doneStatesC: 0, statesC: 0, title: data.title }, data.kanbanId ) const doneStateRanks = [...genRanks(data.doneStates.length)] await Promise.all( data.doneStates.map((st, i) => client.addCollection( st.isWon ? task.class.WonStateTemplate : task.class.LostStateTemplate, data.space, data.kanbanId, task.class.KanbanTemplate, 'doneStatesC', { rank: doneStateRanks[i], title: st.title } ) ) ) const stateRanks = [...genRanks(data.states.length)] await Promise.all( data.states.map((st, i) => client.addCollection(task.class.StateTemplate, data.space, data.kanbanId, task.class.KanbanTemplate, 'statesC', { rank: stateRanks[i], title: st.title, color: st.color }) ) ) return tmpl } async function createDefaultProject (tx: TxOperations): Promise { const createTx = await tx.findOne(core.class.TxCreateDoc, { objectId: task.space.TasksPublic }) if (createTx === undefined) { await tx.createDoc( task.class.Project, core.space.Space, { name: 'public', description: 'Public tasks', private: false, archived: false, members: [] }, task.space.TasksPublic ) } } async function createDefaultSequence (tx: TxOperations): Promise { const current = await tx.findOne(core.class.Space, { _id: task.space.Sequence }) if (current === undefined) { await tx.createDoc( core.class.Space, core.space.Space, { name: 'Sequences', description: 'Internal space to store sequence numbers', members: [], private: false, archived: false }, task.space.Sequence ) } } async function createDefaultKanbanTemplate (tx: TxOperations): Promise> { const defaultKanban = { states: [ { color: 9, title: 'Open' }, { color: 10, title: 'In Progress' }, { color: 1, title: 'Under review' }, { color: 0, title: 'Done' }, { color: 11, title: 'Invalid' } ], doneStates: [ { isWon: true, title: 'Won' }, { isWon: false, title: 'Lost' } ] } return await createKanbanTemplate(tx, { kanbanId: task.template.DefaultProject, space: task.space.ProjectTemplates as Ref as Ref, title: 'Default project', description: '', shortDescription: '', states: defaultKanban.states, doneStates: defaultKanban.doneStates }) } async function createDefaultKanban (tx: TxOperations): Promise { const current = await tx.findOne(task.class.Kanban, { attachedTo: task.space.TasksPublic }) if (current !== undefined) return const defaultTmpl = await createDefaultKanbanTemplate(tx) await createKanban(tx, task.space.TasksPublic, defaultTmpl) } async function createDefaults (tx: TxOperations): Promise { await createDefaultSequence(tx) await createDefaultProject(tx) await createSequence(tx, task.class.Issue) await createDefaultKanban(tx) } async function migrateTodoItems (client: MigrationClient): Promise { const assigneeTodos = await client.find(DOMAIN_TASK, { _class: task.class.TodoItem, assignee: { $exists: false } }) for (const todo of assigneeTodos) { await client.update(DOMAIN_TASK, { _id: todo._id }, { assignee: null }) } const dueToTodos = await client.find(DOMAIN_TASK, { _class: task.class.TodoItem, dueTo: { $exists: false } }) for (const todo of dueToTodos) { await client.update(DOMAIN_TASK, { _id: todo._id }, { dueTo: null }) } } export const taskOperation: MigrateOperation = { async migrate (client: MigrationClient): Promise { await Promise.all([migrateTodoItems(client)]) }, async upgrade (client: MigrationUpgradeClient): Promise { const tx = new TxOperations(client, core.account.System) await createDefaults(tx) await createOrUpdate( tx, tags.class.TagCategory, tags.space.Tags, { icon: tags.icon.Tags, label: 'Text Label', targetClass: task.class.Task, tags: [], default: true }, task.category.TaskTag ) } }