feat: enhance map editor, refine location view, and update image assets

- Map Editor: Add box numbering (drawing/placed) and set default file
- Location View: Refine mouse interaction in view mode (readonly)
- Assets: Add MDF room support and update server room directory structure
- Backend: Add map configuration API for real-time saving
This commit is contained in:
2026-06-01 14:00:45 +09:00
parent bf7fb0ffe6
commit 590ddd0e85
19 changed files with 1456 additions and 109 deletions

View File

@@ -12,13 +12,15 @@ export function initBaseModal() {
if (e.key === 'Escape') closeModals();
});
// 배경(Overlay) 클릭 시 닫기
// 배경(Overlay) 클릭 시 닫기 (요청에 의해 비활성화됨)
/*
document.addEventListener('click', (e) => {
const target = e.target as HTMLElement;
if (target.classList.contains('modal-overlay')) {
closeModals();
}
});
*/
return { closeAllModals: closeModals };
}