From 6aa7a2abef22f126ac89b71edeebfcb156d707d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9s=20Manelli?= Date: Wed, 12 Sep 2018 18:35:56 +0200 Subject: Fix #1887 --- client/components/lists/list.js | 1 + 1 file changed, 1 insertion(+) diff --git a/client/components/lists/list.js b/client/components/lists/list.js index 267af31c..00908faa 100644 --- a/client/components/lists/list.js +++ b/client/components/lists/list.js @@ -47,6 +47,7 @@ BlazeComponent.extendComponent({ items: itemsSelector, placeholder: 'minicard-wrapper placeholder', start(evt, ui) { + ui.helper.css('z-index', 1000); ui.placeholder.height(ui.helper.height()); EscapeActions.executeUpTo('popup-close'); boardComponent.setIsDragging(true); -- cgit v1.2.3-1-g7c22 From 31f73057bf552b37701f6d5e881b27b6619f37c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9s=20Manelli?= Date: Wed, 12 Sep 2018 22:27:24 +0200 Subject: Fix #1885 --- client/components/lists/listBody.js | 34 ++++++++++++++++++++++++++++++---- 1 file changed, 30 insertions(+), 4 deletions(-) diff --git a/client/components/lists/listBody.js b/client/components/lists/listBody.js index 896bf178..d99d9dc8 100644 --- a/client/components/lists/listBody.js +++ b/client/components/lists/listBody.js @@ -319,6 +319,9 @@ BlazeComponent.extendComponent({ }, swimlanes() { + if (!this.selectedBoardId) { + return []; + } const swimlanes = Swimlanes.find({boardId: this.selectedBoardId.get()}); if (swimlanes.count()) this.selectedSwimlaneId.set(swimlanes.fetch()[0]._id); @@ -326,6 +329,9 @@ BlazeComponent.extendComponent({ }, lists() { + if (!this.selectedBoardId) { + return []; + } const lists = Lists.find({boardId: this.selectedBoardId.get()}); if (lists.count()) this.selectedListId.set(lists.fetch()[0]._id); @@ -333,6 +339,9 @@ BlazeComponent.extendComponent({ }, cards() { + if (!this.board) { + return []; + } const ownCardsIds = this.board.cards().map((card) => { return card.linkedId || card._id; }); return Cards.find({ boardId: this.selectedBoardId.get(), @@ -360,6 +369,11 @@ BlazeComponent.extendComponent({ // LINK CARD evt.stopPropagation(); evt.preventDefault(); + const linkedId = $('.js-select-cards option:selected').val(); + if (!linkedId) { + Popup.close(); + return; + } const _id = Cards.insert({ title: $('.js-select-cards option:selected').text(), //dummy listId: this.listId, @@ -367,7 +381,7 @@ BlazeComponent.extendComponent({ boardId: this.boardId, sort: Lists.findOne(this.listId).cards().count(), type: 'cardType-linkedCard', - linkedId: $('.js-select-cards option:selected').val(), + linkedId, }); Filter.addException(_id); Popup.close(); @@ -377,6 +391,10 @@ BlazeComponent.extendComponent({ evt.stopPropagation(); evt.preventDefault(); const impBoardId = $('.js-select-boards option:selected').val(); + if (!impBoardId || Cards.findOne({linkedId: impBoardId, archived: false})) { + Popup.close(); + return; + } const _id = Cards.insert({ title: $('.js-select-boards option:selected').text(), //dummy listId: this.listId, @@ -400,11 +418,16 @@ BlazeComponent.extendComponent({ onCreated() { // Prefetch first non-current board id - const boardId = Boards.findOne({ + let board = Boards.findOne({ archived: false, 'members.userId': Meteor.userId(), _id: {$ne: Session.get('currentBoard')}, - })._id; + }); + if (!board) { + Popup.close(); + return; + } + const boardId = board._id; // Subscribe to this board subManager.subscribe('board', boardId); this.selectedBoardId = new ReactiveVar(boardId); @@ -412,7 +435,7 @@ BlazeComponent.extendComponent({ this.boardId = Session.get('currentBoard'); // In order to get current board info subManager.subscribe('board', this.boardId); - const board = Boards.findOne(this.boardId); + board = Boards.findOne(this.boardId); // List where to insert card const list = $(Popup._getTopStack().openerElement).closest('.js-list'); this.listId = Blaze.getData(list[0])._id; @@ -438,6 +461,9 @@ BlazeComponent.extendComponent({ }, results() { + if (!this.selectedBoardId) { + return []; + } const board = Boards.findOne(this.selectedBoardId.get()); return board.searchCards(this.term.get(), false); }, -- cgit v1.2.3-1-g7c22