mirror of https://github.com/wekan/wekan
The Open Source kanban (built with Meteor). Keep variable/table/field names camelCase. For translations, only add Pull Request changes to wekan/i18n/en.i18n.json , other translations are done at https://transifex.com/wekan/wekan only.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.4 KiB
52 lines
1.4 KiB
BlazeComponent.extendComponent({
|
|
onCreated() {
|
|
this.subscribe('archivedBoards');
|
|
},
|
|
|
|
isBoardAdmin() {
|
|
return Meteor.user().isBoardAdmin();
|
|
},
|
|
|
|
archivedBoards() {
|
|
return Boards.find(
|
|
{ archived: true },
|
|
{
|
|
sort: { archivedAt: -1, modifiedAt: -1 },
|
|
},
|
|
);
|
|
},
|
|
|
|
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');
|
|
|