iflrandevu/assets/js/backend_settings_user.js

135 lines
4.3 KiB
JavaScript
Raw Normal View History

/* ----------------------------------------------------------------------------
* Easy!Appointments - Open Source Web Scheduler
*
* @package EasyAppointments
* @author A.Tselegidis <alextselegidis@gmail.com>
* @copyright Copyright (c) 2013 - 2020, Alex Tselegidis
* @license http://opensource.org/licenses/GPL-3.0 - GPLv3
* @link http://easyappointments.org
* @since v1.0.0
* ---------------------------------------------------------------------------- */
2018-01-23 12:08:37 +03:00
(function () {
'use strict';
/**
* "User Settings" Tab Helper Class
*
* @class UserSettings
*/
2018-01-23 12:08:37 +03:00
var UserSettings = function () {
};
/**
* Get the settings data for the user settings.
*
* @return {Object} Returns the user settings array.
*/
2018-01-23 12:08:37 +03:00
UserSettings.prototype.get = function () {
var user = {
id: $('#user-id').val(),
first_name: $('#first-name').val(),
last_name: $('#last-name').val(),
email: $('#email').val(),
mobile_number: $('#mobile-number').val(),
phone_number: $('#phone-number').val(),
address: $('#address').val(),
city: $('#city').val(),
state: $('#state').val(),
zip_code: $('#zip-code').val(),
notes: $('#notes').val(),
timezone: $('#timezone').val(),
settings: {
username: $('#username').val(),
notifications: $('#user-notifications').hasClass('active'),
calendar_view: $('#calendar-view').val()
}
};
if ($('#password').val() != '') {
user.settings.password = $('#password').val();
}
return user;
};
/**
* Store the user settings into the database.
*
* @param {Array} settings Contains the user settings.
*/
2018-01-23 12:08:37 +03:00
UserSettings.prototype.save = function (settings) {
if (!this.validate(settings)) {
Backend.displayNotification(EALang.user_settings_are_invalid);
2016-10-10 19:29:48 +03:00
return; // Validation failed, do not proceed.
}
2016-07-15 21:52:21 +03:00
var postUrl = GlobalVariables.baseUrl + '/index.php/backend_api/ajax_save_settings';
var postData = {
csrfToken: GlobalVariables.csrfToken,
type: BackendSettings.SETTINGS_USER,
settings: JSON.stringify(settings)
};
2018-01-23 12:08:37 +03:00
$.post(postUrl, postData, function (response) {
Backend.displayNotification(EALang.settings_saved);
// Update footer greetings.
$('#footer-user-display-name').text('Hello, ' + $('#first-name').val() + ' ' + $('#last-name').val() + '!');
}, 'json').fail(GeneralFunctions.ajaxFailureHandler);
};
/**
* Validate the settings data.
*
* If the validation fails then display a message to the user.
*
* @return {Boolean} Returns the validation result.
*/
2018-01-23 12:08:37 +03:00
UserSettings.prototype.validate = function () {
$('#user .has-error').removeClass('has-error');
try {
// Validate required fields.
var missingRequired = false;
2018-01-23 12:08:37 +03:00
$('#user .required').each(function () {
if ($(this).val() === '' || $(this).val() === undefined) {
$(this).closest('.form-group').addClass('has-error');
missingRequired = true;
}
});
if (missingRequired) {
throw EALang.fields_are_required;
}
// Validate passwords (if provided).
if ($('#password').val() != $('#retype-password').val()) {
$('#password, #retype-password').closest('.form-group').addClass('has-error');
throw EALang.passwords_mismatch;
}
// Validate user email.
if (!GeneralFunctions.validateEmail($('#email').val())) {
$('#email').closest('.form-group').addClass('has-error');
throw EALang.invalid_email;
}
if ($('#username').attr('already-exists') === 'true') {
$('#username').closest('.form-group').addClass('has-error');
throw EALang.username_already_exists;
}
return true;
2018-01-23 12:08:37 +03:00
} catch (exc) {
Backend.displayNotification(exc);
return false;
}
};
window.UserSettings = UserSettings;
})();