2019-07-26 19:00:25 +08:00
|
|
|
/*
|
2020-07-17 21:17:09 +08:00
|
|
|
globals I18n _ SmartAnnotation FilePreviewModal animateSpinner DataTableHelpers
|
|
|
|
HelperModule RepositoryDatatableRowEditor prepareRepositoryHeaderForExport
|
2022-03-15 17:24:35 +08:00
|
|
|
initAssignedTasksDropdown initBMTFilter initReminderDropdown
|
2019-07-26 19:00:25 +08:00
|
|
|
*/
|
|
|
|
|
2017-06-23 14:50:12 +08:00
|
|
|
//= require jquery-ui/widgets/sortable
|
2019-11-18 21:04:53 +08:00
|
|
|
//= require repositories/row_editor.js
|
|
|
|
|
2017-06-06 23:35:29 +08:00
|
|
|
|
2017-07-17 21:05:28 +08:00
|
|
|
var RepositoryDatatable = (function(global) {
|
|
|
|
'use strict';
|
2017-06-06 23:35:29 +08:00
|
|
|
|
2018-07-19 23:56:42 +08:00
|
|
|
var TABLE_ID = '';
|
2020-01-15 21:18:08 +08:00
|
|
|
var TABLE_WRAPPER_ID = '.repository-table';
|
2018-07-19 23:56:42 +08:00
|
|
|
var TABLE = null;
|
2019-11-18 21:04:53 +08:00
|
|
|
var EDITABLE = false;
|
2020-05-15 23:46:59 +08:00
|
|
|
var SELECT_ALL_SELECTOR = '#checkbox > input[name=select_all]';
|
|
|
|
const STATUS_POLLING_INTERVAL = 10000;
|
2018-07-03 18:57:39 +08:00
|
|
|
|
2019-07-26 19:00:25 +08:00
|
|
|
var rowsSelected = [];
|
2020-01-24 23:33:44 +08:00
|
|
|
var rowsLocked = [];
|
2019-07-26 19:00:25 +08:00
|
|
|
|
|
|
|
// Tells whether we're currently viewing or editing table
|
|
|
|
var currentMode = 'viewMode';
|
|
|
|
|
2017-07-17 21:05:28 +08:00
|
|
|
// Extend datatables API with searchable options
|
|
|
|
// (http://stackoverflow.com/questions/39912395/datatables-dynamically-set-columns-searchable)
|
|
|
|
$.fn.dataTable.Api.register('isColumnSearchable()', function(colSelector) {
|
|
|
|
var idx = this.column(colSelector).index();
|
|
|
|
return this.settings()[0].aoColumns[idx].bSearchable;
|
|
|
|
});
|
|
|
|
$.fn.dataTable.Api
|
|
|
|
.register('setColumnSearchable()', function(colSelector, value) {
|
|
|
|
if (value !== this.isColumnSearchable(colSelector)) {
|
2019-07-26 19:00:25 +08:00
|
|
|
let idx = this.column(colSelector).index();
|
2017-07-17 21:05:28 +08:00
|
|
|
this.settings()[0].aoColumns[idx].bSearchable = value;
|
|
|
|
if (value === true) {
|
|
|
|
this.rows().invalidate();
|
2017-06-06 23:35:29 +08:00
|
|
|
}
|
|
|
|
}
|
2017-07-17 21:05:28 +08:00
|
|
|
return value;
|
|
|
|
});
|
|
|
|
|
2019-07-26 19:00:25 +08:00
|
|
|
// Enable/disable edit button
|
|
|
|
function updateButtons() {
|
|
|
|
if (currentMode === 'viewMode') {
|
2020-01-15 21:18:08 +08:00
|
|
|
$(TABLE_WRAPPER_ID).removeClass('editing');
|
2019-11-18 21:04:53 +08:00
|
|
|
$('#saveCancel').hide();
|
2020-01-16 22:59:57 +08:00
|
|
|
$('.manage-repo-column-index').prop('disabled', false);
|
2019-11-21 22:04:34 +08:00
|
|
|
$('#addRepositoryRecord').prop('disabled', false);
|
2019-07-26 19:00:25 +08:00
|
|
|
$('.dataTables_length select').prop('disabled', false);
|
2019-11-21 22:04:34 +08:00
|
|
|
$('#repository-acitons-dropdown').prop('disabled', false);
|
2019-08-06 21:06:19 +08:00
|
|
|
$('#repository-columns-dropdown').find('.dropdown-toggle').prop('disabled', false);
|
2019-07-26 19:00:25 +08:00
|
|
|
$('th').removeClass('disable-click');
|
2019-11-21 22:04:34 +08:00
|
|
|
$('.repository-row-selector').prop('disabled', false);
|
2020-01-15 19:44:57 +08:00
|
|
|
$('.dataTables_filter input').prop('disabled', false);
|
2022-03-31 20:04:00 +08:00
|
|
|
$('#addRepositoryRecord').show();
|
|
|
|
if (!$('#saveRepositoryFilters').hasClass('hidden')) {
|
|
|
|
$('#saveRepositoryFilters').show();
|
|
|
|
}
|
|
|
|
$('#hideRepositoryReminders').show();
|
2022-03-18 21:10:34 +08:00
|
|
|
$('#importRecordsButton').show();
|
2019-07-26 19:00:25 +08:00
|
|
|
if (rowsSelected.length === 0) {
|
2019-11-21 22:04:34 +08:00
|
|
|
$('#exportRepositoriesButton').addClass('disabled');
|
|
|
|
$('#copyRepositoryRecords').prop('disabled', true);
|
|
|
|
$('#editRepositoryRecord').prop('disabled', true);
|
2020-06-10 04:16:55 +08:00
|
|
|
$('#archiveRepositoryRecordsButton').prop('disabled', true);
|
2020-06-17 20:05:23 +08:00
|
|
|
$('#restoreRepositoryRecords').prop('disabled', true);
|
|
|
|
$('#deleteRepositoryRecords').prop('disabled', true);
|
2020-01-16 00:49:25 +08:00
|
|
|
$('#editDeleteCopy').hide();
|
2021-07-27 18:34:13 +08:00
|
|
|
$('#toolbarPrintLabel').hide();
|
2019-07-26 19:00:25 +08:00
|
|
|
} else {
|
2019-11-21 22:04:34 +08:00
|
|
|
if (rowsSelected.length === 1) {
|
|
|
|
$('#editRepositoryRecord').prop('disabled', false);
|
2019-07-26 19:00:25 +08:00
|
|
|
} else {
|
2019-11-21 22:04:34 +08:00
|
|
|
$('#editRepositoryRecord').prop('disabled', true);
|
2019-07-26 19:00:25 +08:00
|
|
|
}
|
2019-11-21 22:04:34 +08:00
|
|
|
$('#exportRepositoriesButton').removeClass('disabled');
|
2020-06-10 04:16:55 +08:00
|
|
|
$('#archiveRepositoryRecordsButton').prop('disabled', false);
|
2019-11-21 22:04:34 +08:00
|
|
|
$('#copyRepositoryRecords').prop('disabled', false);
|
2020-06-17 20:05:23 +08:00
|
|
|
$('#restoreRepositoryRecords').prop('disabled', false);
|
|
|
|
$('#deleteRepositoryRecords').prop('disabled', false);
|
2022-03-18 21:10:34 +08:00
|
|
|
$('#importRecordsButton').hide();
|
2020-01-24 23:33:44 +08:00
|
|
|
|
|
|
|
if (rowsSelected.some(r=> rowsLocked.indexOf(r) >= 0)) { // Some selected rows is rowsLocked
|
|
|
|
$('#editRepositoryRecord').prop('disabled', true);
|
2020-06-10 04:16:55 +08:00
|
|
|
$('#archiveRepositoryRecordsButton').prop('disabled', true);
|
2020-01-24 23:33:44 +08:00
|
|
|
}
|
2020-01-16 00:49:25 +08:00
|
|
|
$('#editDeleteCopy').show();
|
2021-07-27 18:34:13 +08:00
|
|
|
$('#toolbarPrintLabel').show();
|
2019-07-26 19:00:25 +08:00
|
|
|
}
|
|
|
|
} else if (currentMode === 'editMode') {
|
2020-01-15 21:18:08 +08:00
|
|
|
$(TABLE_WRAPPER_ID).addClass('editing');
|
2022-03-18 21:10:34 +08:00
|
|
|
$('#importRecordsButton').hide();
|
2019-11-18 21:04:53 +08:00
|
|
|
$('#editDeleteCopy').hide();
|
2022-03-31 20:04:00 +08:00
|
|
|
$('#addRepositoryRecord').hide();
|
|
|
|
$('#hideRepositoryReminders').hide();
|
|
|
|
if (!$('#saveRepositoryFilters').hasClass('hidden')) {
|
|
|
|
$('#saveRepositoryFilters').hide();
|
|
|
|
}
|
2019-11-18 21:04:53 +08:00
|
|
|
$('#saveCancel').show();
|
2020-01-16 22:59:57 +08:00
|
|
|
$('.manage-repo-column-index').prop('disabled', true);
|
2019-11-21 22:04:34 +08:00
|
|
|
$('#repository-acitons-dropdown').prop('disabled', true);
|
2019-07-26 19:00:25 +08:00
|
|
|
$('.dataTables_length select').prop('disabled', true);
|
2019-11-21 22:04:34 +08:00
|
|
|
$('#addRepositoryRecord').prop('disabled', true);
|
|
|
|
$('#editRepositoryRecord').prop('disabled', true);
|
2020-06-10 04:16:55 +08:00
|
|
|
$('#archiveRepositoryRecordsButton').prop('disabled', true);
|
2019-11-21 22:04:34 +08:00
|
|
|
$('#assignRepositoryRecords').prop('disabled', true);
|
|
|
|
$('#unassignRepositoryRecords').prop('disabled', true);
|
2019-07-26 19:00:25 +08:00
|
|
|
$('#repository-columns-dropdown').find('.dropdown-toggle').prop('disabled', true);
|
|
|
|
$('th').addClass('disable-click');
|
2019-11-21 22:04:34 +08:00
|
|
|
$('.repository-row-selector').prop('disabled', true);
|
2020-01-15 19:44:57 +08:00
|
|
|
$('.dataTables_filter input').prop('disabled', true);
|
2021-08-23 19:58:16 +08:00
|
|
|
$('#toolbarPrintLabel').hide();
|
2019-07-26 19:00:25 +08:00
|
|
|
}
|
2021-07-27 18:34:13 +08:00
|
|
|
|
|
|
|
$('#toolbarPrintLabel').data('rows', JSON.stringify(rowsSelected));
|
2019-07-26 19:00:25 +08:00
|
|
|
}
|
2017-07-17 21:05:28 +08:00
|
|
|
|
2019-11-18 21:04:53 +08:00
|
|
|
function clearRowSelection() {
|
|
|
|
$('.dt-body-center .repository-row-selector').prop('checked', false);
|
|
|
|
$('.dt-body-center .repository-row-selector').closest('tr').removeClass('selected');
|
|
|
|
rowsSelected = [];
|
|
|
|
}
|
|
|
|
|
2020-01-27 22:52:52 +08:00
|
|
|
function disableCheckboxToggleOnCheckboxPreview() {
|
|
|
|
$('.checklist-dropdown').click(function(e) {
|
|
|
|
$(e.currentTarget).closest('tr').find('.repository-row-selector').trigger('click');
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2019-11-18 21:04:53 +08:00
|
|
|
function changeToViewMode() {
|
|
|
|
currentMode = 'viewMode';
|
|
|
|
// Table specific stuff
|
|
|
|
TABLE.button(0).enable(true);
|
2020-02-07 23:42:04 +08:00
|
|
|
$(TABLE_WRAPPER_ID).find('tr').removeClass('blocked');
|
2019-11-18 21:04:53 +08:00
|
|
|
updateButtons();
|
2020-01-16 20:39:49 +08:00
|
|
|
disableCheckboxToggleOnCheckboxPreview();
|
2019-11-18 21:04:53 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
function changeToEditMode() {
|
|
|
|
currentMode = 'editMode';
|
|
|
|
// Table specific stuff
|
|
|
|
TABLE.button(0).enable(false);
|
|
|
|
clearRowSelection();
|
2020-02-07 23:42:04 +08:00
|
|
|
$(TABLE_WRAPPER_ID).find('tr:not(.editing)').addClass('blocked');
|
2019-11-18 21:04:53 +08:00
|
|
|
updateButtons();
|
|
|
|
}
|
|
|
|
|
2019-07-26 19:00:25 +08:00
|
|
|
// Updates "Select all" control in a data table
|
|
|
|
function updateDataTableSelectAllCtrl() {
|
|
|
|
var $table = TABLE.table().node();
|
|
|
|
var $header = TABLE.table().header();
|
|
|
|
var $chkboxAll = $('.repository-row-selector', $table);
|
|
|
|
var $chkboxChecked = $('.repository-row-selector:checked', $table);
|
2020-01-20 22:37:04 +08:00
|
|
|
var chkboxSelectAll = $(SELECT_ALL_SELECTOR, $header).get(0);
|
2017-07-17 21:05:28 +08:00
|
|
|
|
2019-07-26 19:00:25 +08:00
|
|
|
// If none of the checkboxes are checked
|
|
|
|
if ($chkboxChecked.length === 0) {
|
|
|
|
chkboxSelectAll.checked = false;
|
|
|
|
if ('indeterminate' in chkboxSelectAll) {
|
|
|
|
chkboxSelectAll.indeterminate = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If all of the checkboxes are checked
|
|
|
|
} else if ($chkboxChecked.length === $chkboxAll.length) {
|
|
|
|
chkboxSelectAll.checked = true;
|
|
|
|
if ('indeterminate' in chkboxSelectAll) {
|
|
|
|
chkboxSelectAll.indeterminate = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If some of the checkboxes are checked
|
|
|
|
} else {
|
|
|
|
chkboxSelectAll.checked = true;
|
|
|
|
if ('indeterminate' in chkboxSelectAll) {
|
|
|
|
chkboxSelectAll.indeterminate = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function initRowSelection() {
|
|
|
|
// Handle clicks on checkbox
|
2020-01-17 21:04:25 +08:00
|
|
|
$(TABLE_ID).on('change', '.repository-row-selector', function(ev) {
|
2019-07-26 19:00:25 +08:00
|
|
|
var $row;
|
|
|
|
var data;
|
|
|
|
var rowId;
|
|
|
|
var index;
|
|
|
|
|
|
|
|
if (currentMode !== 'viewMode') {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// Get row ID
|
|
|
|
$row = $(this).closest('tr');
|
|
|
|
data = TABLE.row($row).data();
|
|
|
|
rowId = data.DT_RowId;
|
|
|
|
|
|
|
|
// Determine whether row ID is in the list of selected row IDs
|
|
|
|
index = $.inArray(rowId, rowsSelected);
|
|
|
|
|
|
|
|
// If checkbox is checked and row ID is not in list of selected row IDs
|
|
|
|
if (this.checked && index === -1) {
|
|
|
|
rowsSelected.push(rowId);
|
|
|
|
// Otherwise, if checkbox is not checked and row ID is in list of selected row IDs
|
|
|
|
} else if (!this.checked && index !== -1) {
|
|
|
|
rowsSelected.splice(index, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.checked) {
|
|
|
|
$row.addClass('selected');
|
|
|
|
} else {
|
|
|
|
$row.removeClass('selected');
|
|
|
|
}
|
|
|
|
|
|
|
|
updateDataTableSelectAllCtrl();
|
|
|
|
|
2019-11-18 21:04:53 +08:00
|
|
|
ev.stopPropagation();
|
2019-07-26 19:00:25 +08:00
|
|
|
updateButtons();
|
|
|
|
// Update number of selected records info
|
|
|
|
$('#selected_info').html(' (' + rowsSelected.length + ' entries selected)');
|
|
|
|
});
|
|
|
|
|
|
|
|
// Handle click on "Select all" control
|
2020-01-20 22:37:04 +08:00
|
|
|
$(SELECT_ALL_SELECTOR).change(function(ev) {
|
2019-07-26 19:00:25 +08:00
|
|
|
if (this.checked) {
|
|
|
|
$('.repository-row-selector:not(:checked)').trigger('click');
|
|
|
|
} else {
|
|
|
|
$('.repository-row-selector:checked').trigger('click');
|
|
|
|
}
|
|
|
|
// Prevent click event from propagating to parent
|
2019-11-18 21:04:53 +08:00
|
|
|
ev.stopPropagation();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function checkAvailableColumns() {
|
|
|
|
$.ajax({
|
|
|
|
url: $(TABLE_ID).data('available-columns'),
|
|
|
|
type: 'GET',
|
|
|
|
dataType: 'json',
|
|
|
|
success: function(data) {
|
|
|
|
var columnsIds = data.columns;
|
|
|
|
var presentColumns = $(TABLE_ID).data('repository-columns-ids');
|
|
|
|
if (!_.isEqual(columnsIds.sort(), presentColumns.sort())) {
|
|
|
|
alert($(TABLE_ID).data('columns-changed'));
|
|
|
|
animateSpinner();
|
|
|
|
location.reload();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
error: function() {
|
|
|
|
location.reload();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function initItemEditIcon() {
|
|
|
|
$(TABLE_ID).on('click', '.repository-row-edit-icon', function(ev) {
|
|
|
|
let rowId = $(ev.target).closest('tr').attr('id');
|
|
|
|
let row = TABLE.row(`#${rowId}`);
|
|
|
|
|
|
|
|
$(row.node()).find('.repository-row-selector').trigger('click');
|
|
|
|
|
|
|
|
checkAvailableColumns();
|
|
|
|
|
|
|
|
$(TABLE_ID).find('.repository-row-edit-icon').remove();
|
|
|
|
|
|
|
|
RepositoryDatatableRowEditor.switchRowToEditMode(row);
|
|
|
|
changeToEditMode();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function initSaveButton() {
|
2020-01-15 21:18:08 +08:00
|
|
|
$(TABLE_WRAPPER_ID).on('click', '#saveRecord', function() {
|
2019-12-04 21:52:52 +08:00
|
|
|
var $table = $(TABLE_ID);
|
|
|
|
RepositoryDatatableRowEditor.validateAndSubmit($table);
|
2019-11-18 21:04:53 +08:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2019-11-21 22:04:34 +08:00
|
|
|
function resetTableView() {
|
2022-02-21 17:09:59 +08:00
|
|
|
var filterSaveButtonVisible = !$('#saveRepositoryFilters').hasClass('hidden');
|
2020-05-15 23:46:59 +08:00
|
|
|
$.getJSON($(TABLE_ID).data('toolbar-url'), (data) => {
|
|
|
|
$('#toolbarButtonsDatatable').remove();
|
|
|
|
$(data.html).appendTo('div.toolbar');
|
2022-02-21 17:09:59 +08:00
|
|
|
if (filterSaveButtonVisible) {
|
|
|
|
$('#saveRepositoryFilters').removeClass('hidden');
|
|
|
|
}
|
2021-11-26 03:34:22 +08:00
|
|
|
if (typeof initBMTFilter === 'function') initBMTFilter();
|
2020-05-15 23:46:59 +08:00
|
|
|
});
|
|
|
|
|
2020-01-17 21:04:25 +08:00
|
|
|
TABLE.ajax.reload(null, false);
|
2019-11-21 22:04:34 +08:00
|
|
|
changeToViewMode();
|
|
|
|
SmartAnnotation.closePopup();
|
|
|
|
animateSpinner(null, false);
|
|
|
|
}
|
|
|
|
|
2019-11-18 21:04:53 +08:00
|
|
|
function initCancelButton() {
|
2020-01-15 21:18:08 +08:00
|
|
|
$(TABLE_WRAPPER_ID).on('click', '#cancelSave', function() {
|
2019-11-21 22:04:34 +08:00
|
|
|
resetTableView();
|
2019-07-26 19:00:25 +08:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function appendInput(form, val, name) {
|
|
|
|
$(form).append(
|
|
|
|
$('<input>').attr('type', 'hidden').attr('name', name).val(val)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
function initHeaderTooltip() {
|
|
|
|
// Fix compatibility of fixed table header and column names modal-tooltip
|
|
|
|
$('.modal-tooltip').off();
|
|
|
|
$('.modal-tooltip').hover(function() {
|
|
|
|
var $tooltip = $(this).find('.modal-tooltiptext');
|
|
|
|
var offsetLeft = $tooltip.offset().left;
|
|
|
|
var offsetTop = $tooltip.offset().top;
|
|
|
|
if ((offsetLeft + 200) > $(window).width()) {
|
|
|
|
offsetLeft -= 150;
|
|
|
|
}
|
|
|
|
$('body').append($tooltip);
|
|
|
|
$tooltip.css('background-color', '#d2d2d2');
|
|
|
|
$tooltip.css('border-radius', '6px');
|
|
|
|
$tooltip.css('color', '#333');
|
|
|
|
$tooltip.css('display', 'block');
|
|
|
|
$tooltip.css('left', offsetLeft + 'px');
|
|
|
|
$tooltip.css('padding', '5px');
|
|
|
|
$tooltip.css('position', 'absolute');
|
|
|
|
$tooltip.css('text-align', 'center');
|
|
|
|
$tooltip.css('top', offsetTop + 'px');
|
|
|
|
$tooltip.css('visibility', 'visible');
|
|
|
|
$tooltip.css('width', '200px');
|
|
|
|
$tooltip.css('word-wrap', 'break-word');
|
|
|
|
$(this).data('dropdown-tooltip', $tooltip);
|
|
|
|
}, function() {
|
|
|
|
$(this).append($(this).data('dropdown-tooltip'));
|
|
|
|
$(this).data('dropdown-tooltip').removeAttr('style');
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2022-03-18 21:10:34 +08:00
|
|
|
function initExportActions() {
|
2019-11-21 22:04:34 +08:00
|
|
|
$('#exportRepositoriesButton').on('click', function() {
|
|
|
|
$('#exportRepositoryModal').modal('show');
|
|
|
|
});
|
|
|
|
|
|
|
|
|
2022-03-18 21:10:34 +08:00
|
|
|
$('form#form-export').off().submit(function() {
|
2019-07-26 19:00:25 +08:00
|
|
|
var form = this;
|
|
|
|
if (currentMode === 'viewMode') {
|
|
|
|
// Remove all hidden fields
|
|
|
|
$(form).find('input[name=row_ids\\[\\]]').remove();
|
|
|
|
$(form).find('input[name=header_ids\\[\\]]').remove();
|
|
|
|
|
|
|
|
// Append visible column information
|
|
|
|
$('table' + TABLE_ID + ' thead tr th').each(function() {
|
|
|
|
var th = $(this);
|
2020-07-17 21:17:09 +08:00
|
|
|
var val = prepareRepositoryHeaderForExport(th);
|
2019-07-26 19:00:25 +08:00
|
|
|
|
|
|
|
if (val) {
|
|
|
|
appendInput(form, val, 'header_ids[]');
|
|
|
|
}
|
|
|
|
});
|
2017-06-06 23:35:29 +08:00
|
|
|
|
2019-07-26 19:00:25 +08:00
|
|
|
// Append records
|
|
|
|
$.each(rowsSelected, function(index, rowId) {
|
|
|
|
appendInput(form, rowId, 'row_ids[]');
|
|
|
|
});
|
|
|
|
}
|
2019-09-23 19:33:02 +08:00
|
|
|
})
|
|
|
|
.on('ajax:beforeSend', function() {
|
|
|
|
animateSpinner(null, true);
|
|
|
|
})
|
|
|
|
.on('ajax:complete', function() {
|
|
|
|
$('#exportRepositoryModal').modal('hide');
|
|
|
|
animateSpinner(null, false);
|
|
|
|
})
|
|
|
|
.on('ajax:success', function(ev, data) {
|
|
|
|
HelperModule.flashAlertMsg(data.message, 'success');
|
|
|
|
})
|
|
|
|
.on('ajax:error', function(ev, data) {
|
|
|
|
HelperModule.flashAlertMsg(data.responseJSON.message, 'danger');
|
|
|
|
});
|
2019-07-26 19:00:25 +08:00
|
|
|
}
|
2018-07-03 18:57:39 +08:00
|
|
|
|
2019-07-26 19:00:25 +08:00
|
|
|
// Adjust columns width in table header
|
|
|
|
function adjustTableHeader() {
|
|
|
|
TABLE.columns.adjust();
|
|
|
|
$('.dropdown-menu').parent()
|
|
|
|
.on('shown.bs.dropdown hidden.bs.dropdown', function() {
|
|
|
|
TABLE.columns.adjust();
|
|
|
|
});
|
|
|
|
}
|
2017-07-17 21:05:28 +08:00
|
|
|
|
2020-05-15 23:46:59 +08:00
|
|
|
function checkSnapshottingStatus() {
|
|
|
|
$.getJSON($(TABLE_ID).data('status-url'), (statusData) => {
|
|
|
|
if (statusData.snapshot_provisioning) {
|
|
|
|
setTimeout(() => { checkSnapshottingStatus(); }, STATUS_POLLING_INTERVAL);
|
|
|
|
} else {
|
|
|
|
EDITABLE = statusData.editable;
|
|
|
|
$('.repository-provisioning-notice').remove();
|
|
|
|
resetTableView();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-07-17 21:05:28 +08:00
|
|
|
function dataTableInit() {
|
|
|
|
TABLE = $(TABLE_ID).DataTable({
|
2022-03-18 21:10:34 +08:00
|
|
|
dom: "R<'repository-toolbar hidden'<'repository-search-container'f>>t<'pagination-row hidden'<'pagination-info'li><'pagination-actions'p>>",
|
2017-07-17 21:05:28 +08:00
|
|
|
stateSave: true,
|
|
|
|
processing: true,
|
|
|
|
serverSide: true,
|
|
|
|
sScrollX: '100%',
|
|
|
|
sScrollXInner: '100%',
|
2019-11-20 22:05:44 +08:00
|
|
|
order: $(TABLE_ID).data('default-order'),
|
2020-08-24 16:57:25 +08:00
|
|
|
stateDuration: 0,
|
2017-07-17 21:05:28 +08:00
|
|
|
colReorder: {
|
|
|
|
fixedColumnsLeft: 2,
|
|
|
|
realtime: false
|
|
|
|
},
|
|
|
|
destroy: true,
|
|
|
|
ajax: {
|
|
|
|
url: $(TABLE_ID).data('source'),
|
2021-12-21 19:38:52 +08:00
|
|
|
contentType: 'application/json',
|
2017-07-17 21:05:28 +08:00
|
|
|
data: function(d) {
|
2020-06-17 20:05:23 +08:00
|
|
|
d.archived = $('.repository-show').hasClass('archived');
|
2021-08-27 22:02:11 +08:00
|
|
|
|
|
|
|
if ($('[data-external-ids]').length) {
|
|
|
|
d.external_ids = $('[data-external-ids]').attr('data-external-ids').split(',');
|
|
|
|
}
|
2021-12-15 19:48:28 +08:00
|
|
|
|
2021-12-21 19:38:52 +08:00
|
|
|
if ($('[data-repository-filter-json]').attr('data-repository-filter-json')) {
|
|
|
|
d.advanced_search = JSON.parse($('[data-repository-filter-json]').attr('data-repository-filter-json'));
|
2021-12-15 19:48:28 +08:00
|
|
|
}
|
2021-12-21 19:38:52 +08:00
|
|
|
return JSON.stringify(d);
|
2017-07-17 21:05:28 +08:00
|
|
|
},
|
|
|
|
global: false,
|
2017-06-06 23:35:29 +08:00
|
|
|
type: 'POST'
|
2017-07-17 21:05:28 +08:00
|
|
|
},
|
|
|
|
columnDefs: [{
|
2018-04-18 19:21:30 +08:00
|
|
|
// Checkbox column needs special handling
|
2017-07-17 21:05:28 +08:00
|
|
|
targets: 0,
|
2019-11-20 22:05:44 +08:00
|
|
|
visible: true,
|
2017-07-17 21:05:28 +08:00
|
|
|
searchable: false,
|
|
|
|
orderable: false,
|
|
|
|
className: 'dt-body-center',
|
|
|
|
sWidth: '1%',
|
2020-01-24 23:33:44 +08:00
|
|
|
render: function(data, type, row) {
|
|
|
|
return `<input class='repository-row-selector sci-checkbox' type='checkbox' data-editable="${row.recordEditable}">
|
|
|
|
<span class='sci-checkbox-label'></span>`;
|
2017-06-06 23:35:29 +08:00
|
|
|
}
|
2017-07-17 21:05:28 +08:00
|
|
|
}, {
|
2018-04-18 19:21:30 +08:00
|
|
|
// Assigned column is not searchable
|
2017-07-17 21:05:28 +08:00
|
|
|
targets: 1,
|
2019-11-20 22:05:44 +08:00
|
|
|
visible: true,
|
2017-07-17 21:05:28 +08:00
|
|
|
searchable: false,
|
|
|
|
orderable: true,
|
2020-01-09 22:19:04 +08:00
|
|
|
className: 'assigned-column',
|
2019-11-18 21:04:53 +08:00
|
|
|
sWidth: '1%',
|
2020-01-24 23:33:44 +08:00
|
|
|
render: function(data, type, row) {
|
2022-03-09 21:13:48 +08:00
|
|
|
let content = $.fn.dataTable.render.AssignedTasksValue(data, row);
|
2020-02-13 03:28:15 +08:00
|
|
|
let icon;
|
2020-01-24 23:33:44 +08:00
|
|
|
if (!row.recordEditable) {
|
2020-01-25 15:52:33 +08:00
|
|
|
icon = `<i class="repository-row-lock-icon fas fa-lock" title="${I18n.t('repositories.table.locked_item')}"></i>`;
|
2020-02-13 03:28:15 +08:00
|
|
|
} else if (EDITABLE) {
|
2020-06-15 21:52:50 +08:00
|
|
|
icon = '<i class="repository-row-edit-icon fas fa-pencil-alt" data-view-mode="active"></i>';
|
2020-02-13 03:28:15 +08:00
|
|
|
} else {
|
|
|
|
icon = '';
|
2019-11-18 21:04:53 +08:00
|
|
|
}
|
2020-01-24 23:33:44 +08:00
|
|
|
content = icon + content;
|
2019-11-18 21:04:53 +08:00
|
|
|
return content;
|
|
|
|
}
|
2018-02-27 23:21:46 +08:00
|
|
|
}, {
|
2018-04-18 19:21:30 +08:00
|
|
|
// Name column is clickable
|
|
|
|
targets: 3,
|
2018-06-05 22:36:36 +08:00
|
|
|
visible: true,
|
2018-04-18 19:21:30 +08:00
|
|
|
render: function(data, type, row) {
|
2019-07-26 19:00:25 +08:00
|
|
|
return "<a href='" + row.recordInfoUrl + "'"
|
|
|
|
+ "class='record-info-link'>" + data + '</a>';
|
2018-04-18 19:21:30 +08:00
|
|
|
}
|
2020-01-23 20:12:58 +08:00
|
|
|
}, {
|
|
|
|
// Added on column
|
|
|
|
targets: 4,
|
|
|
|
class: 'added-on',
|
|
|
|
visible: true
|
2019-10-25 20:30:45 +08:00
|
|
|
}, {
|
|
|
|
targets: '_all',
|
2022-03-08 21:52:45 +08:00
|
|
|
render: function(data) {
|
2019-10-25 21:57:03 +08:00
|
|
|
if (typeof data === 'object' && $.fn.dataTable.render[data.value_type]) {
|
2022-03-08 21:52:45 +08:00
|
|
|
return $.fn.dataTable.render[data.value_type](data);
|
2019-10-25 20:30:45 +08:00
|
|
|
}
|
|
|
|
return data;
|
|
|
|
}
|
2022-03-08 21:52:45 +08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
targets: 'row-stock',
|
|
|
|
className: 'item-stock',
|
|
|
|
sWidth: '1%',
|
|
|
|
render: function(data) {
|
|
|
|
return $.fn.dataTable.render.RepositoryStockValue(data);
|
|
|
|
}
|
2018-04-18 19:21:30 +08:00
|
|
|
}],
|
2020-07-02 21:51:07 +08:00
|
|
|
language: {
|
|
|
|
emptyTable: I18n.t('repositories.show.no_items'),
|
|
|
|
zeroRecords: I18n.t('repositories.show.no_items_matched')
|
2018-05-08 22:33:42 +08:00
|
|
|
},
|
2017-07-17 21:05:28 +08:00
|
|
|
rowCallback: function(row, data) {
|
2020-01-24 23:33:44 +08:00
|
|
|
$(row).attr('data-editable', data.recordEditable);
|
2022-01-20 19:44:57 +08:00
|
|
|
$(row).attr('data-manage-stock-url', data.manageStockUrl);
|
2017-07-17 21:05:28 +08:00
|
|
|
// Get row ID
|
2019-11-18 21:04:53 +08:00
|
|
|
let rowId = data.DT_RowId;
|
2017-07-17 21:05:28 +08:00
|
|
|
// If row ID is in the list of selected row IDs
|
|
|
|
if ($.inArray(rowId, rowsSelected) !== -1) {
|
|
|
|
$(row).find('input[type="checkbox"]').prop('checked', true);
|
|
|
|
$(row).addClass('selected');
|
2017-06-06 23:35:29 +08:00
|
|
|
}
|
2017-07-17 21:05:28 +08:00
|
|
|
},
|
|
|
|
columns: (function() {
|
2019-07-26 19:00:25 +08:00
|
|
|
var columns = $(TABLE_ID).data('default-table-columns');
|
2019-10-28 21:52:46 +08:00
|
|
|
var customColumns = $(TABLE_ID).find('thead th[data-type]');
|
2019-11-20 22:05:44 +08:00
|
|
|
for (let i = 0; i < columns.length; i += 1) {
|
|
|
|
columns[i].data = String(i);
|
|
|
|
columns[i].defaultContent = '';
|
|
|
|
}
|
2019-10-28 21:52:46 +08:00
|
|
|
customColumns.each((i, column) => {
|
2022-03-08 21:52:45 +08:00
|
|
|
var columnData = $(column).data('type') === 'RepositoryStockValue' ? 'stock' : String(columns.length);
|
2019-10-28 21:52:46 +08:00
|
|
|
columns.push({
|
|
|
|
visible: true,
|
|
|
|
searchable: true,
|
2022-03-08 21:52:45 +08:00
|
|
|
data: columnData,
|
2019-10-28 21:52:46 +08:00
|
|
|
defaultContent: $.fn.dataTable.render['default' + column.dataset.type](column.id)
|
|
|
|
});
|
|
|
|
});
|
2022-03-08 21:52:45 +08:00
|
|
|
|
2017-07-17 21:05:28 +08:00
|
|
|
return columns;
|
2019-07-26 19:00:25 +08:00
|
|
|
}()),
|
2019-11-18 21:04:53 +08:00
|
|
|
drawCallback: function() {
|
2017-07-17 21:05:28 +08:00
|
|
|
animateSpinner(this, false);
|
|
|
|
changeToViewMode();
|
|
|
|
updateDataTableSelectAllCtrl();
|
2020-05-15 23:46:59 +08:00
|
|
|
|
2017-07-17 21:05:28 +08:00
|
|
|
// Prevent row toggling when selecting user smart annotation link
|
|
|
|
SmartAnnotation.preventPropagation('.atwho-user-popover');
|
2020-05-15 23:46:59 +08:00
|
|
|
|
2017-07-17 21:05:28 +08:00
|
|
|
// Show number of selected rows near pages info
|
|
|
|
$('#repository-table_info').append('<span id="selected_info"></span>');
|
2019-07-26 19:00:25 +08:00
|
|
|
$('#selected_info').html(' (' + rowsSelected.length + ' entries selected)');
|
2020-06-17 20:05:23 +08:00
|
|
|
checkArchivedColumnsState();
|
2017-07-17 21:05:28 +08:00
|
|
|
},
|
|
|
|
preDrawCallback: function() {
|
2020-07-02 21:51:07 +08:00
|
|
|
var archived = $('.repository-show').hasClass('archived');
|
|
|
|
TABLE.context[0].oLanguage.sEmptyTable = archived ? I18n.t('repositories.show.no_archived_items') : I18n.t('repositories.show.no_items');
|
|
|
|
TABLE.context[0].oLanguage.sZeroRecords = archived ? I18n.t('repositories.show.no_archived_items_matched') : I18n.t('repositories.show.no_items_matched');
|
2017-07-17 21:05:28 +08:00
|
|
|
animateSpinner(this);
|
2018-02-27 23:21:46 +08:00
|
|
|
$('.record-info-link').off('click');
|
2017-07-17 21:05:28 +08:00
|
|
|
},
|
2019-11-18 21:04:53 +08:00
|
|
|
stateLoadCallback: function(settings, callback) {
|
2017-07-17 21:05:28 +08:00
|
|
|
var repositoryId = $(TABLE_ID).data('repository-id');
|
|
|
|
$.ajax({
|
|
|
|
url: '/repositories/' + repositoryId + '/state_load',
|
|
|
|
data: {},
|
|
|
|
dataType: 'json',
|
|
|
|
type: 'POST',
|
|
|
|
success: function(json) {
|
2020-06-17 20:05:23 +08:00
|
|
|
var archived = $('.repository-show').hasClass('archived');
|
|
|
|
if (json.state.columns[6]) json.state.columns[6].visible = archived;
|
|
|
|
if (json.state.columns[7]) json.state.columns[7].visible = archived;
|
2020-07-10 21:39:01 +08:00
|
|
|
if (json.state.search) delete json.state.search;
|
2019-11-18 21:04:53 +08:00
|
|
|
callback(json.state);
|
2017-07-17 21:05:28 +08:00
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
stateSaveCallback: function(settings, data) {
|
|
|
|
// Send an Ajax request to the server with the state object
|
2019-11-18 21:04:53 +08:00
|
|
|
let repositoryId = $(TABLE_ID).data('repository-id');
|
|
|
|
|
2017-07-17 21:05:28 +08:00
|
|
|
$.ajax({
|
|
|
|
url: '/repositories/' + repositoryId + '/state_save',
|
2019-11-18 21:04:53 +08:00
|
|
|
contentType: 'application/json',
|
|
|
|
data: JSON.stringify({ state: data }),
|
2017-07-17 21:05:28 +08:00
|
|
|
dataType: 'json',
|
|
|
|
type: 'POST'
|
|
|
|
});
|
|
|
|
},
|
2019-11-18 21:04:53 +08:00
|
|
|
fnInitComplete: function() {
|
2018-06-11 21:22:56 +08:00
|
|
|
initHeaderTooltip();
|
2020-01-27 22:52:52 +08:00
|
|
|
disableCheckboxToggleOnCheckboxPreview();
|
2019-11-18 21:04:53 +08:00
|
|
|
|
2022-03-18 21:10:34 +08:00
|
|
|
DataTableHelpers.initSearchField(
|
|
|
|
$(TABLE_ID).closest('.dataTables_wrapper'),
|
|
|
|
I18n.t('repositories.show.filter_inventory_items')
|
|
|
|
);
|
2019-11-18 21:04:53 +08:00
|
|
|
|
2022-03-18 21:10:34 +08:00
|
|
|
let toolBar = $($('#repositoryToolbar').html());
|
|
|
|
toolBar.find('.toolbar-search').html($('.repository-search-container'));
|
|
|
|
$('.repository-toolbar').html(toolBar);
|
|
|
|
if (typeof initBMTFilter === 'function') initBMTFilter();
|
2020-01-28 21:11:11 +08:00
|
|
|
|
2020-05-15 23:46:59 +08:00
|
|
|
RepositoryDatatableRowEditor.initFormSubmitAction(TABLE);
|
2022-03-18 21:10:34 +08:00
|
|
|
initExportActions();
|
2020-05-15 23:46:59 +08:00
|
|
|
initItemEditIcon();
|
|
|
|
initSaveButton();
|
|
|
|
initCancelButton();
|
2020-01-13 21:46:43 +08:00
|
|
|
|
2022-02-02 17:41:29 +08:00
|
|
|
DataTableHelpers.initLengthAppearance($(TABLE_ID).closest('.dataTables_wrapper'));
|
2020-04-08 03:02:16 +08:00
|
|
|
|
2021-07-28 04:01:08 +08:00
|
|
|
$('<img class="barcode-scanner" src="/images/icon_small/barcode.png"></img>').appendTo($('.search-container'));
|
|
|
|
|
2020-01-15 23:46:01 +08:00
|
|
|
if ($('.repository-show').length) {
|
|
|
|
$('.dataTables_scrollBody, .dataTables_scrollHead').css('overflow', '');
|
|
|
|
}
|
|
|
|
|
2022-03-18 21:10:34 +08:00
|
|
|
$('.repository-toolbar, .pagination-row').removeClass('hidden');
|
2020-01-24 23:33:44 +08:00
|
|
|
|
|
|
|
$(TABLE_ID).find('tr[data-editable=false]').each(function(_, e) {
|
|
|
|
rowsLocked.push(parseInt($(e).attr('id'), 10));
|
|
|
|
});
|
2020-04-24 21:43:10 +08:00
|
|
|
|
2022-03-08 00:11:56 +08:00
|
|
|
// go back to manage columns index in modal, on column save, after table loads
|
|
|
|
$('#manage-repository-column .back-to-column-modal').trigger('click');
|
|
|
|
|
2022-03-18 21:10:34 +08:00
|
|
|
|
2020-04-28 18:41:59 +08:00
|
|
|
initAssignedTasksDropdown(TABLE_ID);
|
2022-03-15 17:24:35 +08:00
|
|
|
initReminderDropdown(TABLE_ID);
|
2021-11-26 03:34:22 +08:00
|
|
|
renderFiltersDropdown();
|
2022-02-28 21:19:31 +08:00
|
|
|
setTimeout(function() {
|
|
|
|
adjustTableHeader();
|
|
|
|
}, 500);
|
2017-06-06 23:35:29 +08:00
|
|
|
}
|
2017-07-17 21:05:28 +08:00
|
|
|
});
|
2017-06-06 23:35:29 +08:00
|
|
|
|
2019-08-19 15:24:10 +08:00
|
|
|
// hack to replace filter placeholder
|
2019-11-18 21:04:53 +08:00
|
|
|
$('.dataTables_filter .form-control').attr('placeholder', $('.dataTables_filter label').text());
|
|
|
|
$('.dataTables_filter label').contents().filter(function() {
|
2019-08-19 15:24:10 +08:00
|
|
|
return this.nodeType === 3;
|
|
|
|
}).remove();
|
|
|
|
|
2017-07-17 21:05:28 +08:00
|
|
|
// Handle click on table cells with checkboxes
|
2019-11-18 21:04:53 +08:00
|
|
|
$(TABLE_ID).on('click', 'tbody td', function(ev) {
|
|
|
|
// Skip if clicking on selector checkbox, edit icon or link
|
2022-03-09 22:09:49 +08:00
|
|
|
if ($(ev.target).is('.row-reminders-icon, .repository-row-selector, .repository-row-edit-icon, a')) return;
|
2019-11-18 21:04:53 +08:00
|
|
|
|
|
|
|
$(this).parent().find('.repository-row-selector').trigger('click');
|
2017-07-17 21:05:28 +08:00
|
|
|
});
|
|
|
|
|
2022-02-15 21:37:26 +08:00
|
|
|
// Handling of special errors
|
|
|
|
$(TABLE_ID).on('xhr.dt', function(e, settings, json) {
|
|
|
|
if (json.custom_error) {
|
|
|
|
json.data = [];
|
|
|
|
json.recordsFiltered = 0;
|
|
|
|
json.recordsTotal = 0;
|
|
|
|
TABLE.one('draw', function() {
|
|
|
|
$('#filtersDropdownButton').removeClass('active-filters');
|
|
|
|
$('#saveRepositoryFilters').addClass('hidden');
|
|
|
|
$('.repository-table-error').addClass('active').text(json.custom_error);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
})
|
2017-07-17 21:05:28 +08:00
|
|
|
|
2020-01-17 21:04:25 +08:00
|
|
|
initRowSelection();
|
2020-01-29 18:00:48 +08:00
|
|
|
$(window).resize(() => {
|
|
|
|
setTimeout(() => {
|
2020-01-29 18:03:25 +08:00
|
|
|
adjustTableHeader();
|
|
|
|
}, 500);
|
|
|
|
});
|
2020-01-17 21:04:25 +08:00
|
|
|
|
2019-07-26 19:00:25 +08:00
|
|
|
return TABLE;
|
2017-07-17 21:05:28 +08:00
|
|
|
}
|
2017-06-06 23:35:29 +08:00
|
|
|
|
2017-07-17 21:05:28 +08:00
|
|
|
global.onClickDeleteRecord = function() {
|
|
|
|
animateSpinner();
|
|
|
|
$.ajax({
|
|
|
|
url: $('table' + TABLE_ID).data('delete-record'),
|
|
|
|
type: 'POST',
|
|
|
|
dataType: 'json',
|
2019-07-26 19:00:25 +08:00
|
|
|
data: { selected_rows: rowsSelected },
|
2017-07-17 21:05:28 +08:00
|
|
|
success: function(data) {
|
|
|
|
HelperModule.flashAlertMsg(data.flash, data.color);
|
|
|
|
rowsSelected = [];
|
2019-11-21 22:04:34 +08:00
|
|
|
resetTableView();
|
2017-07-17 21:05:28 +08:00
|
|
|
},
|
2019-11-18 21:04:53 +08:00
|
|
|
error: function(ev) {
|
|
|
|
if (ev.status === 403) {
|
2020-06-05 04:42:48 +08:00
|
|
|
HelperModule.flashAlertMsg(I18n.t('repositories.js.permission_error'), ev.responseJSON.style);
|
|
|
|
} else {
|
|
|
|
animateSpinner(null, false);
|
|
|
|
HelperModule.flashAlertMsg(ev.responseJSON.flash, 'danger');
|
2017-07-17 21:05:28 +08:00
|
|
|
}
|
2017-06-06 23:35:29 +08:00
|
|
|
}
|
2017-07-17 21:05:28 +08:00
|
|
|
});
|
2019-07-26 19:00:25 +08:00
|
|
|
};
|
2018-04-11 23:17:19 +08:00
|
|
|
|
2020-06-17 20:05:23 +08:00
|
|
|
$('.repository-show')
|
|
|
|
.on('click', '#addRepositoryRecord', function() {
|
|
|
|
checkAvailableColumns();
|
|
|
|
RepositoryDatatableRowEditor.addNewRow(TABLE);
|
|
|
|
changeToEditMode();
|
|
|
|
})
|
|
|
|
.on('click', '#copyRepositoryRecords', function() {
|
|
|
|
animateSpinner();
|
|
|
|
$.ajax({
|
|
|
|
url: $('table' + TABLE_ID).data('copy-records'),
|
|
|
|
type: 'POST',
|
|
|
|
dataType: 'json',
|
|
|
|
data: { selected_rows: rowsSelected },
|
|
|
|
success: function(data) {
|
|
|
|
HelperModule.flashAlertMsg(data.flash, 'success');
|
|
|
|
rowsSelected = [];
|
|
|
|
resetTableView();
|
|
|
|
},
|
|
|
|
error: function(ev) {
|
|
|
|
if (ev.status === 403) {
|
2020-06-05 04:42:48 +08:00
|
|
|
HelperModule.flashAlertMsg(I18n.t('repositories.js.permission_error'), ev.responseJSON.style);
|
|
|
|
} else {
|
|
|
|
animateSpinner(null, false);
|
|
|
|
HelperModule.flashAlertMsg(ev.responseJSON.flash, 'danger');
|
2020-06-17 20:05:23 +08:00
|
|
|
}
|
2020-06-10 04:16:55 +08:00
|
|
|
}
|
2020-06-17 20:05:23 +08:00
|
|
|
});
|
|
|
|
})
|
|
|
|
.on('click', '#archiveRepositoryRecordsButton', function() {
|
|
|
|
animateSpinner();
|
|
|
|
$.ajax({
|
|
|
|
url: $('table' + TABLE_ID).data('archive-records'),
|
|
|
|
type: 'POST',
|
|
|
|
dataType: 'json',
|
|
|
|
data: { selected_rows: rowsSelected },
|
|
|
|
success: function(data) {
|
|
|
|
HelperModule.flashAlertMsg(data.flash, 'success');
|
|
|
|
rowsSelected = [];
|
|
|
|
resetTableView();
|
|
|
|
},
|
|
|
|
error: function(ev) {
|
|
|
|
if (ev.status === 403) {
|
|
|
|
HelperModule.flashAlertMsg(
|
|
|
|
I18n.t('repositories.js.permission_error'), ev.responseJSON.style
|
|
|
|
);
|
|
|
|
} else if (ev.status === 422) {
|
|
|
|
HelperModule.flashAlertMsg(
|
|
|
|
ev.responseJSON.error, 'danger'
|
|
|
|
);
|
|
|
|
animateSpinner(null, false);
|
|
|
|
}
|
2020-06-10 04:16:55 +08:00
|
|
|
}
|
2020-06-17 20:05:23 +08:00
|
|
|
});
|
|
|
|
})
|
|
|
|
.on('click', '#restoreRepositoryRecords', function() {
|
|
|
|
animateSpinner();
|
|
|
|
$.ajax({
|
|
|
|
url: $('table' + TABLE_ID).data('restore-records'),
|
|
|
|
type: 'POST',
|
|
|
|
dataType: 'json',
|
|
|
|
data: { selected_rows: rowsSelected },
|
|
|
|
success: function(data) {
|
|
|
|
HelperModule.flashAlertMsg(data.flash, 'success');
|
|
|
|
rowsSelected = [];
|
|
|
|
resetTableView();
|
|
|
|
},
|
|
|
|
error: function(ev) {
|
|
|
|
if (ev.status === 403) {
|
|
|
|
HelperModule.flashAlertMsg(
|
|
|
|
I18n.t('repositories.js.permission_error'), ev.responseJSON.style
|
|
|
|
);
|
|
|
|
} else if (ev.status === 422) {
|
|
|
|
HelperModule.flashAlertMsg(
|
|
|
|
ev.responseJSON.error, 'danger'
|
|
|
|
);
|
|
|
|
animateSpinner(null, false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
})
|
|
|
|
.on('click', '#editRepositoryRecord', function() {
|
|
|
|
checkAvailableColumns();
|
2017-06-06 23:35:29 +08:00
|
|
|
|
2020-06-17 20:05:23 +08:00
|
|
|
if (rowsSelected.length !== 1) {
|
|
|
|
return;
|
|
|
|
}
|
2017-06-06 23:35:29 +08:00
|
|
|
|
2020-06-17 20:05:23 +08:00
|
|
|
let row = TABLE.row('#' + rowsSelected[0]);
|
2017-06-06 23:35:29 +08:00
|
|
|
|
2020-06-17 20:05:23 +08:00
|
|
|
$(TABLE_ID).find('.repository-row-edit-icon').remove();
|
2017-06-06 23:35:29 +08:00
|
|
|
|
2020-06-17 20:05:23 +08:00
|
|
|
RepositoryDatatableRowEditor.switchRowToEditMode(row);
|
|
|
|
changeToEditMode();
|
|
|
|
adjustTableHeader();
|
|
|
|
})
|
|
|
|
.on('click', '#deleteRepositoryRecords', function() {
|
|
|
|
$('#deleteRepositoryRecord').modal('show');
|
2022-03-30 16:54:55 +08:00
|
|
|
})
|
|
|
|
.on('click', '#hideRepositoryReminders', function() {
|
|
|
|
var visibleReminderRepositoryRowIds = $('.row-reminders-dropdown').map(
|
|
|
|
function() { return $(this).closest('[role=row]').attr('id'); }
|
|
|
|
).toArray();
|
|
|
|
|
|
|
|
$.ajax({
|
|
|
|
type: 'POST',
|
|
|
|
url: $(this).data('hideRemindersUrl'),
|
|
|
|
dataType: 'json',
|
|
|
|
data: {
|
|
|
|
visible_reminder_repository_row_ids: visibleReminderRepositoryRowIds
|
|
|
|
},
|
|
|
|
success: function() {
|
|
|
|
$('#hideRepositoryReminders').remove();
|
|
|
|
TABLE.ajax.reload();
|
|
|
|
}
|
|
|
|
});
|
2020-06-17 20:05:23 +08:00
|
|
|
});
|
2017-07-17 21:05:28 +08:00
|
|
|
|
2019-07-26 19:00:25 +08:00
|
|
|
// Handle enter key
|
|
|
|
$(document).off('keypress').keypress(function(event) {
|
|
|
|
var keycode = (event.keyCode ? event.keyCode : event.which);
|
|
|
|
if (currentMode === 'editMode' && keycode === '13') {
|
|
|
|
$('#saveRecord').click();
|
|
|
|
}
|
|
|
|
});
|
2018-05-15 21:47:11 +08:00
|
|
|
|
2019-07-26 19:00:25 +08:00
|
|
|
global.clearFileInput = function(el) {
|
2018-07-03 21:25:37 +08:00
|
|
|
var parent = $(el).closest('div.repository-input-file-field');
|
2019-07-26 19:00:25 +08:00
|
|
|
var input = parent.find('input:file')[0];
|
2018-07-03 21:25:37 +08:00
|
|
|
// hide clear button
|
|
|
|
$(parent.find('a[data-action="removeAsset"]')[0]).hide();
|
|
|
|
// reset value
|
|
|
|
input.value = '';
|
|
|
|
// add flag
|
|
|
|
$(input).attr('remove', true);
|
|
|
|
// clear fileName
|
2019-07-26 19:00:25 +08:00
|
|
|
$(parent.find('.file-name-label')[0]).text(I18n.t('general.file.no_file_chosen'));
|
2018-07-04 19:43:45 +08:00
|
|
|
$(parent.find('.form-group')[0]).removeClass('has-error');
|
|
|
|
parent.removeClass('has-error');
|
|
|
|
$(parent.find('.help-block')[0]).remove();
|
2019-07-26 19:00:25 +08:00
|
|
|
};
|
2018-04-13 23:21:17 +08:00
|
|
|
|
2017-07-17 21:05:28 +08:00
|
|
|
function init(id) {
|
|
|
|
TABLE_ID = id;
|
2019-11-18 21:04:53 +08:00
|
|
|
EDITABLE = $(TABLE_ID).data('editable');
|
2017-07-17 21:05:28 +08:00
|
|
|
TABLE = dataTableInit();
|
2020-05-15 23:46:59 +08:00
|
|
|
if ($(TABLE_ID).data('snapshot-provisioning')) {
|
|
|
|
setTimeout(() => { checkSnapshottingStatus(); }, STATUS_POLLING_INTERVAL);
|
|
|
|
}
|
2017-07-17 21:05:28 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
function destroy() {
|
2018-07-19 23:56:42 +08:00
|
|
|
if (TABLE !== null) {
|
|
|
|
TABLE.destroy();
|
|
|
|
TABLE = null;
|
|
|
|
}
|
2017-07-17 21:05:28 +08:00
|
|
|
TABLE_ID = '';
|
|
|
|
}
|
|
|
|
|
2018-06-08 16:58:28 +08:00
|
|
|
function redrawTableOnSidebarToggle() {
|
2020-07-09 20:09:55 +08:00
|
|
|
$('#wrapper').on('sideBar::hide sideBar::hidden', function() {
|
2020-01-13 21:46:43 +08:00
|
|
|
var orgignalWidth = $('.repository-show .dataTables_scrollHead .table.dataTable').width();
|
|
|
|
var windowWidth = $(window).width();
|
2020-07-09 20:09:55 +08:00
|
|
|
if (windowWidth > orgignalWidth + 363) {
|
|
|
|
$('.repository-show .dataTables_scrollHead')
|
|
|
|
.find('.table.dataTable').css('width', (orgignalWidth + 280) + 'px');
|
2020-01-13 21:46:43 +08:00
|
|
|
}
|
2020-07-09 20:09:55 +08:00
|
|
|
document.documentElement.style.setProperty('--repository-sidebar-margin', '83px');
|
|
|
|
});
|
|
|
|
|
|
|
|
$('#wrapper').on('sideBar::show', function() {
|
|
|
|
var orgignalWidth = $('.repository-show .dataTables_scrollHead .table.dataTable').width();
|
|
|
|
var windowWidth = $(window).width();
|
|
|
|
if (windowWidth > orgignalWidth + 83) {
|
|
|
|
$('.repository-show .dataTables_scrollHead')
|
|
|
|
.find('.table.dataTable').css('width', (orgignalWidth - 280) + 'px');
|
|
|
|
}
|
|
|
|
document.documentElement.style.setProperty('--repository-sidebar-margin', '363px');
|
|
|
|
});
|
|
|
|
|
|
|
|
$('#wrapper').on('sideBar::hidden sideBar::shown', function() {
|
|
|
|
adjustTableHeader();
|
2018-06-08 16:58:28 +08:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2020-06-17 20:05:23 +08:00
|
|
|
function checkArchivedColumnsState() {
|
|
|
|
var archived = $('.repository-show').hasClass('archived');
|
2020-06-22 20:00:44 +08:00
|
|
|
$.each(TABLE.context[0].aoColumns, function(i, column) {
|
|
|
|
if (['archived-on', 'archived-by'].includes(column.nTh.id)) {
|
|
|
|
TABLE.column(column.idx).visible(archived);
|
|
|
|
}
|
|
|
|
});
|
2020-06-17 20:05:23 +08:00
|
|
|
}
|
|
|
|
|
2021-11-26 03:34:22 +08:00
|
|
|
function renderFiltersDropdown() {
|
|
|
|
let dropdown = $('#repositoryFilterTemplate').html();
|
2022-03-18 21:10:34 +08:00
|
|
|
$('.toolbar-filters').html(dropdown);
|
2021-11-26 03:34:22 +08:00
|
|
|
if (typeof initRepositoryFilter === 'function') initRepositoryFilter();
|
|
|
|
}
|
|
|
|
|
2017-07-17 21:05:28 +08:00
|
|
|
return Object.freeze({
|
|
|
|
init: init,
|
2018-06-08 16:58:28 +08:00
|
|
|
destroy: destroy,
|
2020-06-17 20:05:23 +08:00
|
|
|
reload: function() {
|
|
|
|
TABLE.ajax.reload();
|
|
|
|
clearRowSelection();
|
|
|
|
},
|
2020-01-14 18:13:19 +08:00
|
|
|
redrawTableOnSidebarToggle: redrawTableOnSidebarToggle,
|
|
|
|
checkAvailableColumns: checkAvailableColumns
|
2017-07-17 21:05:28 +08:00
|
|
|
});
|
2019-07-26 19:00:25 +08:00
|
|
|
}(window));
|