wekan/client/components/settings/settingBody.js

213 lines
6 KiB
JavaScript
Raw Normal View History

Meteor.subscribe('setting');
Meteor.subscribe('mailServer');
Meteor.subscribe('accountSettings');
2017-10-01 12:43:15 +09:00
Meteor.subscribe('announcements');
BlazeComponent.extendComponent({
onCreated() {
this.error = new ReactiveVar('');
this.loading = new ReactiveVar(false);
this.generalSetting = new ReactiveVar(true);
this.emailSetting = new ReactiveVar(false);
this.accountSetting = new ReactiveVar(false);
2017-10-01 12:43:15 +09:00
this.announcementSetting = new ReactiveVar(false);
},
setError(error) {
this.error.set(error);
},
setLoading(w) {
this.loading.set(w);
},
checkField(selector) {
const value = $(selector).val();
if(!value || value.trim() === ''){
$(selector).parents('li.smtp-form').addClass('has-error');
throw Error('blank field');
} else {
return value;
}
},
currentSetting(){
return Settings.findOne();
},
boards() {
return Boards.find({
archived: false,
'members.userId': Meteor.userId(),
'members.isAdmin': true,
}, {
sort: ['title'],
});
},
toggleRegistration(){
this.setLoading(true);
const registrationClosed = this.currentSetting().disableRegistration;
Settings.update(Settings.findOne()._id, {$set:{disableRegistration: !registrationClosed}});
this.setLoading(false);
if(registrationClosed){
$('.invite-people').slideUp();
}else{
$('.invite-people').slideDown();
}
},
toggleTLS(){
$('#mail-server-tls').toggleClass('is-checked');
},
switchMenu(event){
const target = $(event.target);
if(!target.hasClass('active')){
$('.side-menu li.active').removeClass('active');
target.parent().addClass('active');
const targetID = target.data('id');
this.generalSetting.set('registration-setting' === targetID);
this.emailSetting.set('email-setting' === targetID);
this.accountSetting.set('account-setting' === targetID);
2017-10-01 12:43:15 +09:00
this.announcementSetting.set('announcement-setting' === targetID);
}
},
checkBoard(event){
let target = $(event.target);
if(!target.hasClass('js-toggle-board-choose')){
target = target.parent();
}
const checkboxId = target.attr('id');
$(`#${checkboxId} .materialCheckBox`).toggleClass('is-checked');
$(`#${checkboxId}`).toggleClass('is-checked');
},
inviteThroughEmail(){
const emails = $('#email-to-invite').val().trim().split('\n').join(',').split(',');
const boardsToInvite = [];
$('.js-toggle-board-choose .materialCheckBox.is-checked').each(function () {
boardsToInvite.push($(this).data('id'));
});
const validEmails = [];
emails.forEach((email) => {
if (email && SimpleSchema.RegEx.Email.test(email.trim())) {
validEmails.push(email.trim());
}
});
if (validEmails.length) {
this.setLoading(true);
Meteor.call('sendInvitation', validEmails, boardsToInvite, () => {
// if (!err) {
// TODO - show more info to user
// }
this.setLoading(false);
});
}
},
saveMailServerInfo(){
this.setLoading(true);
$('li').removeClass('has-error');
try{
const host = this.checkField('#mail-server-host');
const port = this.checkField('#mail-server-port');
const username = $('#mail-server-username').val().trim();
const password = $('#mail-server-password').val().trim();
const from = this.checkField('#mail-server-from');
const tls = $('#mail-server-tls.is-checked').length > 0;
Settings.update(Settings.findOne()._id, {$set:{'mailServer.host':host, 'mailServer.port': port, 'mailServer.username': username,
'mailServer.password': password, 'mailServer.enableTLS': tls, 'mailServer.from': from}});
} catch (e) {
return;
} finally {
this.setLoading(false);
}
},
2017-11-27 16:44:19 +09:00
sendSMTPTestEmail() {
Meteor.call('sendSMTPTestEmail', (err, ret) => {
if (!err && ret) { /* eslint-disable no-console */
console.log('Success:', ret.message, ret.email);
2017-11-27 19:24:06 +09:00
alert('Success');
2017-11-27 16:44:19 +09:00
} else {
console.log('Error: Sending test email', err);
2017-11-27 19:24:06 +09:00
alert(err);
2017-11-27 16:44:19 +09:00
} /* eslint-enable no-console */
});
},
events(){
return [{
'click a.js-toggle-registration': this.toggleRegistration,
'click a.js-toggle-tls': this.toggleTLS,
'click a.js-setting-menu': this.switchMenu,
'click a.js-toggle-board-choose': this.checkBoard,
'click button.js-email-invite': this.inviteThroughEmail,
'click button.js-save': this.saveMailServerInfo,
2017-11-27 16:44:19 +09:00
'click button.js-send-smtp-test-email': this.sendSMTPTestEmail,
}];
},
}).register('setting');
BlazeComponent.extendComponent({
saveAllowEmailChange() {
const allowEmailChange = ($('input[name=allowEmailChange]:checked').val() === 'true');
AccountSettings.update('accounts-allowEmailChange', {
$set: { 'booleanValue': allowEmailChange },
});
},
allowEmailChange() {
return AccountSettings.findOne('accounts-allowEmailChange').booleanValue;
},
events() {
return [{
'click button.js-accounts-save': this.saveAllowEmailChange,
}];
},
}).register('accountSettings');
2017-09-28 16:57:04 +09:00
BlazeComponent.extendComponent({
onCreated() {
this.loading = new ReactiveVar(false);
},
setLoading(w) {
this.loading.set(w);
},
currentSetting(){
2017-10-01 12:43:15 +09:00
return Announcements.findOne();
2017-09-28 16:57:04 +09:00
},
saveMessage() {
2017-10-01 12:43:15 +09:00
const message = $('#admin-announcement').val().trim();
Announcements.update(Announcements.findOne()._id, {
2017-09-28 16:57:04 +09:00
$set: { 'body': message },
});
},
toggleActive(){
this.setLoading(true);
const isActive = this.currentSetting().enabled;
2017-10-01 12:43:15 +09:00
Announcements.update(Announcements.findOne()._id, {
2017-09-28 16:57:04 +09:00
$set:{ 'enabled': !isActive},
});
this.setLoading(false);
if(isActive){
2017-10-01 12:43:15 +09:00
$('.admin-announcement').slideUp();
2017-09-28 16:57:04 +09:00
}else{
2017-10-01 12:43:15 +09:00
$('.admin-announcement').slideDown();
2017-09-28 16:57:04 +09:00
}
},
events() {
return [{
'click a.js-toggle-activemessage': this.toggleActive,
2017-10-01 12:43:15 +09:00
'click button.js-announcement-save': this.saveMessage,
2017-09-28 16:57:04 +09:00
}];
},
2017-10-01 12:43:15 +09:00
}).register('announcementSettings');