mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-16 14:17:00 +08:00
a1e6392a45
* Fix bugs with jquery3 upgrade [SCI-8973] * Remove deprecated jquery method (.error, .completed, .success) [SCI-8973] * Fix linter error [SCI-8973]
69 lines
2.2 KiB
JavaScript
69 lines
2.2 KiB
JavaScript
/* global HelperModule */
|
|
|
|
(function() {
|
|
let selectedTasks = [];
|
|
|
|
$('#module-archive').on('click', '.task-selector', function() {
|
|
let taskId = $(this).closest('.task-selector-container').data('task-id');
|
|
let index = $.inArray(taskId, selectedTasks);
|
|
|
|
window.actionToolbarComponent.fetchActions({ my_module_ids: selectedTasks });
|
|
|
|
// If checkbox is checked and row ID is not in list of selected folder IDs
|
|
if (this.checked && index === -1) {
|
|
selectedTasks.push(taskId);
|
|
} else if (!this.checked && index !== -1) {
|
|
selectedTasks.splice(index, 1);
|
|
}
|
|
});
|
|
|
|
function restoreMyModules(url, ids) {
|
|
$.post(url, { my_modules_ids: ids, view: 'cards' });
|
|
}
|
|
|
|
function initRestoreMyModules() {
|
|
$('#module-archive').on('click', '#restoreTask', (e) => {
|
|
e.stopPropagation();
|
|
restoreMyModules(e.currentTarget.dataset.url, selectedTasks);
|
|
});
|
|
}
|
|
|
|
function initMoveButton() {
|
|
$('#module-archive').on('click', '#moveTask', function(e) {
|
|
e.preventDefault();
|
|
|
|
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();
|
|
}).fail((data) => {
|
|
HelperModule.flashAlertMsg(data.responseJSON.message, 'danger');
|
|
});
|
|
$('#modal-move-modules').modal('hide');
|
|
});
|
|
|
|
$('#modal-move-modules').modal('show');
|
|
});
|
|
});
|
|
}
|
|
|
|
window.initActionToolbar();
|
|
initRestoreMyModules();
|
|
initMoveButton();
|
|
}());
|