1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-19 21:29:43 +02:00
planka/server/api/helpers/update-board.js
2019-08-31 04:07:25 +05:00

73 lines
1.6 KiB
JavaScript

module.exports = {
inputs: {
record: {
type: 'ref',
required: true
},
values: {
type: 'json',
custom: value =>
_.isPlainObject(value) &&
(_.isUndefined(value.position) || _.isFinite(value.position)),
required: true
},
request: {
type: 'ref'
}
},
fn: async function(inputs, exits) {
const userIds = await sails.helpers.getMembershipUserIdsForProject(
inputs.record.projectId
);
if (!_.isUndefined(inputs.values.position)) {
const boards = await sails.helpers.getBoardsForProject(
inputs.record.projectId,
inputs.record.id
);
const { position, repositions } = sails.helpers.insertToPositionables(
inputs.values.position,
boards
);
inputs.values.position = position;
repositions.forEach(async ({ id, position }) => {
await Board.update({
id,
projectId: inputs.record.projectId
}).set({
position
});
userIds.forEach(userId => {
sails.sockets.broadcast(`user:${userId}`, 'boardUpdate', {
item: {
id,
position
}
});
});
});
}
const board = await Board.updateOne(inputs.record.id).set(inputs.values);
if (board) {
userIds.forEach(userId => {
sails.sockets.broadcast(
`user:${userId}`,
'boardUpdate',
{
item: board
},
inputs.request
);
});
}
return exits.success(board);
}
};