39 lines
1.6 KiB
JavaScript
39 lines
1.6 KiB
JavaScript
// public/js/editor-bridge.js
|
|
(function () {
|
|
// Bridge nur im Preview-Modus aktivieren
|
|
const urlParams = new URLSearchParams(window.location.search);
|
|
if (urlParams.get('preview') !== 'draft') return;
|
|
|
|
console.log('[N&D Editor Bridge] Active on preview canvas');
|
|
|
|
// Optischer Hinweis-Banner im Bearbeitungsmodus
|
|
document.addEventListener('DOMContentLoaded', () => {
|
|
const banner = document.createElement('div');
|
|
banner.id = 'editor-preview-banner';
|
|
banner.style.cssText = 'position: fixed; top: 0; left: 0; right: 0; z-index: 99999; background: #d97706; color: #0f172a; text-align: center; padding: 6px 12px; font-size: 12px; font-weight: 700; font-family: monospace; letter-spacing: 0.5px; box-shadow: 0 2px 10px rgba(0,0,0,0.3); pointer-events: none; opacity: 0.95;';
|
|
banner.innerHTML = '🛠️ BEARBEITUNGSMODUS (VORSCHAU / ENTWURF) — Änderungen sind noch nicht live!';
|
|
document.body.appendChild(banner);
|
|
document.body.style.paddingTop = (document.body.style.paddingTop ? parseInt(document.body.style.paddingTop) + 30 : 30) + 'px';
|
|
});
|
|
|
|
window.addEventListener('message', (event) => {
|
|
const { type, payload } = event.data || {};
|
|
|
|
if (type === 'THEME_UPDATE') {
|
|
// Injiziert CSS-Variablen live in den DOM (<head>)
|
|
const root = document.documentElement;
|
|
if (payload.colors) {
|
|
Object.entries(payload.colors).forEach(([key, val]) => {
|
|
root.style.setProperty(`--${key}`, val);
|
|
});
|
|
}
|
|
}
|
|
|
|
if (type === 'RELOAD_CANVAS') {
|
|
// Sanfter Reload des Iframes bei Strukturänderungen
|
|
window.location.reload();
|
|
}
|
|
});
|
|
})();
|
|
|