mirror of
https://github.com/plankanban/planka.git
synced 2025-07-19 13:19:44 +02:00
130 lines
2.8 KiB
JavaScript
130 lines
2.8 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,
|
|
},
|
|
board: {
|
|
type: 'ref',
|
|
required: true,
|
|
},
|
|
list: {
|
|
type: 'ref',
|
|
},
|
|
card: {
|
|
type: 'ref',
|
|
},
|
|
actorUser: {
|
|
type: 'ref',
|
|
required: true,
|
|
},
|
|
request: {
|
|
type: 'ref',
|
|
},
|
|
},
|
|
|
|
exits: {
|
|
customFieldGroupMustBeInValues: {},
|
|
listMustBePresent: {},
|
|
cardMustBePresent: {},
|
|
},
|
|
|
|
async fn(inputs) {
|
|
const { values } = inputs;
|
|
|
|
if (!values.customFieldGroup) {
|
|
throw 'customFieldGroupMustBeInValues';
|
|
}
|
|
|
|
if (values.customFieldGroup.cardId) {
|
|
if (!inputs.list) {
|
|
throw 'listMustBePresent';
|
|
}
|
|
|
|
if (!inputs.card) {
|
|
throw 'cardMustBePresent';
|
|
}
|
|
}
|
|
|
|
if (!_.isUndefined(values.position)) {
|
|
const customFields = await CustomField.qm.getByCustomFieldGroupId(values.customFieldGroup.id);
|
|
|
|
const { position, repositions } = sails.helpers.utils.insertToPositionables(
|
|
values.position,
|
|
customFields,
|
|
);
|
|
|
|
values.position = position;
|
|
|
|
// eslint-disable-next-line no-restricted-syntax
|
|
for (const reposition of repositions) {
|
|
// eslint-disable-next-line no-await-in-loop
|
|
await CustomField.qm.updateOne(
|
|
{
|
|
id: reposition.record.id,
|
|
customFieldGroupId: reposition.record.customFieldGroupId,
|
|
},
|
|
{
|
|
position: reposition.position,
|
|
},
|
|
);
|
|
|
|
sails.sockets.broadcast(`board:${inputs.board.id}`, 'customFieldUpdate', {
|
|
item: {
|
|
id: reposition.record.id,
|
|
position: reposition.position,
|
|
},
|
|
});
|
|
|
|
// TODO: send webhooks
|
|
}
|
|
}
|
|
|
|
const customField = await CustomField.qm.createOne({
|
|
...values,
|
|
customFieldGroupId: values.customFieldGroup.id,
|
|
});
|
|
|
|
sails.sockets.broadcast(
|
|
`board:${inputs.board.id}`,
|
|
'customFieldCreate',
|
|
{
|
|
item: customField,
|
|
},
|
|
inputs.request,
|
|
);
|
|
|
|
const webhooks = await Webhook.qm.getAll();
|
|
|
|
sails.helpers.utils.sendWebhooks.with({
|
|
webhooks,
|
|
event: Webhook.Events.CUSTOM_FIELD_CREATE,
|
|
buildData: () => ({
|
|
item: customField,
|
|
included: {
|
|
projects: [inputs.project],
|
|
boards: [inputs.board],
|
|
customFieldGroups: [values.customFieldGroup],
|
|
...(inputs.list && {
|
|
lists: [inputs.list],
|
|
}),
|
|
...(inputs.card && {
|
|
cards: [inputs.card],
|
|
}),
|
|
},
|
|
}),
|
|
user: inputs.actorUser,
|
|
});
|
|
|
|
return customField;
|
|
},
|
|
};
|