wekan/client/components/boards/boardArchive.js

49 lines
1.4 KiB
JavaScript
Raw Normal View History

BlazeComponent.extendComponent({
onCreated() {
this.subscribe('archivedBoards');
},
archivedBoards() {
2019-06-28 12:52:09 -05:00
return Boards.find(
{ archived: true },
{
sort: { sort: 1 /* boards default sorting */ },
2019-06-28 12:52:09 -05:00
},
);
},
events() {
2019-06-28 12:52:09 -05:00
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');
}),
},
2019-06-28 12:52:09 -05:00
];
},
}).register('archivedBoards');