platform/models/task/src/creation.ts
Ilya Sumbatyants d5c2c07b9e
Introduce createDeps (#702)
Signed-off-by: Ilya Sumbatyants <ilya.sumb@gmail.com>
2021-12-22 10:04:07 +01:00

118 lines
3.3 KiB
TypeScript

//
// Copyright © 2020, 2021 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.
//
import core, { TxOperations } from '@anticrm/core'
import type { Client, Ref, Space } from '@anticrm/core'
import { createKanban, genRanks } from '@anticrm/task'
import type { DoneStateTemplate, KanbanTemplate, StateTemplate } from '@anticrm/task'
import task from './plugin'
export async function createDeps (client: Client): Promise<void> {
const tx = new TxOperations(client, core.account.System)
await tx.createDoc(
task.class.Sequence,
task.space.Sequence,
{
attachedTo: task.class.Issue,
sequence: 0
}
)
const defaultTmpl = await createDefaultKanbanTemplate(tx)
await createKanban(tx, task.space.TasksPublic, defaultTmpl)
}
const defaultKanban = {
states: [
{ color: '#7C6FCD', title: 'Open' },
{ color: '#6F7BC5', title: 'In Progress' },
{ color: '#77C07B', title: 'Under review' },
{ color: '#A5D179', title: 'Done' },
{ color: '#F28469', title: 'Invalid' }
],
doneStates: [
{ isWon: true, title: 'Won' },
{ isWon: false, title: 'Lost' }
]
}
/**
* @public
*/
export interface KanbanTemplateData {
kanbanId: Ref<KanbanTemplate>
space: Ref<Space>
title: KanbanTemplate['title']
states: Pick<StateTemplate, 'title' | 'color'>[]
doneStates: (Pick<DoneStateTemplate, 'title'> & { isWon: boolean })[]
}
/**
* @public
*/
export async function createKanbanTemplate (client: TxOperations, data: KanbanTemplateData): Promise<Ref<KanbanTemplate>> {
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
}
const createDefaultKanbanTemplate = async (client: TxOperations): Promise<Ref<KanbanTemplate>> =>
await createKanbanTemplate(client, {
kanbanId: task.template.DefaultProject,
space: task.space.ProjectTemplates,
title: 'Default project',
states: defaultKanban.states,
doneStates: defaultKanban.doneStates
})