mirror of
https://github.com/plankanban/planka.git
synced 2025-07-19 13:19:44 +02:00
102 lines
2.1 KiB
JavaScript
102 lines
2.1 KiB
JavaScript
/*!
|
|
* Copyright (c) 2024 PLANKA Software GmbH
|
|
* Licensed under the Fair Use License: https://github.com/plankanban/planka/blob/master/LICENSE.md
|
|
*/
|
|
|
|
module.exports = {
|
|
inputs: {
|
|
values: {
|
|
type: 'json',
|
|
required: true,
|
|
},
|
|
project: {
|
|
type: 'ref',
|
|
required: true,
|
|
},
|
|
board: {
|
|
type: 'ref',
|
|
required: true,
|
|
},
|
|
list: {
|
|
type: 'ref',
|
|
required: true,
|
|
},
|
|
actorUser: {
|
|
type: 'ref',
|
|
required: true,
|
|
},
|
|
request: {
|
|
type: 'ref',
|
|
},
|
|
},
|
|
|
|
async fn(inputs) {
|
|
const { values } = inputs;
|
|
|
|
const taskLists = await TaskList.qm.getByCardId(values.card.id);
|
|
|
|
const { position, repositions } = sails.helpers.utils.insertToPositionables(
|
|
values.position,
|
|
taskLists,
|
|
);
|
|
|
|
if (repositions.length > 0) {
|
|
// eslint-disable-next-line no-restricted-syntax
|
|
for (const reposition of repositions) {
|
|
// eslint-disable-next-line no-await-in-loop
|
|
await TaskList.qm.updateOne(
|
|
{
|
|
id: reposition.record.id,
|
|
cardId: reposition.record.cardId,
|
|
},
|
|
{
|
|
position: reposition.position,
|
|
},
|
|
);
|
|
|
|
sails.sockets.broadcast(`board:${inputs.board.id}`, 'taskListUpdate', {
|
|
item: {
|
|
id: reposition.record.id,
|
|
position: reposition.position,
|
|
},
|
|
});
|
|
|
|
// TODO: send webhooks
|
|
}
|
|
}
|
|
|
|
const taskList = await TaskList.qm.createOne({
|
|
...values,
|
|
position,
|
|
cardId: values.card.id,
|
|
});
|
|
|
|
sails.sockets.broadcast(
|
|
`board:${inputs.board.id}`,
|
|
'taskListCreate',
|
|
{
|
|
item: taskList,
|
|
},
|
|
inputs.request,
|
|
);
|
|
|
|
const webhooks = await Webhook.qm.getAll();
|
|
|
|
sails.helpers.utils.sendWebhooks.with({
|
|
webhooks,
|
|
event: Webhook.Events.TASK_LIST_CREATE,
|
|
buildData: () => ({
|
|
item: taskList,
|
|
included: {
|
|
projects: [inputs.project],
|
|
boards: [inputs.board],
|
|
lists: [inputs.list],
|
|
cards: [values.card],
|
|
},
|
|
}),
|
|
user: inputs.actorUser,
|
|
});
|
|
|
|
return taskList;
|
|
},
|
|
};
|