forked from mirrors/easyappointments
197 lines
5.9 KiB
JavaScript
197 lines
5.9 KiB
JavaScript
/* ----------------------------------------------------------------------------
|
|
* Easy!Appointments - Open Source Web Scheduler
|
|
*
|
|
* @package EasyAppointments
|
|
* @author A.Tselegidis <alextselegidis@gmail.com>
|
|
* @copyright Copyright (c) Alex Tselegidis
|
|
* @license https://opensource.org/licenses/GPL-3.0 - GPLv3
|
|
* @link https://easyappointments.org
|
|
* @since v1.0.0
|
|
* ---------------------------------------------------------------------------- */
|
|
|
|
/**
|
|
* Account page.
|
|
*
|
|
* This module implements the functionality of the account page.
|
|
*/
|
|
App.Pages.Account = (function () {
|
|
const $userId = $('#user-id');
|
|
const $firstName = $('#first-name');
|
|
const $lastName = $('#last-name');
|
|
const $email = $('#email');
|
|
const $mobileNumber = $('#mobile-number');
|
|
const $phoneNumber = $('#phone-number');
|
|
const $address = $('#address');
|
|
const $city = $('#city');
|
|
const $state = $('#state');
|
|
const $zipCode = $('#zip-code');
|
|
const $notes = $('#notes');
|
|
const $timezones = $('#timezone');
|
|
const $username = $('#username');
|
|
const $password = $('#password');
|
|
const $retypePassword = $('#retype-password');
|
|
const $calendarView = $('#calendar-view');
|
|
const notifications = $('#notifications');
|
|
const $saveSettings = $('#save-settings');
|
|
const $footerUserDisplayName = $('#footer-user-display-name');
|
|
|
|
/**
|
|
* Check if the form has invalid values.
|
|
*
|
|
* @return {Boolean}
|
|
*/
|
|
function isInvalid() {
|
|
try {
|
|
$('#account .is-invalid').removeClass('is-invalid');
|
|
|
|
// Validate required fields.
|
|
|
|
let missingRequiredFields = false;
|
|
|
|
$('#account .required').each((index, requiredField) => {
|
|
const $requiredField = $(requiredField);
|
|
|
|
if (!$requiredField.val()) {
|
|
$requiredField.addClass('is-invalid');
|
|
missingRequiredFields = true;
|
|
}
|
|
});
|
|
|
|
if (missingRequiredFields) {
|
|
throw new Error(App.Lang.fields_are_required);
|
|
}
|
|
|
|
// Validate passwords (if values provided).
|
|
|
|
if ($password.val() && $password.val() !== $retypePassword.val()) {
|
|
$password.addClass('is-invalid');
|
|
$retypePassword.addClass('is-invalid');
|
|
throw new Error(App.Lang.passwords_mismatch);
|
|
}
|
|
|
|
// Validate user email.
|
|
|
|
const emailValue = $email.val();
|
|
|
|
if (!App.Utils.Validation.email(emailValue)) {
|
|
$email.addClass('is-invalid');
|
|
throw new Error(App.Lang.invalid_email);
|
|
}
|
|
|
|
if ($username.hasClass('is-invalid')) {
|
|
throw new Error(App.Lang.username_already_exists);
|
|
}
|
|
|
|
return false;
|
|
} catch (error) {
|
|
Backend.displayNotification(error.message);
|
|
return true;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Apply the account values to the form.
|
|
*
|
|
* @param {Object} account
|
|
*/
|
|
function deserialize(account) {
|
|
$userId.val(account.id);
|
|
$firstName.val(account.first_name);
|
|
$lastName.val(account.last_name);
|
|
$email.val(account.email);
|
|
$mobileNumber.val(account.mobile_number);
|
|
$phoneNumber.val(account.phone_number);
|
|
$address.val(account.address);
|
|
$city.val(account.city);
|
|
$state.val(account.state);
|
|
$zipCode.val(account.zip_code);
|
|
$notes.val(account.notes);
|
|
$timezones.val(account.timezone);
|
|
$username.val(account.settings.username);
|
|
$password.val('');
|
|
$retypePassword.val('');
|
|
$calendarView.val(account.settings.calendar_view);
|
|
notifications.prop('checked', Boolean(Number(account.settings.notifications)));
|
|
}
|
|
|
|
/**
|
|
* Get the account information from the form.
|
|
*
|
|
* @return {Object}
|
|
*/
|
|
function serialize() {
|
|
return {
|
|
id: $userId.val(),
|
|
first_name: $firstName.val(),
|
|
last_name: $lastName.val(),
|
|
email: $email.val(),
|
|
mobile_number: $mobileNumber.val(),
|
|
phone_number: $phoneNumber.val(),
|
|
address: $address.val(),
|
|
city: $city.val(),
|
|
state: $state.val(),
|
|
zip_code: $zipCode.val(),
|
|
notes: $notes.val(),
|
|
timezone: $timezones.val(),
|
|
settings: {
|
|
username: $username.val(),
|
|
password: $password.val() || null,
|
|
calendar_view: $calendarView.val(),
|
|
notifications: Number(notifications.prop('checked'))
|
|
}
|
|
};
|
|
}
|
|
|
|
/**
|
|
* Save the account information.
|
|
*/
|
|
function onSaveSettingsClick() {
|
|
if (isInvalid()) {
|
|
Backend.displayNotification(App.Lang.user_settings_are_invalid);
|
|
|
|
return;
|
|
}
|
|
|
|
const account = serialize();
|
|
|
|
App.Http.Account.save(account).done(() => {
|
|
Backend.displayNotification(App.Lang.settings_saved);
|
|
|
|
$footerUserDisplayName.text('Hello, ' + $firstName.val() + ' ' + $lastName.val() + '!');
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Make sure the username is unique.
|
|
*/
|
|
function onUsernameChange() {
|
|
const username = $username.val();
|
|
|
|
App.Http.Account.validateUsername(username).done((response) => {
|
|
const isValid = response.is_valid;
|
|
$username.toggleClass('is-invalid', !isValid);
|
|
if (!isValid) {
|
|
Backend.displayNotification(App.Lang.username_already_exists);
|
|
}
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Initialize the page.
|
|
*/
|
|
function initialize() {
|
|
const account = App.Vars.account;
|
|
|
|
deserialize(account);
|
|
|
|
$saveSettings.on('click', onSaveSettingsClick);
|
|
|
|
$username.on('change', onUsernameChange);
|
|
|
|
Backend.placeFooterToBottom();
|
|
}
|
|
|
|
document.addEventListener('DOMContentLoaded', initialize);
|
|
|
|
return {};
|
|
})();
|