summaryrefslogtreecommitdiffstats
path: root/client/components/boards/boardArchive.js
blob: 5a5cf772e1bd63620265ad2a2805ca89f7a67562 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
BlazeComponent.extendComponent({
  onCreated() {
    this.subscribe('archivedBoards');
  },

  archivedBoards() {
    return Boards.find(
      { archived: true },
      {
        sort: { sort: 1 /* boards default sorting */ },
      },
    );
  },

  events() {
    return [
      {
        'click .js-restore-board'() {
          // TODO : Make isSandstorm variable global
          const isSandstorm =
            Meteor.settings &&
            Meteor.settings.public &&
            Meteor.settings.public.sandstorm;
          if (isSandstorm && Session.get('currentBoard')) {
            const currentBoard = Boards.findOne(Session.get('currentBoard'));
            currentBoard.archive();
          }
          const board = this.currentData();
          board.restore();
          Utils.goBoardId(board._id);
        },
        'click .js-delete-board': Popup.afterConfirm('boardDelete', function() {
          Popup.close();
          const isSandstorm =
            Meteor.settings &&
            Meteor.settings.public &&
            Meteor.settings.public.sandstorm;
          if (isSandstorm && Session.get('currentBoard')) {
            const currentBoard = Boards.findOne(Session.get('currentBoard'));
            Boards.remove(currentBoard._id);
          }
          Boards.remove(this._id);
          FlowRouter.go('home');
        }),
      },
    ];
  },
}).register('archivedBoards');