mirror of
https://github.com/wekan/wekan.git
synced 2025-04-24 14:08:31 -04:00
48 lines
1.3 KiB
JavaScript
48 lines
1.3 KiB
JavaScript
BlazeComponent.extendComponent({
|
|
onCreated() {
|
|
this.subscribe('archivedBoards');
|
|
},
|
|
|
|
archivedBoards() {
|
|
return Boards.find(
|
|
{ archived: true },
|
|
{
|
|
sort: ['title'],
|
|
},
|
|
);
|
|
},
|
|
|
|
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');
|