summaryrefslogtreecommitdiffstats
path: root/client/components
diff options
context:
space:
mode:
authorAndrés Manelli <andresmanelli@gmail.com>2018-03-07 14:08:45 -0300
committerAndrés Manelli <andresmanelli@gmail.com>2018-03-07 14:11:21 -0300
commit4b53b0c90a57593c0fe2d808d2298e85f488bfa9 (patch)
tree3c30a2a6f78e7b2e559af0f59ce4b02e29c6adf8 /client/components
parent98103bb2f721a3bfddd2f86e97e0e855dd6ac64e (diff)
downloadwekan-4b53b0c90a57593c0fe2d808d2298e85f488bfa9.tar.gz
wekan-4b53b0c90a57593c0fe2d808d2298e85f488bfa9.tar.bz2
wekan-4b53b0c90a57593c0fe2d808d2298e85f488bfa9.zip
Fix card copy and move with swimlanes
Diffstat (limited to 'client/components')
-rw-r--r--client/components/cards/cardDetails.jade17
-rw-r--r--client/components/cards/cardDetails.js38
2 files changed, 36 insertions, 19 deletions
diff --git a/client/components/cards/cardDetails.jade b/client/components/cards/cardDetails.jade
index 81f571d6..cc95ca38 100644
--- a/client/components/cards/cardDetails.jade
+++ b/client/components/cards/cardDetails.jade
@@ -166,6 +166,7 @@ template(name="copyChecklistToManyCardsPopup")
+boardsAndLists
template(name="boardsAndLists")
+ label {{_ 'boards'}}:
select.js-select-boards
each boards
if $eq _id currentBoard._id
@@ -173,14 +174,18 @@ template(name="boardsAndLists")
else
option(value="{{_id}}") {{title}}
+ label {{_ 'swimlanes'}}:
+ select.js-select-swimlanes
+ each swimlanes
+ option(value="{{_id}}") {{title}}
+
label {{_ 'lists'}}:
- ul.pop-over-list
+ select.js-select-lists
each aBoardLists
- li
- if $eq ../_id _id
- a.disabled {{title}} ({{_ 'current'}})
- else
- a.js-select-list= title
+ option(value="{{_id}}") {{title}}
+
+ .edit-controls.clearfix
+ button.primary.confirm.js-done {{_ 'done'}}
template(name="cardMembersPopup")
ul.pop-over-list.js-card-member-list
diff --git a/client/components/cards/cardDetails.js b/client/components/cards/cardDetails.js
index d72f46d4..701bcd1b 100644
--- a/client/components/cards/cardDetails.js
+++ b/client/components/cards/cardDetails.js
@@ -211,11 +211,14 @@ Template.editCardTitleForm.events({
});
Template.moveCardPopup.events({
- 'click .js-select-list' () {
+ 'click .js-done' () {
// XXX We should *not* get the currentCard from the global state, but
// instead from a “component” state.
const card = Cards.findOne(Session.get('currentCard'));
- const newListId = this._id;
+ const lSelect = $('.js-select-lists')[0];
+ const newListId = lSelect.options[lSelect.selectedIndex].value;
+ const slSelect = $('.js-select-swimlanes')[0];
+ card.swimlaneId = slSelect.options[slSelect.selectedIndex].value;
card.move(card.swimlaneId, newListId, 0);
Popup.close();
},
@@ -223,7 +226,8 @@ Template.moveCardPopup.events({
BlazeComponent.extendComponent({
onCreated() {
- this.selectedBoard = new ReactiveVar(Session.get('currentBoard'));
+ subManager.subscribe('board', Session.get('currentBoard'));
+ this.selectedBoardId = new ReactiveVar(Session.get('currentBoard'));
},
boards() {
@@ -236,32 +240,41 @@ BlazeComponent.extendComponent({
return boards;
},
+ swimlanes() {
+ const board = Boards.findOne(this.selectedBoardId.get());
+ return board.swimlanes();
+ },
+
aBoardLists() {
- subManager.subscribe('board', this.selectedBoard.get());
- const board = Boards.findOne(this.selectedBoard.get());
+ const board = Boards.findOne(this.selectedBoardId.get());
return board.lists();
},
+
events() {
return [{
'change .js-select-boards'(evt) {
- this.selectedBoard.set($(evt.currentTarget).val());
+ this.selectedBoardId.set($(evt.currentTarget).val());
+ subManager.subscribe('board', this.selectedBoardId.get());
},
}];
},
}).register('boardsAndLists');
Template.copyCardPopup.events({
- 'click .js-select-list' (evt) {
+ 'click .js-done'() {
const card = Cards.findOne(Session.get('currentCard'));
const oldId = card._id;
card._id = null;
- card.listId = this._id;
- const list = Lists.findOne(card.listId);
- card.boardId = list.boardId;
- const textarea = $(evt.currentTarget).parents('.content').find('textarea');
+ const lSelect = $('.js-select-lists')[0];
+ card.listId = lSelect.options[lSelect.selectedIndex].value;
+ const slSelect = $('.js-select-swimlanes')[0];
+ card.swimlaneId = slSelect.options[slSelect.selectedIndex].value;
+ const bSelect = $('.js-select-boards')[0];
+ card.boardId = bSelect.options[bSelect.selectedIndex].value;
+ const textarea = $('#copy-card-title');
const title = textarea.val().trim();
// insert new card to the bottom of new list
- card.sort = Lists.findOne(this._id).cards().count();
+ card.sort = Lists.findOne(card.listId).cards().count();
if (title) {
card.title = title;
@@ -297,7 +310,6 @@ Template.copyCardPopup.events({
},
});
-
Template.copyChecklistToManyCardsPopup.events({
'click .js-select-list' (evt) {
const card = Cards.findOne(Session.get('currentCard'));