From 6a2248ddcdf3ba50fa15694504724efb56831c57 Mon Sep 17 00:00:00 2001 From: Dom Date: Mon, 20 Apr 2026 18:26:05 +0200 Subject: [PATCH] =?UTF-8?q?feat(dashboard):=20clic=20plein=20=C3=A9cran=20?= =?UTF-8?q?sur=20les=20images=20cartographie?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Modale fullscreen au clic sur les diagrammes BPMN/DFG. Fermeture par clic ou Échap. Les images sont illisibles en miniature. Co-Authored-By: Claude Opus 4.6 (1M context) --- web_dashboard/templates/process_mining.html | 29 ++++++++++++++++++--- 1 file changed, 25 insertions(+), 4 deletions(-) diff --git a/web_dashboard/templates/process_mining.html b/web_dashboard/templates/process_mining.html index 059b31b0c..188e0465d 100644 --- a/web_dashboard/templates/process_mining.html +++ b/web_dashboard/templates/process_mining.html @@ -219,12 +219,18 @@
- Cartographie des processus -

Chaque rectangle represente une etape du processus observe. Les fleches indiquent l'ordre des actions.

+ Cartographie des processus +

Cliquer sur l'image pour l'agrandir. Chaque rectangle represente une etape du processus observe.

+ + + @@ -420,6 +426,21 @@ function renderResults(data) { // ======================================================================== // Toggle vue BPMN / DFG // ======================================================================== +function openFullscreen(img) { + document.getElementById('fullscreenImg').src = img.src; + document.getElementById('fullscreenModal').style.display = 'block'; + document.body.style.overflow = 'hidden'; +} + +function closeFullscreen() { + document.getElementById('fullscreenModal').style.display = 'none'; + document.body.style.overflow = 'auto'; +} + +document.addEventListener('keydown', function(e) { + if (e.key === 'Escape') closeFullscreen(); +}); + function switchView(view, btn) { document.querySelectorAll('.view-toggle .toggle-btn').forEach(b => b.classList.remove('active')); btn.classList.add('active');