mirror of
https://github.com/plankanban/planka.git
synced 2025-07-19 21:29:43 +02:00
115 lines
2.7 KiB
JavaScript
115 lines
2.7 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: {
|
|
record: {
|
|
type: 'ref',
|
|
required: true,
|
|
},
|
|
values: {
|
|
type: 'json',
|
|
required: true,
|
|
},
|
|
project: {
|
|
type: 'ref',
|
|
required: true,
|
|
},
|
|
baseCustomFieldGroup: {
|
|
type: 'ref',
|
|
required: true,
|
|
},
|
|
actorUser: {
|
|
type: 'ref',
|
|
required: true,
|
|
},
|
|
request: {
|
|
type: 'ref',
|
|
},
|
|
},
|
|
|
|
async fn(inputs) {
|
|
const { values } = inputs;
|
|
|
|
const scoper = sails.helpers.projects.makeScoper.with({
|
|
record: inputs.project,
|
|
});
|
|
|
|
const customFieldGroupRelatedUserIds = await scoper.getProjectRelatedUserIds();
|
|
|
|
if (!_.isUndefined(values.position)) {
|
|
const customFields = await CustomField.qm.getByBaseCustomFieldGroupId(
|
|
inputs.record.baseCustomFieldGroupId,
|
|
{
|
|
exceptIdOrIds: inputs.record.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,
|
|
baseCustomFieldGroupId: reposition.record.baseCustomFieldGroupId,
|
|
},
|
|
{
|
|
position: reposition.position,
|
|
},
|
|
);
|
|
|
|
customFieldGroupRelatedUserIds.forEach((userId) => {
|
|
sails.sockets.broadcast(`user:${userId}`, 'customFieldUpdate', {
|
|
item: {
|
|
id: reposition.record.id,
|
|
position: reposition.position,
|
|
},
|
|
});
|
|
});
|
|
|
|
// TODO: send webhooks
|
|
}
|
|
}
|
|
|
|
const customField = await CustomField.qm.updateOne(inputs.record.id, values);
|
|
|
|
if (customField) {
|
|
customFieldGroupRelatedUserIds.forEach((userId) => {
|
|
sails.sockets.broadcast(
|
|
`user:${userId}`,
|
|
'customFieldUpdate',
|
|
{
|
|
item: customField,
|
|
},
|
|
inputs.request,
|
|
);
|
|
});
|
|
|
|
sails.helpers.utils.sendWebhooks.with({
|
|
event: 'customFieldUpdate',
|
|
buildData: () => ({
|
|
item: customField,
|
|
included: {
|
|
projects: [inputs.project],
|
|
baseCustomFieldGroups: [inputs.baseCustomFieldGroup],
|
|
},
|
|
}),
|
|
buildPrevData: () => ({
|
|
item: inputs.record,
|
|
}),
|
|
user: inputs.actorUser,
|
|
});
|
|
}
|
|
|
|
return customField;
|
|
},
|
|
};
|