summaryrefslogtreecommitdiffstats
path: root/models/trelloCreator.js
diff options
context:
space:
mode:
authorAndrés Manelli <andresmanelli@gmail.com>2018-02-07 01:47:18 -0300
committerAndrés Manelli <andresmanelli@gmail.com>2018-02-07 01:47:18 -0300
commit5871a478e1280818f12fcb7250b7cbccf6907cf0 (patch)
treeaa473b8f7f63ab5d336512292a9d12866128dd5a /models/trelloCreator.js
parentfcebb2a5373d6dea41b98b530c176cbee31bee4b (diff)
downloadwekan-5871a478e1280818f12fcb7250b7cbccf6907cf0.tar.gz
wekan-5871a478e1280818f12fcb7250b7cbccf6907cf0.tar.bz2
wekan-5871a478e1280818f12fcb7250b7cbccf6907cf0.zip
Fix import Trello board without swimlanes
Diffstat (limited to 'models/trelloCreator.js')
-rw-r--r--models/trelloCreator.js20
1 files changed, 20 insertions, 0 deletions
diff --git a/models/trelloCreator.js b/models/trelloCreator.js
index 972673e6..2d85ee71 100644
--- a/models/trelloCreator.js
+++ b/models/trelloCreator.js
@@ -23,6 +23,8 @@ export class TrelloCreator {
// Map of labels Trello ID => Wekan ID
this.labels = {};
+ // Default swimlane
+ this.swimlane = null;
// Map of lists Trello ID => Wekan ID
this.lists = {};
// Map of cards Trello ID => Wekan ID
@@ -230,6 +232,7 @@ export class TrelloCreator {
dateLastActivity: this._now(),
description: card.desc,
listId: this.lists[card.idList],
+ swimlaneId: this.swimlane,
sort: card.pos,
title: card.name,
// we attribute the card to its creator if available
@@ -397,6 +400,22 @@ export class TrelloCreator {
});
}
+ createSwimlanes(boardId) {
+ const swimlaneToCreate = {
+ archived: false,
+ boardId,
+ // We are being defensing here by providing a default date (now) if the
+ // creation date wasn't found on the action log. This happen on old
+ // Wekan boards (eg from 2013) that didn't log the 'createList' action
+ // we require.
+ createdAt: this._now(),
+ title: 'Default',
+ };
+ const swimlaneId = Swimlanes.direct.insert(swimlaneToCreate);
+ Swimlanes.direct.update(swimlaneId, {$set: {'updatedAt': this._now()}});
+ this.swimlane = swimlaneId;
+ }
+
createChecklists(trelloChecklists) {
trelloChecklists.forEach((checklist) => {
if (this.cards[checklist.idCard]) {
@@ -607,6 +626,7 @@ export class TrelloCreator {
this.parseActions(board.actions);
const boardId = this.createBoardAndLabels(board);
this.createLists(board.lists, boardId);
+ this.createSwimlanes(boardId);
this.createCards(board.cards, boardId);
this.createChecklists(board.checklists);
this.importActions(board.actions, boardId);