2016-10-04 21:52:48 +08:00
|
|
|
(function(){
|
|
|
|
'use strict';
|
|
|
|
/**
|
|
|
|
* Toggle the view/edit form visibility.
|
|
|
|
* @param form - The jQuery form selector.
|
|
|
|
* @param edit - True to set form to edit mode;
|
|
|
|
* false to set form to view mode.
|
|
|
|
*/
|
|
|
|
function toggleFormVisibility(form, edit) {
|
|
|
|
if (edit) {
|
|
|
|
form.find("[data-part='view']").hide();
|
|
|
|
form.find("[data-part='edit']").show();
|
|
|
|
form.find("[data-part='edit'] input:not([type='file']):not([type='submit']):first").focus();
|
|
|
|
} else {
|
|
|
|
form.find("[data-part='view']").show();
|
|
|
|
form.find("[data-part='edit'] input").blur();
|
|
|
|
form.find("[data-part='edit']").hide();
|
|
|
|
|
|
|
|
// Clear all errors on the parent form
|
|
|
|
form.clearFormErrors();
|
|
|
|
|
|
|
|
// Clear any neccesary fields
|
|
|
|
form.find("input[data-role='clear']").val("");
|
|
|
|
|
|
|
|
// Copy field data
|
|
|
|
var val = form.find("input[data-role='src']").val();
|
|
|
|
form.find("input[data-role='edit']").val(val);
|
|
|
|
}
|
2016-02-12 23:52:43 +08:00
|
|
|
}
|
|
|
|
|
2016-10-04 21:52:48 +08:00
|
|
|
var forms = $("form[data-for]");
|
2016-02-12 23:52:43 +08:00
|
|
|
|
2016-10-04 21:52:48 +08:00
|
|
|
// Add "edit form" listeners
|
|
|
|
forms
|
|
|
|
.find("[data-action='edit']").click(function() {
|
|
|
|
var form = $(this).closest("form");
|
2016-02-12 23:52:43 +08:00
|
|
|
|
2016-10-04 21:52:48 +08:00
|
|
|
// First, hide all form edits
|
|
|
|
_.each(forms, function(form) {
|
|
|
|
toggleFormVisibility($(form), false);
|
|
|
|
});
|
|
|
|
|
|
|
|
// Then, edit the current form
|
|
|
|
toggleFormVisibility(form, true);
|
2016-02-12 23:52:43 +08:00
|
|
|
});
|
|
|
|
|
2016-10-04 21:52:48 +08:00
|
|
|
// Add "cancel form" listeners
|
|
|
|
forms
|
|
|
|
.find("[data-action='cancel']").click(function() {
|
|
|
|
var form = $(this).closest("form");
|
2016-07-21 19:11:15 +08:00
|
|
|
|
2016-10-04 21:52:48 +08:00
|
|
|
// Hide the edit portion of the form
|
|
|
|
toggleFormVisibility(form, false);
|
2016-07-21 19:11:15 +08:00
|
|
|
});
|
|
|
|
|
2016-10-04 21:52:48 +08:00
|
|
|
// Add form submit listeners
|
|
|
|
forms
|
|
|
|
.on("ajax:success", function(ev, data, status) {
|
|
|
|
// Simply reload the page
|
|
|
|
location.reload();
|
|
|
|
})
|
|
|
|
.on("ajax:error", function(ev, data, status) {
|
|
|
|
// Render form errors
|
|
|
|
$(this).renderFormErrors("user", data.responseJSON);
|
2016-07-21 19:11:15 +08:00
|
|
|
});
|
2016-10-04 21:52:48 +08:00
|
|
|
|
|
|
|
var repeatTutorialModal = $("#repeat-tutorial-modal");
|
|
|
|
var repeatTutorialModalBody = repeatTutorialModal.find(".modal-body");
|
|
|
|
initRepeatTutorialModal();
|
|
|
|
notificationsSettings();
|
|
|
|
initNotificationSettingsForm();
|
|
|
|
|
|
|
|
$("#reset-tutorial-btn")
|
|
|
|
.on("ajax:before", function () {
|
|
|
|
repeatTutorialModal.modal('show');
|
|
|
|
})
|
|
|
|
|
|
|
|
.on("ajax:success", function (e, data) {
|
|
|
|
initRepeatTutorialModalBody(data);
|
|
|
|
});
|
|
|
|
|
|
|
|
function initRepeatTutorialModal() {
|
|
|
|
// Remove modal content when modal window is closed.
|
|
|
|
repeatTutorialModal.on("hidden.bs.modal", function () {
|
|
|
|
repeatTutorialModalBody.html("");
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
// Initialize ajax listeners and elements style on modal body. This
|
|
|
|
// function must be called when modal body is changed.
|
|
|
|
function initRepeatTutorialModalBody(data) {
|
|
|
|
repeatTutorialModalBody.html(data.html);
|
|
|
|
repeatTutorialModalBody.find(".selectpicker").selectpicker();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Setup notification checkbox buttons
|
|
|
|
function notificationsSettings() {
|
2016-10-06 19:47:48 +08:00
|
|
|
var notification_settings = [ "recent_notification",
|
|
|
|
"assignments_notification" ]
|
|
|
|
|
|
|
|
for (var i = 0; i < notification_settings.length; i++ ) {
|
|
|
|
var setting = $('[name="' + notification_settings[i] + '"]');
|
|
|
|
var dependant = $('[name="' + notification_settings[i] + '_email"]');
|
2016-10-20 20:17:07 +08:00
|
|
|
dependant.checkboxpicker({ onActiveCls: 'btn-primary' });
|
2016-10-06 19:47:48 +08:00
|
|
|
setting
|
|
|
|
.checkboxpicker({
|
|
|
|
onActiveCls: 'btn-primary'
|
|
|
|
}).change(function() {
|
|
|
|
if ( $(this).prop('checked') ) {
|
|
|
|
enableDependant($('[name="' + $(this).attr('name') + '_email"]'));
|
|
|
|
} else {
|
|
|
|
disableDependant($('[name="' + $(this).attr('name') + '_email"]'));
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
if ( setting.attr('value') === 'true' ) {
|
|
|
|
setting.prop('checked', true);
|
|
|
|
} else {
|
|
|
|
setting.prop('checked', false);
|
|
|
|
disableDependant(dependant);
|
|
|
|
}
|
|
|
|
|
|
|
|
setEmailSwitch(dependant);
|
|
|
|
}
|
2016-10-04 21:52:48 +08:00
|
|
|
|
2016-10-06 19:47:48 +08:00
|
|
|
function setEmailSwitch(setting) {
|
|
|
|
setting
|
|
|
|
.checkboxpicker({
|
|
|
|
onActiveCls: 'btn-primary'
|
|
|
|
});
|
|
|
|
if ( setting.attr('value') === 'true' ) {
|
|
|
|
setting.prop('checked', true);
|
|
|
|
enableDependant(setting);
|
|
|
|
} else {
|
|
|
|
setting.prop('checked', false);
|
|
|
|
}
|
2016-10-04 21:52:48 +08:00
|
|
|
}
|
|
|
|
|
2016-10-06 19:47:48 +08:00
|
|
|
function disableDependant(dependant) {
|
|
|
|
dependant.checkboxpicker().prop('disabled', true);
|
|
|
|
dependant.checkboxpicker().prop('checked', false);
|
|
|
|
}
|
2016-10-04 21:52:48 +08:00
|
|
|
|
2016-10-06 19:47:48 +08:00
|
|
|
function enableDependant(dependant) {
|
|
|
|
dependant.checkboxpicker().prop('disabled', false);
|
2016-10-04 21:52:48 +08:00
|
|
|
}
|
2016-10-12 16:42:07 +08:00
|
|
|
|
2016-10-12 17:50:26 +08:00
|
|
|
// Initialize system messages
|
2016-10-12 16:42:07 +08:00
|
|
|
var system_message_notification = $('[name="system_message_notification"]');
|
|
|
|
system_message_notification
|
|
|
|
.checkboxpicker({
|
|
|
|
onActiveCls: 'btn-primary'
|
|
|
|
});
|
|
|
|
system_message_notification.prop('checked', true);
|
|
|
|
system_message_notification.prop('disabled', true);
|
2016-10-12 17:50:26 +08:00
|
|
|
|
|
|
|
// Initialize system messages email
|
|
|
|
var system_message_notification_mail = $('[name="system_message_notification_email"]');
|
|
|
|
system_message_notification_mail
|
|
|
|
.checkboxpicker({
|
|
|
|
onActiveCls: 'btn-primary'
|
|
|
|
});
|
|
|
|
system_message_notification_mail.prop(
|
|
|
|
'checked',
|
|
|
|
system_message_notification_mail.attr('value') === 'true'
|
|
|
|
);
|
2016-10-04 21:52:48 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// triggers submit action when the user clicks
|
|
|
|
function initNotificationSettingsForm() {
|
|
|
|
$('#notifications-settings-panel')
|
|
|
|
.find('.btn-group')
|
|
|
|
.on('click', function() {
|
|
|
|
$(this).submit();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
})();
|