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.
55 lines
1.5 KiB
55 lines
1.5 KiB
import { ReactiveCache } from '/imports/reactiveCache';
|
|
|
|
BlazeComponent.extendComponent({
|
|
onCreated() {
|
|
this.subscribe('archivedBoards');
|
|
},
|
|
|
|
isBoardAdmin() {
|
|
return ReactiveCache.getCurrentUser().isBoardAdmin();
|
|
},
|
|
|
|
archivedBoards() {
|
|
const ret = ReactiveCache.getBoards(
|
|
{ archived: true },
|
|
{
|
|
sort: { archivedAt: -1, modifiedAt: -1 },
|
|
},
|
|
);
|
|
return ret;
|
|
},
|
|
|
|
events() {
|
|
return [
|
|
{
|
|
'click .js-restore-board'() {
|
|
// TODO : Make isSandstorm variable global
|
|
const isSandstorm =
|
|
Meteor.settings &&
|
|
Meteor.settings.public &&
|
|
Meteor.settings.public.sandstorm;
|
|
if (isSandstorm && Utils.getCurrentBoardId()) {
|
|
const currentBoard = Utils.getCurrentBoard();
|
|
currentBoard.archive();
|
|
}
|
|
const board = this.currentData();
|
|
board.restore();
|
|
Utils.goBoardId(board._id);
|
|
},
|
|
'click .js-delete-board': Popup.afterConfirm('boardDelete', function() {
|
|
Popup.back();
|
|
const isSandstorm =
|
|
Meteor.settings &&
|
|
Meteor.settings.public &&
|
|
Meteor.settings.public.sandstorm;
|
|
if (isSandstorm && Utils.getCurrentBoardId()) {
|
|
const currentBoard = Utils.getCurrentBoard();
|
|
Boards.remove(currentBoard._id);
|
|
}
|
|
Boards.remove(this._id);
|
|
FlowRouter.go('home');
|
|
}),
|
|
},
|
|
];
|
|
},
|
|
}).register('archivedBoards');
|
|
|