mirror of
https://github.com/plankanban/planka.git
synced 2025-07-19 05:09:43 +02:00
parent
ad7fb51cfa
commit
2ee1166747
1557 changed files with 76832 additions and 47042 deletions
114
server/api/helpers/custom-field-groups/create-one-in-card.js
Normal file
114
server/api/helpers/custom-field-groups/create-one-in-card.js
Normal file
|
@ -0,0 +1,114 @@
|
|||
/*!
|
||||
* 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,
|
||||
},
|
||||
board: {
|
||||
type: 'ref',
|
||||
required: true,
|
||||
},
|
||||
list: {
|
||||
type: 'ref',
|
||||
required: true,
|
||||
},
|
||||
actorUser: {
|
||||
type: 'ref',
|
||||
required: true,
|
||||
},
|
||||
request: {
|
||||
type: 'ref',
|
||||
},
|
||||
},
|
||||
|
||||
exits: {
|
||||
cardMustBeInValues: {},
|
||||
baseCustomFieldGroupOrNameMustBeInValues: {},
|
||||
},
|
||||
|
||||
async fn(inputs) {
|
||||
const { values } = inputs;
|
||||
|
||||
if (!values.card) {
|
||||
throw 'cardMustBeInValues';
|
||||
}
|
||||
|
||||
if (values.baseCustomFieldGroup) {
|
||||
values.baseCustomFieldGroupId = values.baseCustomFieldGroup.id;
|
||||
} else if (!values.name) {
|
||||
throw 'baseCustomFieldGroupOrNameMustBeInValues';
|
||||
}
|
||||
|
||||
const customFieldGroups = await CustomFieldGroup.qm.getByCardId(values.card.id);
|
||||
|
||||
const { position, repositions } = sails.helpers.utils.insertToPositionables(
|
||||
values.position,
|
||||
customFieldGroups,
|
||||
);
|
||||
|
||||
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.createOne({
|
||||
...values,
|
||||
position,
|
||||
cardId: values.card.id,
|
||||
});
|
||||
|
||||
sails.sockets.broadcast(
|
||||
`board:${inputs.board.id}`,
|
||||
'customFieldGroupCreate',
|
||||
{
|
||||
item: customFieldGroup,
|
||||
},
|
||||
inputs.request,
|
||||
);
|
||||
|
||||
sails.helpers.utils.sendWebhooks.with({
|
||||
event: 'customFieldGroupCreate',
|
||||
buildData: () => ({
|
||||
item: customFieldGroup,
|
||||
included: {
|
||||
projects: [inputs.project],
|
||||
boards: [inputs.board],
|
||||
lists: [inputs.list],
|
||||
cards: [values.card],
|
||||
},
|
||||
}),
|
||||
user: inputs.actorUser,
|
||||
});
|
||||
|
||||
return customFieldGroup;
|
||||
},
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue