1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-19 05:09:43 +02:00
planka/server/api/helpers/tasks/update-one.js

157 lines
3.5 KiB
JavaScript
Raw Normal View History

/*!
* Copyright (c) 2024 PLANKA Software GmbH
* Licensed under the Fair Use License: https://github.com/plankanban/planka/blob/master/LICENSE.md
*/
2022-12-26 21:10:50 +01:00
2019-08-31 04:07:25 +05:00
module.exports = {
inputs: {
record: {
type: 'ref',
required: true,
2019-08-31 04:07:25 +05:00
},
values: {
type: 'json',
required: true,
2019-08-31 04:07:25 +05:00
},
project: {
type: 'ref',
required: true,
},
2019-08-31 04:07:25 +05:00
board: {
type: 'ref',
required: true,
2019-08-31 04:07:25 +05:00
},
list: {
type: 'ref',
required: true,
},
card: {
type: 'ref',
required: true,
},
taskList: {
type: 'ref',
required: true,
},
actorUser: {
type: 'ref',
required: true,
},
2019-08-31 04:07:25 +05:00
request: {
type: 'ref',
},
2019-08-31 04:07:25 +05:00
},
exits: {
taskListInValuesMustBelongToCard: {},
},
// TODO: use normalizeValues
async fn(inputs) {
2022-12-26 21:10:50 +01:00
const { values } = inputs;
if (values.taskList) {
if (values.taskList.cardId !== inputs.card.id) {
throw 'taskListInValuesMustBelongToCard';
}
if (values.taskList.id === inputs.taskList.id) {
delete values.taskList;
} else {
values.taskListId = values.taskList.id;
}
}
const taskList = values.taskList || inputs.taskList;
2022-12-26 21:10:50 +01:00
if (!_.isUndefined(values.position)) {
const tasks = await Task.qm.getByTaskListId(taskList.id, {
exceptIdOrIds: inputs.record.id,
});
const { position, repositions } = sails.helpers.utils.insertToPositionables(
2022-12-26 21:10:50 +01:00
values.position,
tasks,
);
2022-12-26 21:10:50 +01:00
values.position = position;
// eslint-disable-next-line no-restricted-syntax
for (const reposition of repositions) {
// eslint-disable-next-line no-await-in-loop
await Task.qm.updateOne(
{
id: reposition.record.id,
taskListId: reposition.record.taskListId,
},
{
position: reposition.position,
},
);
sails.sockets.broadcast(`board:${inputs.board.id}`, 'taskUpdate', {
item: {
id: reposition.record.id,
position: reposition.position,
},
});
// TODO: send webhooks
}
}
const task = await Task.qm.updateOne(inputs.record.id, values);
2019-08-31 04:07:25 +05:00
if (task) {
sails.sockets.broadcast(
`board:${inputs.board.id}`,
'taskUpdate',
{
item: task,
2019-08-31 04:07:25 +05:00
},
inputs.request,
2019-08-31 04:07:25 +05:00
);
sails.helpers.utils.sendWebhooks.with({
event: 'taskUpdate',
buildData: () => ({
item: task,
included: {
projects: [inputs.project],
boards: [inputs.board],
lists: [inputs.list],
cards: [inputs.card],
taskLists: [taskList],
},
}),
buildPrevData: () => ({
item: inputs.record,
included: {
taskLists: [inputs.taskList],
},
}),
user: inputs.actorUser,
});
if (inputs.record.isCompleted !== task.isCompleted) {
await sails.helpers.actions.createOne.with({
values: {
type: task.isCompleted ? Action.Types.COMPLETE_TASK : Action.Types.UNCOMPLETE_TASK,
data: {
2025-05-22 23:14:46 +02:00
card: _.pick(inputs.card, ['name']),
task: _.pick(task, ['id', 'name']),
},
user: inputs.actorUser,
card: inputs.card,
},
project: inputs.project,
board: inputs.board,
list: inputs.list,
});
}
2019-08-31 04:07:25 +05:00
}
return task;
},
2019-08-31 04:07:25 +05:00
};