Merge branch 'GhassenRjab-feature/import-checklist-sort' into devel

Import checklist sort attributes from Wekan and Trello.
Thanks to GhassenRjab ! Related #876
This commit is contained in:
Lauri Ojansivu 2017-09-17 06:55:02 +03:00
commit cf8e1da383
3 changed files with 14 additions and 2 deletions

View file

@ -1,3 +1,11 @@
# Upcoming Wekan release
This release adds the following new features:
* [Import checklist sort attributes from Wekan and Trello](https://github.com/wekan/wekan/pull/1226)
Thanks to GitHub user GhassenRjab for contributions.
# v0.38 2017-09-14 Wekan release
This release adds the following new features:

View file

@ -403,6 +403,7 @@ export class TrelloCreator {
cardId: this.cards[checklist.idCard],
title: checklist.name,
createdAt: this._now(),
sort: checklist.pos,
};
const checklistId = Checklists.direct.insert(checklistToCreate);
// keep track of Trello id => WeKan id
@ -414,6 +415,7 @@ export class TrelloCreator {
_id: checklistId + itemsToCreate.length,
title: item.name,
isFinished: item.state === 'complete',
sort: item.pos,
});
});
Checklists.direct.update(checklistId, {$set: {items: itemsToCreate}});

View file

@ -410,23 +410,25 @@ export class WekanCreator {
}
createChecklists(wekanChecklists) {
wekanChecklists.forEach((checklist) => {
wekanChecklists.forEach((checklist, checklistIndex) => {
// Create the checklist
const checklistToCreate = {
cardId: this.cards[checklist.cardId],
title: checklist.title,
createdAt: checklist.createdAt,
sort: checklist.sort ? checklist.sort : checklistIndex,
};
const checklistId = Checklists.direct.insert(checklistToCreate);
// keep track of Wekan id => WeKan id
this.checklists[checklist._id] = checklistId;
// Now add the items to the checklist
const itemsToCreate = [];
checklist.items.forEach((item) => {
checklist.items.forEach((item, itemIndex) => {
itemsToCreate.push({
_id: checklistId + itemsToCreate.length,
title: item.title,
isFinished: item.isFinished,
sort: item.sort ? item.sort : itemIndex,
});
});
Checklists.direct.update(checklistId, {$set: {items: itemsToCreate}});