summaryrefslogtreecommitdiffstats
path: root/client/components/lists/listsGroup.js
blob: f94f681f44fa1560fab0d87a4ff18da16105bffe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
BlazeComponent.extendComponent({
  currentCardIsInThisList(listId, swimlaneId) {
    const currentCard = Cards.findOne(Session.get('currentCard'));
    const currentBoardId = Session.get('currentBoard');
    const board = Boards.findOne(currentBoardId);
    if (board.view === 'board-view-lists')
      return currentCard && currentCard.listId === listId;
    else if (board.view === 'board-view-swimlanes')
      return currentCard && currentCard.listId === listId && currentCard.swimlaneId === swimlaneId;
    else
      return false;
  },
}).register('listsGroup');