1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-19 13:19:44 +02:00
planka/server/api/helpers/labels/create-one.js

93 lines
1.9 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: 'ref',
required: true,
},
project: {
type: 'ref',
required: true,
},
actorUser: {
type: 'ref',
required: true,
},
webhooks: {
type: 'ref',
},
request: {
type: 'ref',
},
},
async fn(inputs) {
const { values } = inputs;
const labels = await Label.qm.getByBoardId(values.board.id);
const { position, repositions } = sails.helpers.utils.insertToPositionables(
values.position,
labels,
);
// eslint-disable-next-line no-restricted-syntax
for (const reposition of repositions) {
// eslint-disable-next-line no-await-in-loop
await Label.qm.updateOne(
{
id: reposition.record.id,
boardId: reposition.record.boardId,
},
{
position: reposition.position,
},
);
sails.sockets.broadcast(`board:${values.board.id}`, 'labelUpdate', {
item: {
id: reposition.record.id,
position: reposition.position,
},
});
// TODO: send webhooks
}
const label = await Label.qm.createOne({
...values,
position,
boardId: values.board.id,
});
sails.sockets.broadcast(
`board:${label.boardId}`,
'labelCreate',
{
item: label,
},
inputs.request,
);
const { webhooks = await Webhook.qm.getAll() } = inputs;
sails.helpers.utils.sendWebhooks.with({
webhooks,
event: Webhook.Events.LABEL_CREATE,
buildData: () => ({
item: label,
included: {
projects: [inputs.project],
boards: [values.board],
},
}),
user: inputs.actorUser,
});
return label;
},
};