2025-05-10 02:09:06 +02:00
|
|
|
/*!
|
|
|
|
* Copyright (c) 2024 PLANKA Software GmbH
|
|
|
|
* Licensed under the Fair Use License: https://github.com/plankanban/planka/blob/master/LICENSE.md
|
|
|
|
*/
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
inputs: {
|
|
|
|
record: {
|
|
|
|
type: 'ref',
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
values: {
|
|
|
|
type: 'json',
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
project: {
|
|
|
|
type: 'ref',
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
board: {
|
|
|
|
type: 'ref',
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
list: {
|
|
|
|
type: 'ref',
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
card: {
|
|
|
|
type: 'ref',
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
actorUser: {
|
|
|
|
type: 'ref',
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
request: {
|
|
|
|
type: 'ref',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
exits: {
|
|
|
|
nameInValuesMustNotBeNull: {},
|
|
|
|
},
|
|
|
|
|
|
|
|
async fn(inputs) {
|
|
|
|
const { values } = inputs;
|
|
|
|
|
|
|
|
if (!inputs.record.baseCustomFieldGroupId && _.isNull(values.name)) {
|
|
|
|
throw 'nameInValuesMustNotBeNull';
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!_.isUndefined(values.position)) {
|
|
|
|
const customFieldGroups = await CustomFieldGroup.qm.getByCardId(inputs.record.cardId, {
|
|
|
|
exceptIdOrIds: inputs.record.id,
|
|
|
|
});
|
|
|
|
|
|
|
|
const { position, repositions } = sails.helpers.utils.insertToPositionables(
|
|
|
|
values.position,
|
|
|
|
customFieldGroups,
|
|
|
|
);
|
|
|
|
|
|
|
|
values.position = position;
|
|
|
|
|
|
|
|
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 CustomFieldGroup.qm.updateOne(
|
|
|
|
{
|
|
|
|
id: reposition.record.id,
|
|
|
|
cardId: reposition.record.cardId,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
position: reposition.position,
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
|
|
|
sails.sockets.broadcast(`board:${inputs.board.id}`, 'customFieldGroupUpdate', {
|
|
|
|
item: {
|
|
|
|
id: reposition.record.id,
|
|
|
|
position: reposition.position,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
// TODO: send webhooks
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const customFieldGroup = await CustomFieldGroup.qm.updateOne(inputs.record.id, values);
|
|
|
|
|
|
|
|
if (customFieldGroup) {
|
|
|
|
sails.sockets.broadcast(
|
|
|
|
`board:${inputs.board.id}`,
|
|
|
|
'customFieldGroupUpdate',
|
|
|
|
{
|
|
|
|
item: customFieldGroup,
|
|
|
|
},
|
|
|
|
inputs.request,
|
|
|
|
);
|
|
|
|
|
2025-07-04 22:04:11 +02:00
|
|
|
const webhooks = await Webhook.qm.getAll();
|
|
|
|
|
2025-05-10 02:09:06 +02:00
|
|
|
sails.helpers.utils.sendWebhooks.with({
|
2025-07-04 22:04:11 +02:00
|
|
|
webhooks,
|
|
|
|
event: Webhook.Events.CUSTOM_FIELD_GROUP_UPDATE,
|
2025-05-10 02:09:06 +02:00
|
|
|
buildData: () => ({
|
|
|
|
item: customFieldGroup,
|
|
|
|
included: {
|
|
|
|
projects: [inputs.project],
|
|
|
|
boards: [inputs.board],
|
|
|
|
lists: [inputs.list],
|
|
|
|
cards: [inputs.card],
|
|
|
|
},
|
|
|
|
}),
|
|
|
|
buildPrevData: () => ({
|
|
|
|
item: inputs.record,
|
|
|
|
}),
|
|
|
|
user: inputs.actorUser,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
return customFieldGroup;
|
|
|
|
},
|
|
|
|
};
|