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.
351 lines
9.0 KiB
351 lines
9.0 KiB
Sidebar = null;
|
|
|
|
const defaultView = 'home';
|
|
|
|
const viewTitles = {
|
|
filter: 'filter-cards',
|
|
multiselection: 'multi-selection',
|
|
archives: 'archives',
|
|
};
|
|
|
|
BlazeComponent.extendComponent({
|
|
mixins() {
|
|
return [Mixins.InfiniteScrolling, Mixins.PerfectScrollbar];
|
|
},
|
|
|
|
onCreated() {
|
|
const initOpen = Utils.isMiniScreen() ? false : (!Session.get('currentCard'));
|
|
this._isOpen = new ReactiveVar(initOpen);
|
|
this._view = new ReactiveVar(defaultView);
|
|
Sidebar = this;
|
|
},
|
|
|
|
onDestroyed() {
|
|
Sidebar = null;
|
|
},
|
|
|
|
isOpen() {
|
|
return this._isOpen.get();
|
|
},
|
|
|
|
open() {
|
|
if (!this._isOpen.get()) {
|
|
this._isOpen.set(true);
|
|
EscapeActions.executeUpTo('detailsPane');
|
|
}
|
|
},
|
|
|
|
hide() {
|
|
if (this._isOpen.get()) {
|
|
this._isOpen.set(false);
|
|
}
|
|
},
|
|
|
|
toggle() {
|
|
this._isOpen.set(!this._isOpen.get());
|
|
},
|
|
|
|
calculateNextPeak() {
|
|
const altitude = this.find('.js-board-sidebar-content').scrollHeight;
|
|
this.callFirstWith(this, 'setNextPeak', altitude);
|
|
},
|
|
|
|
reachNextPeak() {
|
|
const activitiesComponent = this.childComponents('activities')[0];
|
|
activitiesComponent.loadNextPage();
|
|
},
|
|
|
|
isTongueHidden() {
|
|
return this.isOpen() && this.getView() !== defaultView;
|
|
},
|
|
|
|
scrollTop() {
|
|
this.$('.js-board-sidebar-content').scrollTop(0);
|
|
},
|
|
|
|
getView() {
|
|
return this._view.get();
|
|
},
|
|
|
|
setView(view) {
|
|
view = _.isString(view) ? view : defaultView;
|
|
if (this._view.get() !== view) {
|
|
this._view.set(view);
|
|
this.scrollTop();
|
|
EscapeActions.executeUpTo('detailsPane');
|
|
}
|
|
this.open();
|
|
},
|
|
|
|
isDefaultView() {
|
|
return this.getView() === defaultView;
|
|
},
|
|
|
|
getViewTemplate() {
|
|
return `${this.getView()}Sidebar`;
|
|
},
|
|
|
|
getViewTitle() {
|
|
return TAPi18n.__(viewTitles[this.getView()]);
|
|
},
|
|
|
|
showTongueTitle() {
|
|
if (this.isOpen())
|
|
return `${TAPi18n.__('sidebar-close')}`;
|
|
else
|
|
return `${TAPi18n.__('sidebar-open')}`;
|
|
},
|
|
|
|
events() {
|
|
return [{
|
|
'click .js-hide-sidebar': this.hide,
|
|
'click .js-toggle-sidebar': this.toggle,
|
|
'click .js-back-home': this.setView,
|
|
'click .js-shortcuts'() {
|
|
FlowRouter.go('shortcuts');
|
|
},
|
|
}];
|
|
},
|
|
}).register('sidebar');
|
|
|
|
Blaze.registerHelper('Sidebar', () => Sidebar);
|
|
|
|
EscapeActions.register('sidebarView',
|
|
() => { Sidebar.setView(defaultView); },
|
|
() => { return Sidebar && Sidebar.getView() !== defaultView; }
|
|
);
|
|
|
|
Template.memberPopup.helpers({
|
|
user() {
|
|
return Users.findOne(this.userId);
|
|
},
|
|
memberType() {
|
|
const type = Users.findOne(this.userId).isBoardAdmin() ? 'admin' : 'normal';
|
|
if(type == 'normal'){
|
|
const currentBoard = Boards.findOne(Session.get('currentBoard'));
|
|
const commentOnly = currentBoard.hasCommentOnly(this.userId)
|
|
if(commentOnly){
|
|
return TAPi18n.__('comment-only').toLowerCase();
|
|
} else {
|
|
return TAPi18n.__(type).toLowerCase();
|
|
}
|
|
} else {
|
|
return TAPi18n.__(type).toLowerCase();
|
|
}
|
|
},
|
|
isInvited() {
|
|
return Users.findOne(this.userId).isInvitedTo(Session.get('currentBoard'));
|
|
},
|
|
});
|
|
|
|
Template.memberPopup.events({
|
|
'click .js-filter-member'() {
|
|
Filter.members.toggle(this.userId);
|
|
Popup.close();
|
|
},
|
|
'click .js-change-role': Popup.open('changePermissions'),
|
|
'click .js-remove-member': Popup.afterConfirm('removeMember', function() {
|
|
const boardId = Session.get('currentBoard');
|
|
const memberId = this.userId;
|
|
Cards.find({ boardId, members: memberId }).forEach((card) => {
|
|
card.unassignMember(memberId);
|
|
});
|
|
Boards.findOne(boardId).removeMember(memberId);
|
|
Popup.close();
|
|
}),
|
|
'click .js-leave-member'() {
|
|
const boardId = Session.get('currentBoard');
|
|
Meteor.call('quitBoard', boardId, (err, ret) => {
|
|
if (!ret && ret) {
|
|
Popup.close();
|
|
FlowRouter.go('home');
|
|
}
|
|
});
|
|
},
|
|
});
|
|
|
|
Template.removeMemberPopup.helpers({
|
|
user() {
|
|
return Users.findOne(this.userId);
|
|
},
|
|
board() {
|
|
return Boards.findOne(Session.get('currentBoard'));
|
|
},
|
|
});
|
|
|
|
Template.membersWidget.helpers({
|
|
isInvited() {
|
|
const user = Meteor.user();
|
|
return user && user.isInvitedTo(Session.get('currentBoard'));
|
|
},
|
|
});
|
|
|
|
Template.membersWidget.events({
|
|
'click .js-member': Popup.open('member'),
|
|
'click .js-manage-board-members': Popup.open('addMember'),
|
|
'click .sandstorm-powerbox-request-identity'() {
|
|
window.sandstormRequestIdentity();
|
|
},
|
|
'click .js-member-invite-accept'() {
|
|
const boardId = Session.get('currentBoard');
|
|
Meteor.user().removeInvite(boardId);
|
|
},
|
|
'click .js-member-invite-decline'() {
|
|
const boardId = Session.get('currentBoard');
|
|
Meteor.call('quitBoard', boardId, (err, ret) => {
|
|
if (!err && ret) {
|
|
Meteor.user().removeInvite(boardId);
|
|
FlowRouter.go('home');
|
|
}
|
|
});
|
|
},
|
|
});
|
|
|
|
Template.labelsWidget.events({
|
|
'click .js-label': Popup.open('editLabel'),
|
|
'click .js-add-label': Popup.open('createLabel'),
|
|
});
|
|
|
|
// Board members can assign people or labels by drag-dropping elements from the
|
|
// sidebar to the cards on the board. In order to re-initialize the jquery-ui
|
|
// plugin any time a draggable member or label is modified or removed we use a
|
|
// autorun function and register a dependency on the both members and labels
|
|
// fields of the current board document.
|
|
function draggableMembersLabelsWidgets() {
|
|
this.autorun(() => {
|
|
const currentBoardId = Tracker.nonreactive(() => {
|
|
return Session.get('currentBoard');
|
|
});
|
|
Boards.findOne(currentBoardId, {
|
|
fields: {
|
|
members: 1,
|
|
labels: 1,
|
|
},
|
|
});
|
|
Tracker.afterFlush(() => {
|
|
const $draggables = this.$('.js-member,.js-label');
|
|
$draggables.draggable({
|
|
appendTo: 'body',
|
|
helper: 'clone',
|
|
revert: 'invalid',
|
|
revertDuration: 150,
|
|
snap: false,
|
|
snapMode: 'both',
|
|
start() {
|
|
EscapeActions.executeUpTo('popup-back');
|
|
},
|
|
});
|
|
|
|
function userIsMember() {
|
|
return Meteor.user() && Meteor.user().isBoardMember();
|
|
}
|
|
|
|
this.autorun(() => {
|
|
$draggables.draggable('option', 'disabled', !userIsMember());
|
|
});
|
|
});
|
|
});
|
|
}
|
|
|
|
Template.membersWidget.onRendered(draggableMembersLabelsWidgets);
|
|
Template.labelsWidget.onRendered(draggableMembersLabelsWidgets);
|
|
|
|
BlazeComponent.extendComponent({
|
|
onCreated() {
|
|
this.error = new ReactiveVar('');
|
|
this.loading = new ReactiveVar(false);
|
|
},
|
|
|
|
onRendered() {
|
|
this.find('.js-search-member input').focus();
|
|
this.setLoading(false);
|
|
},
|
|
|
|
isBoardMember() {
|
|
const userId = this.currentData()._id;
|
|
const user = Users.findOne(userId);
|
|
return user && user.isBoardMember();
|
|
},
|
|
|
|
isValidEmail(email) {
|
|
return SimpleSchema.RegEx.Email.test(email);
|
|
},
|
|
|
|
setError(error) {
|
|
this.error.set(error);
|
|
},
|
|
|
|
setLoading(w) {
|
|
this.loading.set(w);
|
|
},
|
|
|
|
isLoading() {
|
|
return this.loading.get();
|
|
},
|
|
|
|
inviteUser(idNameEmail) {
|
|
const boardId = Session.get('currentBoard');
|
|
this.setLoading(true);
|
|
const self = this;
|
|
Meteor.call('inviteUserToBoard', idNameEmail, boardId, (err, ret) => {
|
|
self.setLoading(false);
|
|
if (err) self.setError(err.error);
|
|
else if (ret.email) self.setError('email-sent');
|
|
else Popup.close();
|
|
});
|
|
},
|
|
|
|
events() {
|
|
return [{
|
|
'keyup input'() {
|
|
this.setError('');
|
|
},
|
|
'click .js-select-member'() {
|
|
const userId = this.currentData()._id;
|
|
const currentBoard = Boards.findOne(Session.get('currentBoard'));
|
|
if (!currentBoard.hasMember(userId)) {
|
|
this.inviteUser(userId);
|
|
}
|
|
},
|
|
'click .js-email-invite'() {
|
|
const idNameEmail = $('.js-search-member input').val();
|
|
if (idNameEmail.indexOf('@')<0 || this.isValidEmail(idNameEmail)) {
|
|
this.inviteUser(idNameEmail);
|
|
} else this.setError('email-invalid');
|
|
},
|
|
}];
|
|
},
|
|
}).register('addMemberPopup');
|
|
|
|
Template.changePermissionsPopup.events({
|
|
'click .js-set-admin, click .js-set-normal, click .js-set-comment-only'(event) {
|
|
const currentBoard = Boards.findOne(Session.get('currentBoard'));
|
|
const memberId = this.userId;
|
|
const isAdmin = $(event.currentTarget).hasClass('js-set-admin');
|
|
const isCommentOnly = $(event.currentTarget).hasClass('js-set-comment-only');
|
|
currentBoard.setMemberPermission(memberId, isAdmin, isCommentOnly);
|
|
Popup.back(1);
|
|
},
|
|
});
|
|
|
|
Template.changePermissionsPopup.helpers({
|
|
isAdmin() {
|
|
const currentBoard = Boards.findOne(Session.get('currentBoard'));
|
|
return currentBoard.hasAdmin(this.userId);
|
|
},
|
|
|
|
isNormal() {
|
|
const currentBoard = Boards.findOne(Session.get('currentBoard'));
|
|
return !currentBoard.hasAdmin(this.userId) && !currentBoard.hasCommentOnly(this.userId);
|
|
},
|
|
|
|
isCommentOnly() {
|
|
const currentBoard = Boards.findOne(Session.get('currentBoard'));
|
|
return !currentBoard.hasAdmin(this.userId) && currentBoard.hasCommentOnly(this.userId);
|
|
},
|
|
|
|
isLastAdmin() {
|
|
const currentBoard = Boards.findOne(Session.get('currentBoard'));
|
|
return currentBoard.hasAdmin(this.userId) && (currentBoard.activeAdmins() === 1);
|
|
},
|
|
});
|
|
|