2025-11-24 14:01:48 +01:00
|
|
|
<script setup>
|
|
|
|
|
import PagedJsWrapper from './components/PagedJsWrapper.vue';
|
2025-11-24 16:51:55 +01:00
|
|
|
import EditorPanel from './components/EditorPanel.vue';
|
|
|
|
|
import StylesheetViewer from './components/StylesheetViewer.vue';
|
|
|
|
|
import ElementPopup from './components/ElementPopup.vue';
|
|
|
|
|
import { onMounted, ref, watch } from 'vue';
|
2025-11-24 14:01:48 +01:00
|
|
|
|
2025-11-24 16:51:55 +01:00
|
|
|
// Main state
|
|
|
|
|
const previewFrame = ref(null);
|
|
|
|
|
const stylesheetContent = ref('');
|
|
|
|
|
const aboutFontSize = ref(2);
|
|
|
|
|
const aboutFontSizeUnit = ref('rem');
|
2025-11-24 14:01:48 +01:00
|
|
|
|
2025-11-24 16:51:55 +01:00
|
|
|
// Popup state
|
|
|
|
|
const popupVisible = ref(false);
|
|
|
|
|
const popupPosition = ref({ x: 0, y: 0 });
|
|
|
|
|
const popupSelector = ref('');
|
|
|
|
|
const popupElementCss = ref('');
|
|
|
|
|
const popupFontSize = ref(null);
|
|
|
|
|
const popupFontSizeUnit = ref('rem');
|
|
|
|
|
|
|
|
|
|
// PagedJS print rules
|
|
|
|
|
const printStyles = `
|
|
|
|
|
h2 { break-before: page; }
|
|
|
|
|
|
|
|
|
|
@page {
|
|
|
|
|
size: A4;
|
|
|
|
|
margin: 20mm 15mm 26mm 15mm;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@page {
|
|
|
|
|
@bottom-center { content: string(title); }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.chapter > h2 { string-set: title content(text); }
|
|
|
|
|
`;
|
|
|
|
|
|
|
|
|
|
// CSS parsing utilities
|
|
|
|
|
const extractCssBlock = (css, selector) => {
|
|
|
|
|
const escaped = selector.replace(/[.*+?^${}()|[\]\\]/g, '\\$&');
|
|
|
|
|
const match = css.match(new RegExp(`${escaped}\\s*{[^}]*}`, 'gi'));
|
|
|
|
|
return match ? match[0] : '';
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const extractCssValue = (css, selector, property) => {
|
|
|
|
|
const regex = new RegExp(`${selector}\\s*{[^}]*${property}:\\s*([\\d.]+)(px|rem|em)`, 'i');
|
|
|
|
|
const match = css.match(regex);
|
|
|
|
|
return match ? { value: parseFloat(match[1]), unit: match[2] } : null;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const updateCssValue = (selector, property, value, unit) => {
|
|
|
|
|
const regex = new RegExp(`(${selector}\\s*{[^}]*${property}:\\s*)[\\d.]+(px|rem|em)`, 'gi');
|
|
|
|
|
stylesheetContent.value = stylesheetContent.value.replace(regex, `$1${value}${unit}`);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// Iframe style injection
|
|
|
|
|
const injectStylesToIframe = () => {
|
|
|
|
|
const iframe = previewFrame.value;
|
|
|
|
|
if (!iframe?.contentDocument) return;
|
2025-11-24 14:01:48 +01:00
|
|
|
|
2025-11-24 16:51:55 +01:00
|
|
|
let styleElement = iframe.contentDocument.getElementById('dynamic-styles');
|
|
|
|
|
if (!styleElement) {
|
|
|
|
|
styleElement = iframe.contentDocument.createElement('style');
|
|
|
|
|
styleElement.id = 'dynamic-styles';
|
|
|
|
|
iframe.contentDocument.head.appendChild(styleElement);
|
2025-11-24 14:01:48 +01:00
|
|
|
}
|
2025-11-24 16:51:55 +01:00
|
|
|
styleElement.textContent = stylesheetContent.value;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// Popup handlers
|
|
|
|
|
const handleIframeClick = (event) => {
|
|
|
|
|
const element = event.target;
|
2025-11-24 14:01:48 +01:00
|
|
|
|
2025-11-24 16:51:55 +01:00
|
|
|
if (element.tagName === 'BODY' || element.tagName === 'HTML') {
|
|
|
|
|
popupVisible.value = false;
|
|
|
|
|
return;
|
2025-11-24 14:01:48 +01:00
|
|
|
}
|
2025-11-24 16:51:55 +01:00
|
|
|
|
|
|
|
|
const selector = element.id
|
|
|
|
|
? `#${element.id}`
|
|
|
|
|
: `.${element.className.split(' ')[0]}`;
|
|
|
|
|
|
|
|
|
|
popupSelector.value = selector;
|
|
|
|
|
popupElementCss.value = extractCssBlock(stylesheetContent.value, selector);
|
|
|
|
|
|
|
|
|
|
const fontSizeData = extractCssValue(stylesheetContent.value, selector, 'font-size');
|
|
|
|
|
popupFontSize.value = fontSizeData?.value ?? null;
|
|
|
|
|
popupFontSizeUnit.value = fontSizeData?.unit ?? 'rem';
|
|
|
|
|
|
|
|
|
|
const rect = element.getBoundingClientRect();
|
|
|
|
|
const iframeRect = previewFrame.value.getBoundingClientRect();
|
|
|
|
|
popupPosition.value = {
|
|
|
|
|
x: iframeRect.left + rect.left,
|
|
|
|
|
y: iframeRect.top + rect.bottom + 5
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
popupVisible.value = true;
|
2025-11-24 14:01:48 +01:00
|
|
|
};
|
|
|
|
|
|
2025-11-24 16:51:55 +01:00
|
|
|
const closePopup = () => {
|
|
|
|
|
popupVisible.value = false;
|
2025-11-24 14:01:48 +01:00
|
|
|
};
|
|
|
|
|
|
2025-11-24 16:51:55 +01:00
|
|
|
const updatePopupFontSize = (newValue) => {
|
|
|
|
|
updateCssValue(popupSelector.value, 'font-size', newValue, popupFontSizeUnit.value);
|
|
|
|
|
popupFontSize.value = newValue;
|
|
|
|
|
popupElementCss.value = extractCssBlock(stylesheetContent.value, popupSelector.value);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// Watchers
|
|
|
|
|
watch(aboutFontSize, (newVal) => {
|
|
|
|
|
updateCssValue('.about', 'font-size', newVal, aboutFontSizeUnit.value);
|
2025-11-24 14:01:48 +01:00
|
|
|
});
|
2025-11-24 16:51:55 +01:00
|
|
|
|
|
|
|
|
watch(stylesheetContent, injectStylesToIframe);
|
|
|
|
|
|
|
|
|
|
// Initial render
|
|
|
|
|
const renderPreview = async () => {
|
|
|
|
|
const iframe = previewFrame.value;
|
|
|
|
|
if (!iframe) return;
|
|
|
|
|
|
|
|
|
|
const response = await fetch('/assets/css/stylesheet.css');
|
|
|
|
|
stylesheetContent.value = await response.text();
|
|
|
|
|
|
|
|
|
|
const initialFontSize = extractCssValue(stylesheetContent.value, '.about', 'font-size');
|
|
|
|
|
if (initialFontSize) {
|
|
|
|
|
aboutFontSize.value = initialFontSize.value;
|
|
|
|
|
aboutFontSizeUnit.value = initialFontSize.unit;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const contentSource = document.getElementById('content-source');
|
|
|
|
|
const iframeDoc = iframe.contentDocument;
|
|
|
|
|
|
|
|
|
|
iframeDoc.open();
|
|
|
|
|
iframeDoc.write(`
|
|
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html>
|
|
|
|
|
<head>
|
|
|
|
|
<link rel="stylesheet" href="/assets/css/pagedjs-interface.css">
|
|
|
|
|
<style id="dynamic-styles">${stylesheetContent.value}</style>
|
|
|
|
|
<style>${printStyles}</style>
|
|
|
|
|
<script src="https://unpkg.com/pagedjs/dist/paged.polyfill.js"><\/script>
|
|
|
|
|
</head>
|
|
|
|
|
<body>${contentSource.innerHTML}</body>
|
|
|
|
|
</html>
|
|
|
|
|
`);
|
|
|
|
|
iframeDoc.close();
|
|
|
|
|
|
|
|
|
|
iframe.onload = () => {
|
|
|
|
|
iframe.contentDocument.addEventListener('click', handleIframeClick);
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
onMounted(renderPreview);
|
2025-11-24 14:01:48 +01:00
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<template>
|
2025-11-24 16:51:55 +01:00
|
|
|
<div id="content-source" style="display: none">
|
2025-11-24 14:01:48 +01:00
|
|
|
<PagedJsWrapper />
|
|
|
|
|
</div>
|
|
|
|
|
|
2025-11-24 16:51:55 +01:00
|
|
|
<EditorPanel
|
|
|
|
|
:fontSize="aboutFontSize"
|
|
|
|
|
:unit="aboutFontSizeUnit"
|
|
|
|
|
@update:fontSize="aboutFontSize = $event"
|
|
|
|
|
/>
|
2025-11-24 14:01:48 +01:00
|
|
|
|
2025-11-24 16:51:55 +01:00
|
|
|
<iframe ref="previewFrame" id="preview-frame"></iframe>
|
2025-11-24 14:01:48 +01:00
|
|
|
|
2025-11-24 16:51:55 +01:00
|
|
|
<StylesheetViewer :stylesheet="stylesheetContent" />
|
2025-11-24 14:01:48 +01:00
|
|
|
|
2025-11-24 16:51:55 +01:00
|
|
|
<ElementPopup
|
|
|
|
|
:visible="popupVisible"
|
|
|
|
|
:position="popupPosition"
|
|
|
|
|
:selector="popupSelector"
|
|
|
|
|
:elementCss="popupElementCss"
|
|
|
|
|
:currentFontSize="popupFontSize"
|
|
|
|
|
:fontSizeUnit="popupFontSizeUnit"
|
|
|
|
|
@close="closePopup"
|
|
|
|
|
@update:fontSize="updatePopupFontSize"
|
|
|
|
|
/>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<style>
|
|
|
|
|
#preview-frame {
|
|
|
|
|
position: fixed;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 250px;
|
|
|
|
|
width: calc(100% - 600px);
|
|
|
|
|
height: 100vh;
|
|
|
|
|
border: none;
|
2025-11-24 14:01:48 +01:00
|
|
|
}
|
|
|
|
|
</style>
|