mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 18:21:04 +08:00
df0995d867
Implemet the Move task functionality for archived tasks cards view [SCI-8253]
76 lines
2.6 KiB
JavaScript
76 lines
2.6 KiB
JavaScript
/* global HelperModule */
|
|
|
|
(function() {
|
|
let selectedTasks = [];
|
|
|
|
$('#module-archive').on('click', '.restore-button-container', function(e) {
|
|
e.preventDefault();
|
|
let restoreForm = $('.restore-button-container').find('form');
|
|
|
|
selectedTasks.forEach(function(id) {
|
|
$('<input>').attr({
|
|
type: 'hidden',
|
|
name: 'my_modules_ids[]',
|
|
value: id
|
|
}).appendTo(restoreForm);
|
|
});
|
|
restoreForm.submit();
|
|
});
|
|
|
|
$('#module-archive').on('click', '.task-selector', function() {
|
|
let taskId = $(this).closest('.task-selector-container').data('task-id');
|
|
let index = $.inArray(taskId, selectedTasks);
|
|
const restoreTasksButton = $('.restore-button-container');
|
|
const moveTasksButton = $('.move-button-container');
|
|
|
|
// If checkbox is checked and row ID is not in list of selected folder IDs
|
|
if (this.checked && index === -1) {
|
|
selectedTasks.push(taskId);
|
|
restoreTasksButton.collapse('show');
|
|
moveTasksButton.collapse('show');
|
|
// Otherwise, if checkbox is not checked and ID is in list of selected IDs
|
|
} else if (!this.checked && index !== -1) {
|
|
selectedTasks.splice(index, 1);
|
|
}
|
|
// Hide button
|
|
if (selectedTasks.length === 0) {
|
|
restoreTasksButton.collapse('hide');
|
|
moveTasksButton.collapse('hide');
|
|
}
|
|
});
|
|
|
|
function initMoveButton() {
|
|
$('.move-button-container').on('click', 'button', function() {
|
|
const cardsContainer = $('#cards-container');
|
|
$.get(cardsContainer.data('move-modules-modal-url'), (modalData) => {
|
|
if ($('#modal-move-modules').length > 0) {
|
|
$('#modal-move-modules').replaceWith(modalData.html);
|
|
} else {
|
|
$('#module-archive').append(modalData.html);
|
|
}
|
|
|
|
$('#modal-move-modules').on('shown.bs.modal', function() {
|
|
$(this).find('.selectpicker').selectpicker().focus();
|
|
});
|
|
|
|
$('#modal-move-modules').on('click', 'button[data-action="confirm"]', () => {
|
|
const moveParams = {
|
|
to_experiment_id: $('#modal-move-modules').find('.selectpicker').val(),
|
|
my_module_ids: selectedTasks
|
|
};
|
|
$.post(cardsContainer.data('move-modules-url'), moveParams, (data) => {
|
|
HelperModule.flashAlertMsg(data.message, 'success');
|
|
window.location.reload();
|
|
}).error((data) => {
|
|
HelperModule.flashAlertMsg(data.responseJSON.message, 'danger');
|
|
});
|
|
$('#modal-move-modules').modal('hide');
|
|
});
|
|
|
|
$('#modal-move-modules').modal('show');
|
|
});
|
|
});
|
|
}
|
|
|
|
initMoveButton();
|
|
}());
|