mirror of
https://github.com/plankanban/planka.git
synced 2025-07-19 05:09:43 +02:00
109 lines
2.3 KiB
JavaScript
109 lines
2.3 KiB
JavaScript
const valuesValidator = (value) => {
|
|
if (!_.isPlainObject(value)) {
|
|
return false;
|
|
}
|
|
|
|
if (!_.isUndefined(value.position) && !_.isFinite(value.position)) {
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
};
|
|
|
|
module.exports = {
|
|
inputs: {
|
|
record: {
|
|
type: 'ref',
|
|
required: true,
|
|
},
|
|
values: {
|
|
type: 'json',
|
|
custom: valuesValidator,
|
|
required: true,
|
|
},
|
|
project: {
|
|
type: 'ref',
|
|
required: true,
|
|
},
|
|
actorUser: {
|
|
type: 'ref',
|
|
required: true,
|
|
},
|
|
request: {
|
|
type: 'ref',
|
|
},
|
|
},
|
|
|
|
async fn(inputs) {
|
|
const { values } = inputs;
|
|
|
|
const projectManagerUserIds = await sails.helpers.projects.getManagerUserIds(
|
|
inputs.record.projectId,
|
|
);
|
|
|
|
const boardMemberUserIds = await sails.helpers.boards.getMemberUserIds(inputs.record.id);
|
|
const boardRelatedUserIds = _.union(projectManagerUserIds, boardMemberUserIds);
|
|
|
|
if (!_.isUndefined(values.position)) {
|
|
const boards = await sails.helpers.projects.getBoards(
|
|
inputs.record.projectId,
|
|
inputs.record.id,
|
|
);
|
|
|
|
const { position, repositions } = sails.helpers.utils.insertToPositionables(
|
|
values.position,
|
|
boards,
|
|
);
|
|
|
|
values.position = position;
|
|
|
|
repositions.forEach(async ({ id, position: nextPosition }) => {
|
|
await Board.update({
|
|
id,
|
|
projectId: inputs.record.projectId,
|
|
}).set({
|
|
position: nextPosition,
|
|
});
|
|
|
|
boardRelatedUserIds.forEach((userId) => {
|
|
sails.sockets.broadcast(`user:${userId}`, 'boardUpdate', {
|
|
item: {
|
|
id,
|
|
position: nextPosition,
|
|
},
|
|
});
|
|
|
|
// TODO: send webhooks
|
|
});
|
|
});
|
|
}
|
|
|
|
const board = await Board.updateOne(inputs.record.id).set({ ...values });
|
|
|
|
if (board) {
|
|
boardRelatedUserIds.forEach((userId) => {
|
|
sails.sockets.broadcast(
|
|
`user:${userId}`,
|
|
'boardUpdate',
|
|
{
|
|
item: board,
|
|
},
|
|
inputs.request,
|
|
);
|
|
});
|
|
|
|
sails.helpers.utils.sendWebhooks.with({
|
|
event: 'boardUpdate',
|
|
data: {
|
|
item: board,
|
|
included: {
|
|
projects: [inputs.project],
|
|
},
|
|
},
|
|
user: inputs.actorUser,
|
|
});
|
|
}
|
|
|
|
return board;
|
|
},
|
|
};
|