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.
97 lines
2.7 KiB
97 lines
2.7 KiB
Template.headerUserBar.events({
|
|
'click .js-open-header-member-menu': Popup.open('memberMenu'),
|
|
'click .js-change-avatar': Popup.open('changeAvatar'),
|
|
});
|
|
|
|
Template.memberMenuPopup.events({
|
|
'click .js-edit-profile': Popup.open('editProfile'),
|
|
'click .js-change-settings': Popup.open('changeSettings'),
|
|
'click .js-change-avatar': Popup.open('changeAvatar'),
|
|
'click .js-change-password': Popup.open('changePassword'),
|
|
'click .js-change-language': Popup.open('changeLanguage'),
|
|
'click .js-edit-notification': Popup.open('editNotification'),
|
|
'click .js-logout'(evt) {
|
|
evt.preventDefault();
|
|
|
|
AccountsTemplates.logout();
|
|
},
|
|
});
|
|
|
|
Template.editProfilePopup.events({
|
|
submit(evt, tpl) {
|
|
evt.preventDefault();
|
|
const fullname = tpl.find('.js-profile-fullname').value.trim();
|
|
const username = tpl.find('.js-profile-username').value.trim();
|
|
const initials = tpl.find('.js-profile-initials').value.trim();
|
|
Users.update(Meteor.userId(), {$set: {
|
|
'profile.fullname': fullname,
|
|
'profile.initials': initials,
|
|
}});
|
|
// XXX We should report the error to the user.
|
|
if (username !== Meteor.user().username) {
|
|
Meteor.call('setUsername', username);
|
|
}
|
|
Popup.back();
|
|
},
|
|
});
|
|
|
|
Template.editNotificationPopup.helpers({
|
|
hasTag(tag) {
|
|
const user = Meteor.user();
|
|
return user && user.hasTag(tag);
|
|
},
|
|
});
|
|
|
|
// we defined github like rules, see: https://github.com/settings/notifications
|
|
Template.editNotificationPopup.events({
|
|
'click .js-toggle-tag-notify-participate'() {
|
|
const user = Meteor.user();
|
|
if (user) user.toggleTag('notify-participate');
|
|
},
|
|
'click .js-toggle-tag-notify-watch'() {
|
|
const user = Meteor.user();
|
|
if (user) user.toggleTag('notify-watch');
|
|
},
|
|
});
|
|
|
|
// XXX For some reason the useraccounts autofocus isnt working in this case.
|
|
// See https://github.com/meteor-useraccounts/core/issues/384
|
|
Template.changePasswordPopup.onRendered(function() {
|
|
this.find('#at-field-current_password').focus();
|
|
});
|
|
|
|
Template.changeLanguagePopup.helpers({
|
|
languages() {
|
|
return _.map(TAPi18n.getLanguages(), (lang, tag) => {
|
|
const name = lang.name;
|
|
return { tag, name };
|
|
});
|
|
},
|
|
|
|
isCurrentLanguage() {
|
|
return this.tag === TAPi18n.getLanguage();
|
|
},
|
|
});
|
|
|
|
Template.changeLanguagePopup.events({
|
|
'click .js-set-language'(evt) {
|
|
Users.update(Meteor.userId(), {
|
|
$set: {
|
|
'profile.language': this.tag,
|
|
},
|
|
});
|
|
evt.preventDefault();
|
|
},
|
|
});
|
|
|
|
Template.changeSettingsPopup.helpers({
|
|
hiddenSystemMessages() {
|
|
return Meteor.user().hasHiddenSystemMessages();
|
|
}
|
|
});
|
|
|
|
Template.changeSettingsPopup.events({
|
|
'click .js-toggle-system-messages'(evt) {
|
|
Meteor.call('toggleSystemMessages');
|
|
},
|
|
});
|
|
|