2024-05-18 16:24:06 +00:00
|
|
|
var draggingData = {
|
|
|
|
id: 0,
|
|
|
|
roomTypeId: 0,
|
|
|
|
parentRoomId: 0
|
|
|
|
}
|
|
|
|
|
2024-05-19 19:07:31 +00:00
|
|
|
var allowRedirect = false;
|
|
|
|
|
2024-05-16 21:52:09 +00:00
|
|
|
function initObjects (){
|
|
|
|
draggables = document.querySelectorAll("div.grid.people div.edit-drag");
|
|
|
|
rooms = document.querySelectorAll("main.container>div.room");
|
|
|
|
Array.from(draggables).forEach(element => {
|
|
|
|
element.addEventListener('dragstart', dragStart);
|
|
|
|
element.addEventListener('dragend', dragEnd);
|
|
|
|
});
|
|
|
|
Array.from(rooms).forEach(room => {
|
|
|
|
room.addEventListener('dragenter', dragEnter)
|
|
|
|
room.addEventListener('dragover', dragOver);
|
|
|
|
room.addEventListener('dragleave', dragLeave);
|
|
|
|
room.addEventListener('drop', drop);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2024-05-18 16:24:06 +00:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {DragEvent} e
|
|
|
|
*/
|
2024-05-16 21:52:09 +00:00
|
|
|
function dragStart(e) {
|
|
|
|
element = e.target;
|
|
|
|
room = element.closest('div.room')
|
2024-05-18 16:24:06 +00:00
|
|
|
setData(element.id, element.getAttribute('room-type'), room.id)
|
|
|
|
e.dataTransfer.effectAllowed = 'move';
|
|
|
|
setTimeout(()=>toggleRoomSelection(true), 0);
|
2024-05-16 21:52:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function dragEnd(e) {
|
|
|
|
toggleRoomSelection(false);
|
2024-05-18 16:24:06 +00:00
|
|
|
resetData ();
|
2024-05-16 21:52:09 +00:00
|
|
|
e.stopPropagation();
|
|
|
|
}
|
|
|
|
|
|
|
|
function dragEnter(e) {
|
|
|
|
e.preventDefault();
|
|
|
|
e.target.classList.add('drag-over');
|
2024-05-18 16:24:06 +00:00
|
|
|
checkDragLocation (getData(), e.target);
|
2024-05-16 21:52:09 +00:00
|
|
|
e.stopPropagation();
|
|
|
|
}
|
|
|
|
|
|
|
|
function dragOver(e) {
|
|
|
|
e.preventDefault();
|
|
|
|
e.target.classList.add('drag-over');
|
2024-05-18 16:24:06 +00:00
|
|
|
checkDragLocation (getData(), e.target)
|
2024-05-16 21:52:09 +00:00
|
|
|
e.stopPropagation();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {Element} target
|
|
|
|
*/
|
|
|
|
function checkDragLocation (data, target) {
|
|
|
|
let toReturn = true;
|
|
|
|
const isInfinite = target.getAttribute("infinite");
|
|
|
|
const maxSizeReached = target.getAttribute("current-size") >= target.getAttribute("room-size");
|
2024-05-18 16:24:06 +00:00
|
|
|
const roomTypeMismatch = data.roomTypeId !== target.getAttribute("room-type");
|
2024-05-16 21:52:09 +00:00
|
|
|
if (!isInfinite && (maxSizeReached || roomTypeMismatch)) {
|
|
|
|
target.classList.add('drag-forbidden');
|
|
|
|
toReturn = false;
|
2024-05-18 16:24:06 +00:00
|
|
|
} else {
|
|
|
|
target.classList.remove('drag-forbidden');
|
2024-05-16 21:52:09 +00:00
|
|
|
}
|
|
|
|
return toReturn;
|
|
|
|
}
|
|
|
|
|
|
|
|
function dragLeave(e) {
|
|
|
|
e.target.classList.remove('drag-over');
|
|
|
|
e.target.classList.remove('drag-forbidden');
|
|
|
|
}
|
|
|
|
|
|
|
|
function drop(e) {
|
|
|
|
e.target.classList.remove('drag-over');
|
|
|
|
toggleRoomSelection(false);
|
2024-05-18 16:24:06 +00:00
|
|
|
if (checkDragLocation(getData(), e.target) === true) {
|
|
|
|
const data = getData();
|
2024-05-16 21:52:09 +00:00
|
|
|
let item = document.getElementById (data.id)
|
2024-05-18 16:24:06 +00:00
|
|
|
let oldParent = document.getElementById (data.parentRoomId)
|
2024-05-16 21:52:09 +00:00
|
|
|
let newParent = e.target;
|
2024-05-18 22:06:36 +00:00
|
|
|
if (moveToRoom (data.id, data.parentRoomId.replace('room-',''), newParent.id.replace('room-','')) === true) {
|
|
|
|
let newParentContainer = newParent.querySelector('div.grid.people')
|
|
|
|
newParentContainer.appendChild (item);
|
|
|
|
let oldParentQty = parseInt(oldParent.getAttribute("current-size")) - 1;
|
|
|
|
let newParentQty = parseInt(newParent.getAttribute("current-size")) + 1;
|
|
|
|
let newParentCapacity = parseInt(newParent.getAttribute("room-size"));
|
|
|
|
oldParent.setAttribute("current-size", oldParentQty);
|
|
|
|
newParent.setAttribute("current-size", newParentQty);
|
|
|
|
oldParent.classList.remove('complete');
|
|
|
|
if (newParentCapacity == newParentQty) newParent.classList.add('complete');
|
|
|
|
}
|
2024-05-16 21:52:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function toggleRoomSelection(newStatus) {
|
2024-05-18 22:06:36 +00:00
|
|
|
rooms = document.querySelectorAll("div.room");
|
2024-05-16 21:52:09 +00:00
|
|
|
Array.from(rooms).forEach(room=>{
|
|
|
|
room.classList.toggle('interactless', newStatus);
|
|
|
|
room.classList.remove('drag-over');
|
|
|
|
room.classList.remove('drag-forbidden');
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2024-05-18 16:24:06 +00:00
|
|
|
function setData (id, roomType, parentRoomId) {
|
|
|
|
draggingData.id = id;
|
|
|
|
draggingData.roomTypeId = roomType;
|
|
|
|
draggingData.parentRoomId = parentRoomId;
|
|
|
|
}
|
|
|
|
|
2024-05-18 22:06:36 +00:00
|
|
|
function resetData (){ setData(0, 0, 0); }
|
|
|
|
|
|
|
|
function getData () { return draggingData; }
|
|
|
|
|
|
|
|
// This default onbeforeunload event
|
|
|
|
window.onbeforeunload = function(){
|
2024-05-19 19:07:31 +00:00
|
|
|
if (!allowRedirect) return "Any changes to the rooms will be discarded."
|
2024-05-18 22:06:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Model managing */
|
|
|
|
|
|
|
|
var model = saveData;
|
|
|
|
|
|
|
|
const toAdd = "to_add";
|
|
|
|
|
|
|
|
function moveToRoom (order, from, to){
|
|
|
|
if (!model) { console.error("Model is null", order, from, to); return false; }
|
|
|
|
if (!model[from]) { console.error("Parent is null", order, from, to); return false; }
|
|
|
|
if (!model[to]) { console.error("Destination is null", order, from, to); return false; }
|
|
|
|
if (!model[from][toAdd] || !model[from][toAdd].includes(order)) { console.error("Order is not in parent", order, from, to); return false; }
|
|
|
|
if (!model[to][toAdd]) model[to][toAdd] = [];
|
|
|
|
// Delete order from the original room
|
|
|
|
model[from][toAdd] = model[from][toAdd].filter (itm=> itm !== order)
|
|
|
|
// Add it to the destination room
|
|
|
|
model[to][toAdd].push (order);
|
|
|
|
return true;
|
2024-05-18 16:24:06 +00:00
|
|
|
}
|
|
|
|
|
2024-05-18 22:06:36 +00:00
|
|
|
function onSave (){
|
|
|
|
if (model['infinite'] && model['infinite'][toAdd] && model['infinite'][toAdd].length > 0) {
|
|
|
|
setTimeout(()=>{
|
|
|
|
let roomItem = document.querySelector("#room-infinite");
|
|
|
|
roomItem.scrollIntoView();
|
|
|
|
roomItem.classList.add('drag-forbidden');
|
|
|
|
setTimeout(()=>roomItem.classList.remove('drag-forbidden'), 3000);
|
|
|
|
}, 100);
|
|
|
|
} else {
|
|
|
|
document.getElementById('modalConfirmDialog').setAttribute('open', 'true');
|
|
|
|
}
|
2024-05-18 16:24:06 +00:00
|
|
|
}
|
|
|
|
|
2024-05-19 19:07:31 +00:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {Element} element
|
|
|
|
*/
|
|
|
|
function submitData (element){
|
|
|
|
if (element.ariaDisabled) return;
|
|
|
|
element.ariaDisabled = true;
|
|
|
|
element.setAttribute("aria-busy", true);
|
|
|
|
document.querySelector("#modalClose").setAttribute("disabled", true);
|
|
|
|
document.querySelector("#modalClose").style.display = 'none';
|
|
|
|
// Create request
|
|
|
|
const xhr = new XMLHttpRequest();
|
|
|
|
xhr.open('POST', '/manage/admin/room/wizard/submit', true);
|
|
|
|
xhr.withCredentials = true;
|
|
|
|
xhr.setRequestHeader('Content-Type', 'application/json');
|
|
|
|
xhr.onreadystatechange = function() {
|
|
|
|
if (xhr.readyState === XMLHttpRequest.DONE) {
|
|
|
|
let popoverText = document.querySelector("#popover-status-text");
|
|
|
|
let popoverStatus = document.querySelector("#popover-status");
|
|
|
|
popoverStatus.classList.remove('status-error');
|
|
|
|
popoverStatus.classList.remove('status-success');
|
|
|
|
if (xhr.status === 200) {
|
|
|
|
// Handle correct redirect
|
|
|
|
popoverText.innerText = "Changes applied successfully. Redirecting..."
|
|
|
|
popoverStatus.classList.add('status-success');
|
|
|
|
} else {
|
|
|
|
// Handle errors
|
|
|
|
let error = xhr.statusText;
|
|
|
|
popoverText.innerText = "Could not apply changes: " + error;
|
|
|
|
console.error('Error submitting data:', error);
|
|
|
|
popoverStatus.classList.add('status-error');
|
|
|
|
}
|
|
|
|
popoverStatus.showPopover();
|
|
|
|
allowRedirect = true;
|
|
|
|
setTimeout(()=>window.location.assign('/manage/admin'), 3000);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
xhr.send(JSON.stringify(model));
|
|
|
|
}
|
|
|
|
|
2024-05-16 21:52:09 +00:00
|
|
|
initObjects ();
|