wekan/client/components/boards/boardHeader.js

306 lines
8.4 KiB
JavaScript
Raw Normal View History

Template.boardMenuPopup.events({
'click .js-rename-board': Popup.open('boardChangeTitle'),
'click .js-open-archives'() {
2015-06-07 18:55:26 +02:00
Sidebar.setView('archives');
Popup.close();
},
'click .js-change-board-color': Popup.open('boardChangeColor'),
2015-08-31 16:01:42 +02:00
'click .js-change-language': Popup.open('changeLanguage'),
'click .js-archive-board ': Popup.afterConfirm('archiveBoard', function() {
const currentBoard = Boards.findOne(Session.get('currentBoard'));
currentBoard.archive();
// XXX We should have some kind of notification on top of the page to
// confirm that the board was successfully archived.
FlowRouter.go('home');
}),
2017-07-09 15:14:33 +09:00
'click .js-outgoing-webhooks': Popup.open('outgoingWebhooks'),
2017-07-24 23:56:51 +01:00
'click .js-import-board': Popup.open('chooseBoardSource'),
});
Template.boardMenuPopup.helpers({
exportUrl() {
2017-06-17 05:22:21 +03:00
const params = {
boardId: Session.get('currentBoard'),
2017-06-17 00:06:07 +03:00
};
2017-06-17 05:22:21 +03:00
const queryParams = {
authToken: Accounts._storedLoginToken(),
2017-06-16 23:13:39 +03:00
};
return FlowRouter.path('/api/boards/:boardId/export', params, queryParams);
},
exportFilename() {
const boardId = Session.get('currentBoard');
return `wekan-export-board-${boardId}.json`;
},
});
2015-12-09 00:35:45 +01:00
Template.boardChangeTitlePopup.events({
submit(evt, tpl) {
const newTitle = tpl.$('.js-board-name').val().trim();
2015-12-07 11:22:30 +08:00
const newDesc = tpl.$('.js-board-desc').val().trim();
if (newTitle) {
this.rename(newTitle);
2017-02-01 20:01:38 +02:00
this.setDescription(newDesc);
Popup.close();
}
evt.preventDefault();
},
});
BlazeComponent.extendComponent({
watchLevel() {
const currentBoard = Boards.findOne(Session.get('currentBoard'));
return currentBoard && currentBoard.getWatchLevel(Meteor.userId());
},
isStarred() {
const boardId = Session.get('currentBoard');
const user = Meteor.user();
2015-08-23 22:00:02 +02:00
return user && user.hasStarred(boardId);
},
// Only show the star counter if the number of star is greater than 2
showStarCounter() {
2015-09-05 23:14:24 +02:00
const currentBoard = Boards.findOne(Session.get('currentBoard'));
return currentBoard && currentBoard.stars >= 2;
},
events() {
return [{
'click .js-edit-board-title': Popup.open('boardChangeTitle'),
'click .js-star-board'() {
Meteor.user().toggleBoardStar(Session.get('currentBoard'));
},
'click .js-open-board-menu': Popup.open('boardMenu'),
'click .js-change-visibility': Popup.open('boardChangeVisibility'),
'click .js-watch-board': Popup.open('boardChangeWatch'),
'click .js-open-archived-board'() {
Modal.open('archivedBoards');
},
'click .js-toggle-board-view'() {
const currentBoard = Boards.findOne(Session.get('currentBoard'));
if (currentBoard.view === 'board-view-swimlanes') {
Boards.update(currentBoard._id, {
$set: {
view: 'board-view-lists',
},
});
} else if (currentBoard.view === 'board-view-lists') {
Boards.update(currentBoard._id, {
$set: {
view: 'board-view-swimlanes',
},
});
}
},
'click .js-open-filter-view'() {
Sidebar.setView('filter');
},
'click .js-filter-reset'(evt) {
evt.stopPropagation();
Sidebar.setView();
Filter.reset();
},
'click .js-multiselection-activate'() {
const currentCard = Session.get('currentCard');
MultiSelection.activate();
if (currentCard) {
MultiSelection.add(currentCard);
}
},
'click .js-multiselection-reset'(evt) {
evt.stopPropagation();
MultiSelection.disable();
},
'click .js-log-in'() {
FlowRouter.go('atSignIn');
},
}];
},
}).register('boardHeaderBar');
Template.boardHeaderBar.helpers({
canModifyBoard() {
return Meteor.user() && Meteor.user().isBoardMember() && !Meteor.user().isCommentOnly();
},
});
BlazeComponent.extendComponent({
backgroundColors() {
return Boards.simpleSchema()._schema.color.allowedValues;
},
isSelected() {
const currentBoard = Boards.findOne(Session.get('currentBoard'));
return currentBoard.color === this.currentData().toString();
},
events() {
return [{
'click .js-select-background'(evt) {
const currentBoard = Boards.findOne(Session.get('currentBoard'));
const newColor = this.currentData().toString();
currentBoard.setColor(newColor);
evt.preventDefault();
},
}];
},
}).register('boardChangeColorPopup');
2017-02-22 17:33:17 +05:30
const CreateBoard = BlazeComponent.extendComponent({
template() {
return 'createBoard';
},
onCreated() {
this.visibilityMenuIsOpen = new ReactiveVar(false);
this.visibility = new ReactiveVar('private');
2017-02-22 18:59:51 +05:30
this.boardId = new ReactiveVar('');
},
visibilityCheck() {
return this.currentData() === this.visibility.get();
},
setVisibility(visibility) {
this.visibility.set(visibility);
this.visibilityMenuIsOpen.set(false);
},
2015-09-06 22:47:29 +02:00
toggleVisibilityMenu() {
this.visibilityMenuIsOpen.set(!this.visibilityMenuIsOpen.get());
},
onSubmit(evt) {
evt.preventDefault();
const title = this.find('.js-new-board-title').value;
const visibility = this.visibility.get();
2017-02-22 18:59:51 +05:30
this.boardId.set(Boards.insert({
title,
permission: visibility,
2017-02-22 18:59:51 +05:30
}));
2018-01-19 12:22:03 -03:00
Swimlanes.insert({
title: 'Default',
boardId: this.boardId.get(),
});
2017-02-22 18:59:51 +05:30
Utils.goBoardId(this.boardId.get());
},
events() {
return [{
'click .js-select-visibility'() {
this.setVisibility(this.currentData());
},
2015-09-06 22:47:29 +02:00
'click .js-change-visibility': this.toggleVisibilityMenu,
2015-10-15 14:01:13 +02:00
'click .js-import': Popup.open('boardImportBoard'),
submit: this.onSubmit,
2017-07-08 13:23:33 +01:00
'click .js-import-board': Popup.open('chooseBoardSource'),
}];
},
}).register('createBoardPopup');
2017-07-08 13:23:33 +01:00
BlazeComponent.extendComponent({
template() {
return 'chooseBoardSource';
},
}).register('chooseBoardSourcePopup');
2017-02-22 17:33:17 +05:30
(class HeaderBarCreateBoard extends CreateBoard {
onSubmit(evt) {
super.onSubmit(evt);
// Immediately star boards crated with the headerbar popup.
2017-02-22 18:59:51 +05:30
Meteor.user().toggleBoardStar(this.boardId.get());
2017-02-22 17:33:17 +05:30
}
2017-02-22 18:59:51 +05:30
}).register('headerBarCreateBoardPopup');
2017-02-22 17:33:17 +05:30
BlazeComponent.extendComponent({
visibilityCheck() {
const currentBoard = Boards.findOne(Session.get('currentBoard'));
return this.currentData() === currentBoard.permission;
},
selectBoardVisibility() {
const currentBoard = Boards.findOne(Session.get('currentBoard'));
const visibility = this.currentData();
currentBoard.setVisibility(visibility);
Popup.close();
},
events() {
return [{
'click .js-select-visibility': this.selectBoardVisibility,
}];
},
}).register('boardChangeVisibilityPopup');
BlazeComponent.extendComponent({
watchLevel() {
const currentBoard = Boards.findOne(Session.get('currentBoard'));
return currentBoard.getWatchLevel(Meteor.userId());
},
watchCheck() {
return this.currentData() === this.watchLevel();
},
events() {
return [{
'click .js-select-watch'() {
const level = this.currentData();
Meteor.call('watch', 'board', Session.get('currentBoard'), level, (err, ret) => {
if (!err && ret) Popup.close();
});
},
}];
},
}).register('boardChangeWatchPopup');
2017-07-09 15:14:33 +09:00
BlazeComponent.extendComponent({
integrations() {
2017-07-09 15:14:33 +09:00
const boardId = Session.get('currentBoard');
return Integrations.find({ boardId: `${boardId}` }).fetch();
},
integration(id) {
const boardId = Session.get('currentBoard');
return Integrations.findOne({ _id: id, boardId: `${boardId}` });
2017-07-09 15:14:33 +09:00
},
events() {
return [{
'submit'(evt) {
evt.preventDefault();
const url = evt.target.url.value;
2017-07-09 15:14:33 +09:00
const boardId = Session.get('currentBoard');
let id = null;
let integration = null;
if (evt.target.id) {
id = evt.target.id.value;
integration = this.integration(id);
2017-07-09 15:14:33 +09:00
if (url) {
Integrations.update(integration._id, {
$set: {
url: `${url}`,
},
});
} else {
Integrations.remove(integration._id);
2017-07-09 15:14:33 +09:00
}
} else if (url) {
Integrations.insert({
userId: Meteor.userId(),
2017-07-09 15:14:33 +09:00
enabled: true,
type: 'outgoing-webhooks',
url: `${url}`,
boardId: `${boardId}`,
activities: ['all'],
2017-07-09 15:14:33 +09:00
});
}
Popup.close();
},
}];
},
}).register('outgoingWebhooksPopup');