1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-24 07:39:44 +02:00

feat: Implemented moving a list between boards with instant UI update. Fixed authorization for socket requests (automatic token injection). After moving a list, user is automatically switched to the target board. Added translations for the new move list action to all locale files.

This commit is contained in:
symonbaikov 2025-06-11 14:17:12 +03:00
parent 18c7ff093b
commit 9c08ce51f1
39 changed files with 331 additions and 171 deletions

View file

@ -0,0 +1,66 @@
module.exports = {
inputs: {
list: {
type: 'ref',
required: true,
},
targetBoard: {
type: 'ref',
required: true,
},
actorUser: {
type: 'ref',
required: true,
},
request: {
type: 'ref',
},
},
async fn(inputs) {
const updatedList = await List.updateOne(
{ id: inputs.list.id },
{ boardId: inputs.targetBoard.id },
);
const updatedCards = await Card.update(
{ listId: inputs.list.id },
{ boardId: inputs.targetBoard.id },
).fetch();
const migrateLabelsPromises = updatedCards.map(async (card) => {
const cardLabels = await CardLabel.find({ cardId: card.id });
return Promise.all(
cardLabels.map(async (cardLabel) => {
const oldLabel = await Label.findOne({ id: cardLabel.labelId });
if (!oldLabel) return;
let newLabel = await Label.findOne({
boardId: inputs.targetBoard.id,
name: oldLabel.name,
color: oldLabel.color,
});
if (!newLabel) {
const maxPosArr = await Label.find({ boardId: inputs.targetBoard.id })
.sort('position DESC')
.limit(1);
const maxPos = maxPosArr.length > 0 ? maxPosArr[0].position : 0;
newLabel = await Label.create({
boardId: inputs.targetBoard.id,
name: oldLabel.name,
color: oldLabel.color,
position: maxPos + 65536,
}).fetch();
}
await CardLabel.destroy({ cardId: card.id, labelId: cardLabel.labelId });
await CardLabel.create({ cardId: card.id, labelId: newLabel.id });
}),
);
});
await Promise.all(migrateLabelsPromises);
return {
updatedList,
updatedCards,
};
},
};