scinote-web/app/assets/javascripts/experiments/dropdown_actions.js

146 lines
4.3 KiB
JavaScript
Raw Normal View History

2016-08-16 15:48:19 +08:00
(function(){
// Create ajax hook on given 'element', which should return modal with 'id' =>
// show that modal
function initializeModal(element, id){
// Initialize new experiment modal listener
2016-08-16 15:48:19 +08:00
$(element)
.on("ajax:beforeSend", function(){
animateSpinner();
})
.on("ajax:success", function(e, data){
$('body').append($.parseHTML(data.html));
$(id).modal('show',{
backdrop: true,
keyboard: false,
});
validateMoveModal(id);
clearModal($(id));
2017-04-20 23:55:28 +08:00
validateExperimentForm(id);
2016-08-16 15:48:19 +08:00
})
.on("ajax:error", function() {
animateSpinner(null, false);
// TODO
})
.on("ajax:complete", function(){
animateSpinner(null, false);
$(id).find('.selectpicker').selectpicker();
2016-08-16 15:48:19 +08:00
});
}
function clearModal(id) {
//Completely remove modal when it gets closed
$(id).on('hidden.bs.modal', function() {
$(id).remove();
});
}
2016-08-16 15:48:19 +08:00
// Initialize dropdown actions on experiment:
// - edit
// - clone
function initializeDropdownActions(){
// { buttonClass: modalName } mappings
// click on buttonClass summons modalName dialog
modals = {
'.edit-experiment': '#edit-experiment-modal-',
'.clone-experiment': '#clone-experiment-modal-',
2016-08-16 15:48:19 +08:00
'.move-experiment': '#move-experiment-modal-'
};
2016-08-16 15:48:19 +08:00
$.each($(".dropdown-experiment-actions"), function(){
var $dropdown = $(this);
$.each(modals, function(buttonClass, modalName) {
var id = modalName + $dropdown.data('id');
initializeModal($dropdown.find(buttonClass), id);
});
});
}
// Validates move action
function validateMoveModal(modal){
if ( modal.match(/#move-experiment-modal-[0-9]*/) ) {
var form = $(modal).find("form");
form
.on('ajax:success', function(e, data) {
animateSpinner(form, true);
window.location.replace(data.path);
})
.on('ajax:error', function(e, error) {
form.clearFormErrors();
var msg = JSON.parse(error.responseText);
renderFormError(e,
form.find("#experiment_project_id"),
2016-09-16 15:04:21 +08:00
msg.message.toString());
});
}
2016-09-06 17:57:03 +08:00
}
2017-04-20 23:55:28 +08:00
2016-09-22 15:29:38 +08:00
// Reload after successfully updated experiment
2016-09-22 16:18:21 +08:00
function validateExperimentForm(element){
2017-04-20 23:55:28 +08:00
if ( $(element) ) {
var form = $(element).find("form");
2016-09-22 15:29:38 +08:00
form
2017-04-20 23:55:28 +08:00
.on('ajax:success' , function(e, data){
2016-09-22 15:29:38 +08:00
animateSpinner(form, true);
2017-04-20 23:55:28 +08:00
if ( element.match(/#new-experiment-modal/) ) {
window.location.replace(data.path);
} else {
location.reload();
}
2016-09-22 16:18:21 +08:00
})
.on('ajax:error', function(e, error){
var msg = JSON.parse(error.responseText);
if ( 'name' in msg ) {
renderFormError(e,
2017-04-20 23:55:28 +08:00
$(element).find("#experiment-name"),
2016-09-22 16:18:21 +08:00
msg.name.toString(),
true);
} else if ( 'description' in msg ) {
renderFormError(e,
2017-04-20 23:55:28 +08:00
$(element).find("#experiment-description"),
2016-09-22 16:18:21 +08:00
msg.description.toString(),
true);
} else {
renderFormError(e,
2017-04-20 23:55:28 +08:00
$(element).find("#experiment-name"),
2016-09-22 16:18:21 +08:00
error.statusText,
true);
}
2016-09-22 15:29:38 +08:00
});
}
}
// Initialize no description edit link
function initEditNoDescription(){
2019-02-12 18:24:44 +08:00
var modal = '#edit-experiment-modal-';
$.each($('.experiment-no-description'), function() {
var id = modal + $(this).data("id");
initializeModal($(this), id);
});
}
2019-01-18 22:57:44 +08:00
$(document).on('turbolinks:load', function() {
// Bind modal to new-experiment action
2019-01-18 23:16:00 +08:00
initializeModal($('#new-experiment'), '#new-experiment-modal');
2016-08-16 15:48:19 +08:00
2019-01-18 22:57:44 +08:00
// Bind modal to big-plus new experiment actions
initializeModal('.big-plus', '#new-experiment-modal');
// Bind modal to new-exp-title action
initializeModal('.new-exp-title', '#new-experiment-modal');
2019-01-18 22:57:44 +08:00
// Bind modals to all clone-experiment actions
$.each($('.clone-experiment'), function() {
2019-01-18 23:16:00 +08:00
var id = $(this).closest('.experiment-panel').data('id');
2019-01-18 22:57:44 +08:00
initializeModal($(this), '#clone-experiment-modal-' + id);
});
// Bind modal to all actions listed on dropdown accesible from experiment
// panel
initializeDropdownActions();
// init
initEditNoDescription();
2019-01-18 23:16:00 +08:00
});
2016-08-16 15:48:19 +08:00
})();