Implemented storageUnit api / Added error handling
- AFLOW-13 - Added check if an category entry already exists. - Update precheck if all IDs are existing
This commit is contained in:
@ -20,7 +20,7 @@ function getDataForEdit(name) {
|
||||
$('.loader-overlay').removeClass('active');
|
||||
// Close the modal
|
||||
$('.modal').modal('hide');
|
||||
$('#generalToast').removeClass('text-bg-primary');
|
||||
normalizeToast()
|
||||
$('#generalToast').addClass('text-bg-danger');
|
||||
$('#generalToast').toast('show');
|
||||
$('#generalToast').children('.d-flex').children('.toast-body').html('<i class="bi bi-exclamation-triangle-fill"></i> Something went wrong. The category does no longer exist.');
|
||||
@ -81,14 +81,13 @@ function deleteEntry(id) {
|
||||
error: function (data) {
|
||||
// hide the staticBackdrop modal
|
||||
$('#staticBackdrop').modal('hide');
|
||||
$('#generalToast').removeClass('text-bg-primary');
|
||||
normalizeToast()
|
||||
|
||||
$('#generalToast').addClass('text-bg-danger');
|
||||
$('#generalToast').toast('show');
|
||||
$('#generalToast').children('.d-flex').children('.toast-body').html('<i class="bi bi-exclamation-triangle-fill"></i> Something went wrong. Please try again later.');
|
||||
setTimeout(() => {
|
||||
$('#generalToast').toast('hide');
|
||||
$('#generalToast').removeClass('text-bg-danger');
|
||||
$('#generalToast').addClass('text-bg-primary');
|
||||
}, 3000);
|
||||
}
|
||||
});
|
||||
@ -118,7 +117,7 @@ function preFillDeleteModal(name) {
|
||||
document.getElementById('deleteNamePlaceholder').innerText = 'Deleted';
|
||||
|
||||
$('#staticBackdrop').modal('hide');
|
||||
$('#generalToast').removeClass('text-bg-primary');
|
||||
normalizeToast()
|
||||
$('#generalToast').addClass('text-bg-danger');
|
||||
$('#generalToast').toast('show');
|
||||
$('#generalToast').children('.d-flex').children('.toast-body').html('<i class="bi bi-exclamation-triangle-fill"></i> Something went wrong. The category does no longer exist.');
|
||||
|
@ -26,6 +26,9 @@ $('.nav-link').on('click', function (e) {
|
||||
function primeCreateNew() {
|
||||
const form = document.getElementById('storageUnitModalForm');
|
||||
const form2 = document.getElementById('storageLocationModal');
|
||||
document.getElementById('createNewLocationSelection').disabled = false;
|
||||
document.getElementById('storageUnitModalLocationSelectText').innerText= "Select or create a new location.";
|
||||
document.getElementById('storageUnitModalLabel').innerText = "Create new storage unit";
|
||||
form.setAttribute('method', 'POST');
|
||||
form2.setAttribute('method', 'POST');
|
||||
return true;
|
||||
@ -34,6 +37,12 @@ function primeCreateNew() {
|
||||
function primeEdit() {
|
||||
const form = document.getElementById('storageUnitModalForm');
|
||||
const form2 = document.getElementById('storageLocationModal');
|
||||
// Disable create new location
|
||||
document.getElementById('createNewLocationSelection').disabled = true;
|
||||
document.getElementById('storageUnitModalLocationSelectText').innerText= "While editing you can only select already existing locations. Use the settings to create new ones.";
|
||||
document.getElementById('storageUnitModalLabel').innerText = "Edit a storage unit";
|
||||
document.getElementById('storageUnitModalLocationSelect').value = 1
|
||||
handleSelector()
|
||||
form.setAttribute('method', 'PATCH');
|
||||
form2.setAttribute('method', 'PATCH');
|
||||
return true;
|
||||
@ -52,4 +61,135 @@ function handleSelector(){
|
||||
console.log(value);
|
||||
}
|
||||
|
||||
|
||||
|
||||
function preFillDeleteModal(id) {
|
||||
$.ajax({
|
||||
type: 'get',
|
||||
url: `/api/v1/storageUnits?id=${id}`,
|
||||
success: function (data) {
|
||||
const result = JSON.parse(data);
|
||||
|
||||
// Get elements inside the editCategoryModal
|
||||
const modal_categoryName = document.getElementById('deleteNamePlaceholder');
|
||||
const modal_deleteButton = document.getElementById('deleteActionBtn');
|
||||
//const modal_categoryDescription = document.getElementById('editCategoryModalDescription');
|
||||
//const modal_categoryid = document.getElementById('editCategoryModalId');
|
||||
|
||||
modal_categoryName.innerText = result.name;
|
||||
modal_deleteButton.setAttribute('onclick', `deleteEntry(${result.id})`);
|
||||
|
||||
//modal_categoryDescription.value = result.description;
|
||||
//modal_categoryid.value = result.id;
|
||||
},
|
||||
error: function (data) {
|
||||
console.log('!!!! ERROR !!!!', data);
|
||||
document.getElementById('deleteNamePlaceholder').innerText = 'Deleted';
|
||||
|
||||
$('#staticBackdrop').modal('hide');
|
||||
normalizeToast()
|
||||
|
||||
$('#generalToast').addClass('text-bg-danger');
|
||||
$('#generalToast').toast('show');
|
||||
$('#generalToast').children('.d-flex').children('.toast-body').html('<i class="bi bi-exclamation-triangle-fill"></i> Something went wrong. The storageUnit does no longer exist.');
|
||||
setTimeout(() => {
|
||||
window.location.reload();
|
||||
}, 3000);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
function deleteEntry(id) {
|
||||
$.ajax({
|
||||
type: 'delete',
|
||||
url: `/api/v1/storageUnits`,
|
||||
data: { id: id },
|
||||
success: function (data) {
|
||||
$('#staticBackdrop').modal('hide');
|
||||
normalizeToast()
|
||||
|
||||
$('#generalToast').addClass('text-bg-success');
|
||||
$('#generalToast').toast('show');
|
||||
$('#generalToast').children('.d-flex').children('.toast-body').html('<i class="bi bi-check2"></i> Storage Unit deleted successfully.');
|
||||
confetti({
|
||||
spread: 360,
|
||||
ticks: 100,
|
||||
gravity: 0.1,
|
||||
decay: 0.94,
|
||||
startVelocity: 30,
|
||||
particleCount: 20,
|
||||
scalar: 2,
|
||||
shapes: ['text'],
|
||||
shapeOptions: {
|
||||
text: {
|
||||
value: ['❌', '🗑️', '🚫']
|
||||
}
|
||||
}
|
||||
});
|
||||
setTimeout(() => {
|
||||
$('#generalToast').toast('hide');
|
||||
window.location.reload();
|
||||
}, 2000);
|
||||
},
|
||||
error: function (data) {
|
||||
// hide the staticBackdrop modal
|
||||
$('#staticBackdrop').modal('hide');
|
||||
normalizeToast()
|
||||
$('#generalToast').addClass('text-bg-danger');
|
||||
$('#generalToast').toast('show');
|
||||
$('#generalToast').children('.d-flex').children('.toast-body').html('<i class="bi bi-exclamation-triangle-fill"></i> Something went wrong. Please try again later.');
|
||||
setTimeout(() => {
|
||||
$('#generalToast').toast('hide');
|
||||
}, 3000);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
function getDataForEdit(id) {
|
||||
$.ajax({
|
||||
type: 'get',
|
||||
url: `/api/v1/storageUnits?id=${id}`,
|
||||
success: function (data) {
|
||||
const result = JSON.parse(data);
|
||||
|
||||
// Get elements inside the editCategoryModal
|
||||
const modal_unitName = document.getElementById('storageUnitModalName');
|
||||
const modal_unitLocation = document.getElementById('storageUnitModalLocationSelect');
|
||||
const modal_unitId = document.getElementById('storageUnitModalLocationSelectHidden');
|
||||
// const modal_categoryid = document.getElementById('editCategoryModalId');
|
||||
|
||||
modal_unitName.value = result.name;
|
||||
modal_unitId.value = result.id;
|
||||
|
||||
// Select the correct location from the select based on the value of the option
|
||||
for(var i, j = 0; i = modal_unitLocation.options[j]; j++) {
|
||||
console.log(i.value, result.contactInfoId);
|
||||
if(i.value == result.contactInfoId) {
|
||||
console.log("Found it");
|
||||
modal_unitLocation.selectedIndex = j;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
},
|
||||
error: function (data) {
|
||||
console.log('!!!! ERROR !!!!', data);
|
||||
// Hide overlay with spinner
|
||||
$('.loader-overlay').removeClass('active');
|
||||
// Close the modal
|
||||
$('.modal').modal('hide');
|
||||
normalizeToast()
|
||||
$('#generalToast').addClass('text-bg-danger');
|
||||
$('#generalToast').toast('show');
|
||||
$('#generalToast').children('.d-flex').children('.toast-body').html('<i class="bi bi-exclamation-triangle-fill"></i> Something went wrong. The storage unit does no longer exist.');
|
||||
setTimeout(() => {
|
||||
window.location.reload();
|
||||
}, 3000);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
handleSelector()
|
@ -26,14 +26,12 @@ $('.frontendForm').each(function() {
|
||||
// Clear all fields
|
||||
form.find('input, textarea').val('');
|
||||
|
||||
$('#generalToast').removeClass('text-bg-primary');
|
||||
normalizeToast()
|
||||
$('#generalToast').addClass('text-bg-success');
|
||||
$('#generalToast').toast('show');
|
||||
$('#generalToast').children('.d-flex').children('.toast-body').html('<i class="bi bi-check2"></i> Changes saved successfully.');
|
||||
setTimeout(() => {
|
||||
$('#generalToast').toast('hide');;
|
||||
$('#generalToast').removeClass('text-bg-success');
|
||||
$('#generalToast').addClass('text-bg-primary');
|
||||
window.location.reload();
|
||||
}, 1500);
|
||||
},
|
||||
@ -41,15 +39,20 @@ $('.frontendForm').each(function() {
|
||||
console.log('error');
|
||||
// Hide overlay with spinner
|
||||
$('.loader-overlay').removeClass('loaderActive');
|
||||
|
||||
$('#generalToast').removeClass('text-bg-primary');
|
||||
|
||||
// Check for response code 409
|
||||
normalizeToast()
|
||||
$('#generalToast').addClass('text-bg-danger');
|
||||
$('#generalToast').toast('show');
|
||||
$('#generalToast').children('.d-flex').children('.toast-body').html('<i class="bi bi-exclamation-triangle-fill"></i> Something went wrong. Please try again later.');
|
||||
|
||||
|
||||
if (data.status == 409) {
|
||||
$('#generalToast').children('.d-flex').children('.toast-body').html('<i class="bi bi-exclamation-triangle-fill"></i> The element you tried to create already exists.');
|
||||
}else {
|
||||
$('#generalToast').children('.d-flex').children('.toast-body').html('<i class="bi bi-exclamation-triangle-fill"></i> Something went wrong. Please try again later.');
|
||||
}
|
||||
setTimeout(() => {
|
||||
$('#generalToast').toast('hide');
|
||||
$('#generalToast').removeClass('text-bg-danger');
|
||||
$('#generalToast').addClass('text-bg-primary');
|
||||
}, 3000);
|
||||
}
|
||||
});
|
||||
|
7
static/js/normalizeToast.js
Normal file
7
static/js/normalizeToast.js
Normal file
@ -0,0 +1,7 @@
|
||||
function normalizeToast(){
|
||||
$('#generalToast').removeClass('text-bg-primary');
|
||||
$('#generalToast').removeClass('text-bg-success');
|
||||
$('#generalToast').removeClass('text-bg-danger');
|
||||
$('#generalToast').removeClass('text-bg-warning');
|
||||
$('#generalToast').removeClass('text-bg-info');
|
||||
}
|
Reference in New Issue
Block a user