2013-09-14 19:10:59 +03:00
|
|
|
/**
|
|
|
|
* Contains the functionality of the backend settings page. Can either work for
|
|
|
|
* system or user settings, but the actions allowed to the user are restricted to
|
|
|
|
* his role (only admin has full privileges).
|
|
|
|
*
|
|
|
|
* @namespace BackendSettings
|
|
|
|
*/
|
|
|
|
var BackendSettings = {
|
|
|
|
SETTINGS_SYSTEM: 'SETTINGS_SYSTEM',
|
|
|
|
SETTINGS_USER: 'SETTINGS_USER',
|
|
|
|
|
2013-09-18 19:36:29 +03:00
|
|
|
/**
|
|
|
|
* This flag is used when trying to cancel row editing. It is
|
|
|
|
* true only whenever the user presses the cancel button.
|
|
|
|
*
|
|
|
|
* @type {bool}
|
|
|
|
*/
|
|
|
|
enableCancel: false,
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This flag determines whether the jeditables are allowed to submit. It is
|
|
|
|
* true only whenever the user presses the save button.
|
|
|
|
*
|
|
|
|
* @type {bool}
|
|
|
|
*/
|
|
|
|
enableSubmit: false,
|
|
|
|
|
2013-09-14 19:10:59 +03:00
|
|
|
/**
|
|
|
|
* Tab settings object.
|
|
|
|
*
|
|
|
|
* @type {object}
|
|
|
|
*/
|
|
|
|
settings: {},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Initialize Page
|
|
|
|
*
|
|
|
|
* @param {bool} bindEventHandlers (OPTIONAL)Determines whether to bind the default event
|
|
|
|
* handlers (default = true).
|
|
|
|
* @returns {undefined}
|
|
|
|
*/
|
|
|
|
initialize: function(bindEventHandlers) {
|
|
|
|
if (bindEventHandlers == undefined) bindEventHandlers = true;
|
|
|
|
|
2013-09-20 16:58:11 +03:00
|
|
|
// Apply setting values from database.
|
2013-09-14 19:10:59 +03:00
|
|
|
$.each(GlobalVariables.settings.system, function(index, setting) {
|
2013-09-18 19:36:29 +03:00
|
|
|
$('input[data-field="' + setting.name + '"]').val(setting.value);
|
|
|
|
});
|
|
|
|
|
|
|
|
var workingPlan = {};
|
|
|
|
$.each(GlobalVariables.settings.system, function(index, setting) {
|
|
|
|
if (setting.name == 'company_working_plan') {
|
|
|
|
workingPlan = $.parseJSON(setting.value);
|
|
|
|
return false;
|
|
|
|
}
|
2013-09-14 19:10:59 +03:00
|
|
|
});
|
|
|
|
|
2013-09-18 19:36:29 +03:00
|
|
|
$.each(workingPlan, function(index, workingDay) {
|
|
|
|
if (workingDay != null) {
|
|
|
|
$('#' + index).prop('checked', true);
|
|
|
|
$('#' + index + '-start').val(workingDay.start);
|
|
|
|
$('#' + index + '-end').val(workingDay.end);
|
|
|
|
|
|
|
|
// Add the day's breaks on the breaks table.
|
|
|
|
$.each(workingDay.breaks, function(i, brk) {
|
|
|
|
var tr =
|
|
|
|
'<tr>' +
|
|
|
|
'<td class="break-day editable">' + GeneralFunctions.ucaseFirstLetter(index) + '</td>' +
|
|
|
|
'<td class="break-start editable">' + brk.start + '</td>' +
|
|
|
|
'<td class="break-end editable">' + brk.end + '</td>' +
|
|
|
|
'<td>' +
|
|
|
|
'<button type="button" class="btn edit-break" title="Edit Break">' +
|
|
|
|
'<i class="icon-pencil"></i>' +
|
|
|
|
'</button>' +
|
|
|
|
'<button type="button" class="btn delete-break" title="Delete Break">' +
|
|
|
|
'<i class="icon-remove"></i>' +
|
|
|
|
'</button>' +
|
|
|
|
'<button type="button" class="btn save-break hidden" title="Save Break">' +
|
|
|
|
'<i class="icon-ok"></i>' +
|
|
|
|
'</button>' +
|
|
|
|
'<button type="button" class="btn cancel-break hidden" title="Cancel Break">' +
|
|
|
|
'<i class="icon-ban-circle"></i>' +
|
|
|
|
'</button>' +
|
|
|
|
'</td>' +
|
|
|
|
'</tr>';
|
|
|
|
$('#breaks').append(tr);
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
$('#' + index).prop('checked', false);
|
|
|
|
$('#' + index + '-start').prop('disabled', true);
|
|
|
|
$('#' + index + '-end').prop('disabled', true);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
// Make break cells editable.
|
2013-09-20 16:58:11 +03:00
|
|
|
BackendSettings.editableBreakDay($('#breaks .break-day'));
|
|
|
|
BackendSettings.editableBreakTime($('#breaks').find('.break-start, .break-end'));
|
2013-09-18 19:36:29 +03:00
|
|
|
|
|
|
|
// Set timepickers where needed.
|
2013-09-20 16:58:11 +03:00
|
|
|
$('.working-plan input').timepicker({
|
|
|
|
'timeFormat': 'HH:mm',
|
|
|
|
'onSelect': function(datetime, inst) {
|
|
|
|
// Start time must be earlier than end time.
|
|
|
|
var start = Date.parse($(this).parent().parent().find('.work-start').val());
|
|
|
|
var end = Date.parse($(this).parent().parent().find('.work-end').val());
|
|
|
|
|
|
|
|
if (start > end) {
|
|
|
|
$(this).parent().parent().find('.work-end').val(start.addHours(1).toString('HH:mm'));
|
|
|
|
}
|
|
|
|
}
|
2013-09-18 19:36:29 +03:00
|
|
|
});
|
|
|
|
|
|
|
|
// Book Advance Timeout Spinner
|
|
|
|
$('#book-advance-timeout').spinner({
|
2013-09-20 16:58:11 +03:00
|
|
|
'min': 0
|
2013-09-18 19:36:29 +03:00
|
|
|
});
|
|
|
|
|
2013-09-20 16:58:11 +03:00
|
|
|
// Load user settings into form
|
|
|
|
$('#user-id').val(GlobalVariables.settings.user.id);
|
|
|
|
$('#first-name').val(GlobalVariables.settings.user.first_name);
|
|
|
|
$('#last-name').val(GlobalVariables.settings.user.last_name);
|
|
|
|
$('#email').val(GlobalVariables.settings.user.email);
|
|
|
|
$('#mobile-number').val(GlobalVariables.settings.user.mobile_number);
|
|
|
|
$('#phone-number').val(GlobalVariables.settings.user.phone_number);
|
|
|
|
$('#address').val(GlobalVariables.settings.user.address);
|
|
|
|
$('#city').val(GlobalVariables.settings.user.city);
|
|
|
|
$('#state').val(GlobalVariables.settings.user.state);
|
|
|
|
$('#zip-code').val(GlobalVariables.settings.user.zip_code);
|
|
|
|
$('#notes').val(GlobalVariables.settings.user.notes);
|
|
|
|
|
|
|
|
$('#username').val(GlobalVariables.settings.user.settings.username);
|
|
|
|
$('#password, #retype-password').val('');
|
|
|
|
|
|
|
|
if (GlobalVariables.settings.user.settings.notifications == true) {
|
|
|
|
$('#user-notifications').addClass('active');
|
|
|
|
} else {
|
|
|
|
$('#user-notifications').removeClass('active');
|
|
|
|
}
|
|
|
|
|
2013-09-18 19:36:29 +03:00
|
|
|
// Set default settings helper.
|
|
|
|
BackendSettings.settings = new SystemSettings();
|
|
|
|
|
2013-09-14 19:10:59 +03:00
|
|
|
if (bindEventHandlers) {
|
|
|
|
BackendSettings.bindEventHandlers();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2013-09-20 16:58:11 +03:00
|
|
|
/**
|
|
|
|
* Bind the backend/settings default event handlers. This method depends on the
|
|
|
|
* backend/settings html, so do not use this method on a different page.
|
|
|
|
*/
|
2013-09-14 19:10:59 +03:00
|
|
|
bindEventHandlers: function() {
|
|
|
|
/**
|
|
|
|
* Event: Tab "Click"
|
|
|
|
*
|
|
|
|
* Change the visible tab contents.
|
|
|
|
*/
|
|
|
|
$('.tab').click(function() {
|
2013-09-20 16:58:11 +03:00
|
|
|
// Bootstrap has a bug with toggle buttons. Their toggle state is lost when the
|
|
|
|
// button is hidden or shown. Show before anything else we need to store the toggle
|
|
|
|
// and apply it whenever the user tab is clicked..
|
|
|
|
var areNotificationsActive = $('#user-notifications').hasClass('active');
|
|
|
|
|
2013-09-14 19:10:59 +03:00
|
|
|
$('.active').removeClass('active');
|
|
|
|
$(this).addClass('active');
|
|
|
|
$('.tab-content').hide();
|
|
|
|
|
|
|
|
if ($(this).hasClass('general-tab')) {
|
|
|
|
$('#general').show();
|
|
|
|
BackendSettings.settings = new SystemSettings();
|
|
|
|
} else if ($(this).hasClass('business-logic-tab')) {
|
|
|
|
$('#business-logic').show();
|
|
|
|
BackendSettings.settings = new SystemSettings();
|
|
|
|
} else if ($(this).hasClass('user-tab')) {
|
|
|
|
$('#user').show();
|
|
|
|
BackendSettings.settings = new UserSettings();
|
2013-09-20 16:58:11 +03:00
|
|
|
|
|
|
|
// Apply toggle state to user notifications button.
|
|
|
|
if (areNotificationsActive) {
|
|
|
|
$('#user-notifications').addClass('active');
|
|
|
|
} else {
|
|
|
|
$('#user-notifications').removeClass('active');
|
|
|
|
}
|
2013-09-14 19:10:59 +03:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Event: Save Settings Button "Click"
|
|
|
|
*
|
|
|
|
* Store the setting changes into the database.
|
|
|
|
*/
|
|
|
|
$('.save-settings').click(function() {
|
|
|
|
var settings = BackendSettings.settings.get();
|
2013-09-18 19:36:29 +03:00
|
|
|
BackendSettings.settings.save(settings);
|
2013-09-20 16:58:11 +03:00
|
|
|
//////////////////////////////////////////////
|
|
|
|
console.log('Settings To Save: ', settings);
|
|
|
|
//////////////////////////////////////////////
|
2013-09-18 19:36:29 +03:00
|
|
|
});
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Event: Day Checkbox "Click"
|
|
|
|
*
|
|
|
|
* Enable or disable the time selection for each day.
|
|
|
|
*/
|
2013-09-20 16:58:11 +03:00
|
|
|
$('.working-plan input[type="checkbox"]').click(function() {
|
2013-09-18 19:36:29 +03:00
|
|
|
var id = $(this).attr('id');
|
|
|
|
|
|
|
|
if ($(this).prop('checked') == true) {
|
|
|
|
$('#' + id + '-start').prop('disabled', false).val('09:00');
|
|
|
|
$('#' + id + '-end').prop('disabled', false).val('18:00');
|
|
|
|
} else {
|
|
|
|
$('#' + id + '-start').prop('disabled', true).val('');
|
|
|
|
$('#' + id + '-end').prop('disabled', true).val('');
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Event: Add Break Button "Click"
|
|
|
|
*
|
|
|
|
* A new row is added on the table and the user can enter the new break
|
|
|
|
* data. After that he can either press the save or cancel button.
|
|
|
|
*/
|
|
|
|
$('.add-break').click(function() {
|
|
|
|
var tr =
|
|
|
|
'<tr>' +
|
|
|
|
'<td class="break-day editable">Monday</td>' +
|
|
|
|
'<td class="break-start editable">09:00</td>' +
|
|
|
|
'<td class="break-end editable">10:00</td>' +
|
|
|
|
'<td>' +
|
|
|
|
'<button type="button" class="btn edit-break" title="Edit Break">' +
|
|
|
|
'<i class="icon-pencil"></i>' +
|
|
|
|
'</button>' +
|
|
|
|
'<button type="button" class="btn delete-break" title="Delete Break">' +
|
|
|
|
'<i class="icon-remove"></i>' +
|
|
|
|
'</button>' +
|
|
|
|
'<button type="button" class="btn save-break hidden" title="Save Break">' +
|
|
|
|
'<i class="icon-ok"></i>' +
|
|
|
|
'</button>' +
|
|
|
|
'<button type="button" class="btn cancel-break hidden" title="Cancel Break">' +
|
|
|
|
'<i class="icon-ban-circle"></i>' +
|
|
|
|
'</button>' +
|
|
|
|
'</td>' +
|
|
|
|
'</tr>';
|
|
|
|
$('#breaks').prepend(tr);
|
|
|
|
|
|
|
|
// Bind editable and event handlers.
|
|
|
|
tr = $('#breaks tr').get()[1];
|
2013-09-20 16:58:11 +03:00
|
|
|
BackendSettings.editableBreakDay($(tr).find('.break-day'));
|
|
|
|
BackendSettings.editableBreakTime($(tr).find('.break-start, .break-end'));
|
2013-09-18 19:36:29 +03:00
|
|
|
$(tr).find('.edit-break').trigger('click');
|
|
|
|
});
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Event: Edit Break Button "Click"
|
|
|
|
*
|
|
|
|
* Enables the row editing for the "Breaks" table rows.
|
|
|
|
*/
|
|
|
|
$(document).on('click', '.edit-break', function() {
|
|
|
|
// Reset previous editable tds
|
|
|
|
var $previousEdt = $(this).closest('table').find('.editable').get();
|
|
|
|
$.each($previousEdt, function(index, edt) {
|
|
|
|
edt.reset();
|
|
|
|
});
|
|
|
|
|
|
|
|
// Make all cells in current row editable.
|
|
|
|
$(this).parent().parent().children().trigger('edit');
|
|
|
|
$(this).parent().parent().find('.break-start input, .break-end input').timepicker();
|
|
|
|
$(this).parent().parent().find('.break-day select').focus();
|
|
|
|
|
|
|
|
// Show save - cancel buttons.
|
|
|
|
$(this).closest('table').find('.edit-break, .delete-break').addClass('hidden');
|
|
|
|
$(this).parent().find('.save-break, .cancel-break').removeClass('hidden');
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Event: Delete Break Button "Click"
|
|
|
|
*
|
|
|
|
* Removes the current line from the "Breaks" table.
|
|
|
|
*/
|
|
|
|
$(document).on('click', '.delete-break', function() {
|
|
|
|
$(this).parent().parent().remove();
|
|
|
|
});
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Event: Cancel Break Button "Click"
|
|
|
|
*
|
|
|
|
* Bring the "#breaks" table back to its initial state.
|
|
|
|
*/
|
|
|
|
$(document).on('click', '.cancel-break', function() {
|
|
|
|
BackendSettings.enableCancel = true;
|
|
|
|
$(this).parent().parent().find('.cancel-editable').trigger('click');
|
|
|
|
BackendSettings.enableCancel = false;
|
|
|
|
|
|
|
|
$(this).closest('table').find('.edit-break, .delete-break').removeClass('hidden');
|
|
|
|
$(this).parent().find('.save-break, .cancel-break').addClass('hidden');
|
|
|
|
});
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Event: Save Break Button "Click"
|
|
|
|
*
|
|
|
|
* Save the editable values and restore the table to its initial state.
|
|
|
|
*/
|
|
|
|
$(document).on('click', '.save-break', function() {
|
2013-09-20 16:58:11 +03:00
|
|
|
// Break's start time must always be prior to break's end.
|
|
|
|
var start = Date.parse($(this).parent().parent().find('.break-start input').val());
|
|
|
|
var end = Date.parse($(this).parent().parent().find('.break-end input').val());
|
|
|
|
if (start > end) {
|
|
|
|
$(this).parent().parent().find('.break-end input').val(start.addHours(1).toString('HH:mm'));
|
|
|
|
}
|
|
|
|
|
2013-09-18 19:36:29 +03:00
|
|
|
BackendSettings.enableSubmit = true;
|
|
|
|
$(this).parent().parent().find('.editable .submit-editable').trigger('click');
|
|
|
|
BackendSettings.enableSubmit = false;
|
|
|
|
|
|
|
|
$(this).closest('table').find('.edit-break, .delete-break').removeClass('hidden');
|
|
|
|
$(this).parent().find('.save-break, .cancel-break').addClass('hidden');
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Initialize the editable functionality to the break day table cells.
|
|
|
|
*
|
|
|
|
* @param {object} $selector The cells to be initialized.
|
|
|
|
*/
|
2013-09-20 16:58:11 +03:00
|
|
|
editableBreakDay: function($selector) {
|
2013-09-18 19:36:29 +03:00
|
|
|
$selector.editable(function(value, settings) {
|
|
|
|
return value;
|
|
|
|
}, {
|
|
|
|
'type': 'select',
|
|
|
|
'data': '{ "Monday": "Monday", "Tuesday": "Tuesday", "Wednesday": "Wednesday", '
|
|
|
|
+ '"Thursday": "Thursday", "Friday": "Friday", "Saturday": "Saturday", '
|
|
|
|
+ '"Sunday": "Sunday", "selected": "Monday"}',
|
|
|
|
'event': 'edit',
|
|
|
|
'height': '30px',
|
|
|
|
'submit': '<button type="button" class="hidden submit-editable">Submit</button>',
|
|
|
|
'cancel': '<button type="button" class="hidden cancel-editable">Cancel</button>',
|
|
|
|
'onblur': 'ignore',
|
|
|
|
'onreset': function(settings, td) {
|
|
|
|
if (!BackendSettings.enableCancel) return false; // disable ESC button
|
|
|
|
},
|
|
|
|
'onsubmit': function(settings, td) {
|
|
|
|
if (!BackendSettings.enableSubmit) return false; // disable Enter button
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Initialize the editable functionality to the break time table cells.
|
|
|
|
*
|
|
|
|
* @param {object} $selector The cells to be initialized.
|
|
|
|
*/
|
2013-09-20 16:58:11 +03:00
|
|
|
editableBreakTime: function($selector) {
|
2013-09-18 19:36:29 +03:00
|
|
|
$selector.editable(function(value, settings) {
|
|
|
|
// Do not return the value because the user needs to press the "Save" button.
|
|
|
|
return value;
|
|
|
|
}, {
|
|
|
|
'event': 'edit',
|
|
|
|
'height': '25px',
|
|
|
|
'submit': '<button type="button" class="hidden submit-editable">Submit</button>',
|
|
|
|
'cancel': '<button type="button" class="hidden cancel-editable">Cancel</button>',
|
|
|
|
'onblur': 'ignore',
|
|
|
|
'onreset': function(settings, td) {
|
|
|
|
if (!BackendSettings.enableCancel) return false; // disable ESC button
|
|
|
|
},
|
|
|
|
'onsubmit': function(settings, td) {
|
|
|
|
if (!BackendSettings.enableSubmit) return false; // disable Enter button
|
|
|
|
}
|
2013-09-14 19:10:59 +03:00
|
|
|
});
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* "System Settings" Tab Helper
|
|
|
|
* @class SystemSettings
|
|
|
|
*/
|
|
|
|
var SystemSettings = function() {};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Save the system settings. This method is run after changes are detected on the
|
|
|
|
* tab input fields.
|
|
|
|
*
|
|
|
|
* @param {array} settings Contains the system settings data.
|
|
|
|
*/
|
|
|
|
SystemSettings.prototype.save = function(settings) {
|
|
|
|
var postUrl = GlobalVariables.baseUrl + 'backend_api/ajax_save_settings';
|
|
|
|
var postData = {
|
|
|
|
'settings': JSON.stringify(settings),
|
|
|
|
'type': BackendSettings.SETTINGS_SYSTEM
|
|
|
|
};
|
|
|
|
|
|
|
|
$.post(postUrl, postData, function(response) {
|
|
|
|
///////////////////////////////////////////////////////////
|
|
|
|
console.log('Save General Settings Response:', response);
|
|
|
|
///////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
if (!Backend.handleAjaxExceptions(response)) return;
|
|
|
|
|
|
|
|
Backend.displayNotification('Settings saved successfully!');
|
|
|
|
}, 'json');
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Prepare the system settings array. This method uses the DOM elements of the
|
|
|
|
* backend/settings page, so it can't be used in another page.
|
|
|
|
*
|
|
|
|
* @returns {array} Returns the system settings array.
|
|
|
|
*/
|
|
|
|
SystemSettings.prototype.get = function() {
|
2013-09-18 19:36:29 +03:00
|
|
|
var settings = [];
|
2013-09-14 19:10:59 +03:00
|
|
|
|
|
|
|
// General Settings Tab
|
|
|
|
$('#general input').each(function() {
|
2013-09-18 19:36:29 +03:00
|
|
|
settings.push({
|
|
|
|
'name': $(this).attr('data-field'),
|
|
|
|
'value': $(this).val()
|
|
|
|
});
|
2013-09-14 19:10:59 +03:00
|
|
|
});
|
|
|
|
|
|
|
|
// Business Logic Tab
|
2013-09-18 19:36:29 +03:00
|
|
|
var workingPlan = {};
|
2013-09-20 16:58:11 +03:00
|
|
|
$('.working-plan input[type="checkbox"').each(function() {
|
2013-09-18 19:36:29 +03:00
|
|
|
var id = $(this).attr('id');
|
|
|
|
if ($(this).prop('checked') == true) {
|
|
|
|
workingPlan[id] = {}
|
|
|
|
workingPlan[id].start = $('#' + id + '-start').val();
|
|
|
|
workingPlan[id].end = $('#' + id + '-end').val();
|
2013-09-20 16:58:11 +03:00
|
|
|
workingPlan[id].breaks = [];
|
|
|
|
|
|
|
|
$('#breaks tr').each(function(index, tr) {
|
|
|
|
var day = $(tr).find('.break-day').text().toLowerCase();
|
|
|
|
if (day == id) {
|
|
|
|
var start = $(tr).find('.break-start').text();
|
|
|
|
var end = $(tr).find('.break-end').text();
|
|
|
|
|
|
|
|
workingPlan[id].breaks.push({
|
|
|
|
'start': start,
|
|
|
|
'end': end
|
|
|
|
});
|
|
|
|
|
|
|
|
}
|
|
|
|
});
|
2013-09-18 19:36:29 +03:00
|
|
|
|
|
|
|
} else {
|
|
|
|
workingPlan[id] = null;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
settings.push({
|
|
|
|
'name': 'company_working_plan',
|
|
|
|
'value': JSON.stringify(workingPlan)
|
|
|
|
});
|
2013-09-14 19:10:59 +03:00
|
|
|
|
2013-09-20 16:58:11 +03:00
|
|
|
settings.push({
|
|
|
|
'name': 'book_advance_timeout',
|
|
|
|
'value': $('#book-advance-timeout').val()
|
|
|
|
});
|
|
|
|
|
2013-09-14 19:10:59 +03:00
|
|
|
return settings;
|
|
|
|
};
|
|
|
|
|
2013-09-18 19:36:29 +03:00
|
|
|
/**
|
|
|
|
* Validate the settings data. If the validation fails then display a
|
|
|
|
* message to the user.
|
|
|
|
*
|
|
|
|
* @returns {bool} Returns the validation result.
|
|
|
|
*/
|
|
|
|
SystemSettings.prototype.validate = function() {
|
2013-09-20 16:58:11 +03:00
|
|
|
$('#general .required').css('border', '');
|
2013-09-18 19:36:29 +03:00
|
|
|
|
2013-09-20 16:58:11 +03:00
|
|
|
try {
|
|
|
|
// Validate required fields.
|
|
|
|
var missingRequired = false;
|
|
|
|
$('#general .required').each(function() {
|
|
|
|
if ($(this).val() == '' || $(this).val() == undefined) {
|
|
|
|
$(this).css('border', '2px solid red');
|
|
|
|
missingRequired = true;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
if (missingRequired) {
|
|
|
|
throw 'Fields with * are required.';
|
|
|
|
}
|
|
|
|
|
|
|
|
// Validate company email address.
|
|
|
|
if (!GeneralFunctions.validateEmail($('#company-email').val())) {
|
|
|
|
$('#company-email').css('border', '2px solid red');
|
|
|
|
throw 'Invalid email address!';
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
} catch(exc) {
|
|
|
|
Backend.displayNotification(exc);
|
|
|
|
return false;
|
|
|
|
}
|
2013-09-18 19:36:29 +03:00
|
|
|
};
|
|
|
|
|
2013-09-14 19:10:59 +03:00
|
|
|
/**
|
|
|
|
* "User Settings" Tab Helper
|
|
|
|
* @class UserSettings
|
|
|
|
*/
|
|
|
|
var UserSettings = function() {};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the settings data for the user settings.
|
|
|
|
*
|
2013-09-20 16:58:11 +03:00
|
|
|
* @returns {object} Returns the user settings array.
|
2013-09-14 19:10:59 +03:00
|
|
|
*/
|
|
|
|
UserSettings.prototype.get = function() {
|
2013-09-20 16:58:11 +03:00
|
|
|
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(),
|
|
|
|
'settings': {
|
|
|
|
'username': $('#username').val(),
|
|
|
|
'password': $('#password').val(),
|
|
|
|
'notifications': $('#user-notifications').hasClass('active')
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
if ($('#password').val() != '') {
|
|
|
|
user.settings.password = $('#password').val();
|
|
|
|
}
|
2013-09-14 19:10:59 +03:00
|
|
|
|
2013-09-20 16:58:11 +03:00
|
|
|
return user;
|
2013-09-18 19:36:29 +03:00
|
|
|
};
|
2013-09-14 19:10:59 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Store the user settings into the database.
|
|
|
|
*
|
|
|
|
* @param {array} settings Contains the user settings.
|
|
|
|
*/
|
|
|
|
UserSettings.prototype.save = function(settings) {
|
2013-09-20 16:58:11 +03:00
|
|
|
if (!BackendSettings.settings.validate(settings)) {
|
|
|
|
Backend.displayNotification('User settings are invalid! Please review your settings '
|
|
|
|
+ 'and try again.');
|
|
|
|
return; // Validation failed, do not procceed.
|
|
|
|
}
|
2013-09-14 19:10:59 +03:00
|
|
|
|
2013-09-20 16:58:11 +03:00
|
|
|
var postUrl = GlobalVariables.baseUrl + 'backend_api/ajax_save_settings';
|
|
|
|
var postData = {
|
|
|
|
'type': BackendSettings.SETTINGS_USER,
|
|
|
|
'settings': JSON.stringify(settings)
|
|
|
|
};
|
|
|
|
|
|
|
|
$.post(postUrl, postData, function(response) {
|
|
|
|
//////////////////////////////////////////////////////////
|
|
|
|
console.log('Save User Settings Response: ', response);
|
|
|
|
//////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
if (!Backend.handleAjaxExceptions(response)) return;
|
|
|
|
Backend.displayNotification('Settings saved successfully!');
|
|
|
|
|
|
|
|
}, 'json');
|
2013-09-18 19:36:29 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Validate the settings data. If the validation fails then display a
|
|
|
|
* message to the user.
|
|
|
|
*
|
|
|
|
* @returns {bool} Returns the validation result.
|
|
|
|
*/
|
|
|
|
UserSettings.prototype.validate = function() {
|
2013-09-20 16:58:11 +03:00
|
|
|
$('#user .required').css('border', '');
|
|
|
|
$('#user').find('#password, #retype-password').css('border', '');
|
|
|
|
|
|
|
|
try {
|
|
|
|
// Validate required fields.
|
|
|
|
var missingRequired = false;
|
|
|
|
$('#user .required').each(function() {
|
|
|
|
if ($(this).val() == '' || $(this).val() == undefined) {
|
|
|
|
$(this).css('border', '2px solid red');
|
|
|
|
missingRequired = true;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
if (missingRequired) {
|
|
|
|
throw 'Fields with * are required.';
|
|
|
|
}
|
|
|
|
|
|
|
|
// Validate passwords (if provided).
|
|
|
|
if ($('#password').val() != $('#retype-password').val()) {
|
|
|
|
$('#password, #retype-password').css('border', '2px solid red');
|
|
|
|
throw 'Passwords mismatch!';
|
|
|
|
}
|
|
|
|
|
|
|
|
// Validate user email.
|
|
|
|
if (!GeneralFunctions.validateEmail($('#email').val())) {
|
|
|
|
$('#email').css('border', '2px solid red');
|
|
|
|
throw 'Invalid email address!';
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
} catch(exc) {
|
|
|
|
Backend.displayNotification(exc);
|
|
|
|
return false;
|
|
|
|
}
|
2013-09-18 19:36:29 +03:00
|
|
|
};
|