Spaces:
Sleeping
Sleeping
File size: 9,775 Bytes
793c96d 9e51f43 793c96d 9e51f43 151ba7d 793c96d 9e51f43 793c96d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 | (function () {
/* ββ 1. Desktop: map column slide-in ββ */
function initMapCol() {
var el = document.getElementById('map-col');
if (!el) { setTimeout(initMapCol, 300); return; }
new MutationObserver(function () {
var hasIframe = !!el.querySelector('iframe');
el.classList.toggle('map-active', hasIframe);
setMapReady(hasIframe);
}).observe(el, { childList: true, subtree: true });
}
setTimeout(initMapCol, 500);
/* ββ 2. Chat active state (centered β bottom input) ββ */
function initChatCenter() {
var chatCol = document.getElementById('chat-col-inner');
if (!chatCol) { setTimeout(initChatCenter, 300); return; }
function check() {
var chatbot = document.getElementById('main-chatbot');
if (!chatbot) return;
var log = chatbot.querySelector('[role="log"]');
var active = log ? log.children.length > 0 : false;
chatCol.classList.toggle('chat-active', active);
document.body.classList.toggle('chat-active', active);
}
// Observe the stable column β survives Gradio's DOM rebuilds on clear/reset
new MutationObserver(check).observe(chatCol, { childList: true, subtree: true });
}
setTimeout(initChatCenter, 300);
/* ββ 3. Mobile: in-chat map button & fullscreen overlay ββ */
var overlay = null;
var mapChatBtn = null;
var mapReady = false;
var reinjecting = false;
var imgLightbox = null;
function setMapReady(ready) {
mapReady = ready;
if (ready) {
ensureMapBtnLast();
// If overlay is open and map updated, refresh its content
if (overlay && overlay.classList.contains('active')) {
loadMapIntoOverlay();
}
} else {
if (mapChatBtn) { mapChatBtn.remove(); mapChatBtn = null; }
}
}
/* Keep the map button as the last child of [role="log"] */
function ensureMapBtnLast() {
if (reinjecting || !mapReady) return;
var chatbot = document.getElementById('main-chatbot');
var log = chatbot && chatbot.querySelector('[role="log"]');
if (!log) return;
if (!mapChatBtn) {
mapChatBtn = buildMapChatBtn();
}
if (log.lastElementChild !== mapChatBtn) {
reinjecting = true;
log.appendChild(mapChatBtn);
// Reset flag after microtasks + one macrotask so the observer
// callback triggered by appendChild is already processed
setTimeout(function () { reinjecting = false; }, 0);
}
}
function buildMapChatBtn() {
var wrap = document.createElement('div');
wrap.id = 'map-chat-btn';
var btn = document.createElement('button');
btn.setAttribute('aria-label', 'Karte anzeigen');
btn.innerHTML =
'<svg width="15" height="15" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true">' +
'<path d="M9 4L3 7v13l6-3 6 3 6-3V4l-6 3-6-3z"/>' +
'<line x1="9" y1="4" x2="9" y2="17"/><line x1="15" y1="7" x2="15" y2="20"/>' +
'</svg>' +
'<span>Karte anzeigen</span>';
btn.addEventListener('click', openMapOverlay);
wrap.appendChild(btn);
return wrap;
}
/* Observer on chatbot: keeps map button last during streaming */
function initChatBotObserver() {
var chatbot = document.getElementById('main-chatbot');
if (!chatbot) { setTimeout(initChatBotObserver, 400); return; }
new MutationObserver(function () {
if (!reinjecting) ensureMapBtnLast();
}).observe(chatbot, { childList: true, subtree: true });
}
setTimeout(initChatBotObserver, 600);
/* ββ 4. Fullscreen overlay ββ */
function buildOverlay() {
var chatCol = document.getElementById('chat-col-inner');
if (!chatCol) { setTimeout(buildOverlay, 400); return; }
overlay = document.createElement('div');
overlay.id = 'map-overlay';
overlay.setAttribute('role', 'dialog');
overlay.setAttribute('aria-modal', 'true');
overlay.setAttribute('aria-label', 'Kartenansicht');
overlay.innerHTML =
'<div id="map-overlay-bar">' +
'<span class="map-overlay-title">Karte</span>' +
'<button id="map-overlay-close" aria-label="Karte schlie\u00dfen">' +
'<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round">' +
'<line x1="18" y1="6" x2="6" y2="18"/><line x1="6" y1="6" x2="18" y2="18"/>' +
'</svg></button></div>' +
'<div id="map-overlay-content"></div>';
document.body.appendChild(overlay);
overlay.querySelector('#map-overlay-close').addEventListener('click', closeMapOverlay);
}
setTimeout(buildOverlay, 600);
/* ββ 5. Image lightbox for chatbot charts ββ */
function buildImageLightbox() {
var chatbot = document.getElementById('main-chatbot');
if (!chatbot) { setTimeout(buildImageLightbox, 400); return; }
var lb = document.createElement('div');
lb.id = 'img-lightbox';
lb.setAttribute('role', 'dialog');
lb.setAttribute('aria-modal', 'true');
lb.setAttribute('aria-label', 'Full-size chart');
var lbImg = document.createElement('img');
lbImg.setAttribute('alt', '');
lb.appendChild(lbImg);
document.body.appendChild(lb);
imgLightbox = lb;
lb.addEventListener('click', function () {
lb.classList.remove('active');
});
lbImg.addEventListener('click', function (e) {
e.stopPropagation();
});
// Intercept clicks anywhere in .image-container (capture phase = before Gradio's broken handler)
chatbot.addEventListener('click', function (e) {
var container = e.target.closest('.image-container');
if (!container) return;
var img = container.querySelector('.image-frame img');
if (!img || !img.src) return;
lbImg.src = img.src;
lb.classList.add('active');
e.stopPropagation();
}, true);
}
setTimeout(buildImageLightbox, 700);
/* ββ 6. Reset textarea height after submit clears the input ββ */
function initTextareaReset() {
var chatCol = document.getElementById('chat-col-inner');
if (!chatCol) { setTimeout(initTextareaReset, 400); return; }
new MutationObserver(function () {
var ta = chatCol.querySelector('.multimodal-textbox textarea');
if (ta && !ta.value && ta.style.height) {
ta.style.height = '';
}
}).observe(chatCol, { childList: true, subtree: true, characterData: true });
}
setTimeout(initTextareaReset, 500);
/* ββ 7. Info modal & dark-mode toggle (mobile footer) ββ */
function initFooterBtns() {
var infoBtn = document.getElementById('footer-info-btn');
var backdrop = document.getElementById('info-modal-backdrop');
if (!infoBtn || !backdrop) { setTimeout(initFooterBtns, 400); return; }
infoBtn.addEventListener('click', function () {
backdrop.classList.add('active');
document.documentElement.style.overflow = 'hidden';
});
function closeInfoModal() {
backdrop.classList.remove('active');
document.documentElement.style.overflow = '';
}
backdrop.addEventListener('click', function (e) {
if (e.target === backdrop) closeInfoModal();
});
document.addEventListener('keydown', function (e) {
if (e.key !== 'Escape') return;
if (imgLightbox && imgLightbox.classList.contains('active')) { imgLightbox.classList.remove('active'); return; }
if (backdrop.classList.contains('active')) closeInfoModal();
else if (overlay && overlay.classList.contains('active')) closeMapOverlay();
});
}
setTimeout(initFooterBtns, 700);
function loadMapIntoOverlay() {
var mapCol = document.getElementById('map-col');
var srcIframe = mapCol && mapCol.querySelector('iframe');
if (!srcIframe) return;
var content = document.getElementById('map-overlay-content');
if (!content) return;
content.innerHTML = '';
var iframe = document.createElement('iframe');
var srcdoc = srcIframe.srcdoc;
if (srcdoc) {
iframe.srcdoc = srcdoc;
} else if (srcIframe.src) {
iframe.src = srcIframe.src;
}
var sandbox = srcIframe.getAttribute('sandbox');
if (sandbox) iframe.setAttribute('sandbox', sandbox);
iframe.style.cssText = 'width:100%;height:100%;border:none;display:block;';
content.appendChild(iframe);
}
function openMapOverlay() {
if (!overlay) return;
loadMapIntoOverlay();
overlay.classList.add('active');
document.documentElement.style.overflow = 'hidden';
}
function closeMapOverlay() {
if (!overlay) return;
overlay.classList.remove('active');
document.documentElement.style.overflow = '';
setTimeout(function () {
if (!overlay.classList.contains('active')) {
var content = document.getElementById('map-overlay-content');
if (content) content.innerHTML = '';
}
}, 380);
}
})();
|