Files
pve-notebuddy/app.js

919 lines
27 KiB
JavaScript

const MAX_OUTPUT_LENGTH = 8192;
const form = document.getElementById("noteForm");
const outputEl = document.getElementById("output");
const previewCard = document.getElementById("previewCard");
const copyBtn = document.getElementById("copyBtn");
const charCountEl = document.getElementById("charCount");
const charWarningEl = document.getElementById("charWarning");
const previewShell = document.getElementById("previewShell");
const themeDarkBtn = document.getElementById("themeDarkBtn");
const themeLightBtn = document.getElementById("themeLightBtn");
const clearBtn = document.getElementById("clearBtn");
const importBtn = document.getElementById("importBtn");
const exportBtn = document.getElementById("exportBtn");
const importFileEl = document.getElementById("importFile");
const iconModeEl = document.getElementById("iconMode");
const iconUrlWrap = document.getElementById("iconUrlWrap");
const iconUploadWrap = document.getElementById("iconUploadWrap");
const iconEmbedWrap = document.getElementById("iconEmbedWrap");
const iconSelfhstWrap = document.getElementById("iconSelfhstWrap");
const iconUrlEl = document.getElementById("iconUrl");
const iconEmbedSvgEl = document.getElementById("iconEmbedSvg");
const iconUploadEl = document.getElementById("iconUpload");
const iconScaleEl = document.getElementById("iconScale");
const iconScaleValueEl = document.getElementById("iconScaleValue");
const iconStatusEl = document.getElementById("iconStatus");
const configLocationsEl = document.getElementById("configLocations");
const addConfigBtn = document.getElementById("addConfigBtn");
let activeTheme = "dark";
let iconResolvedSrc = "";
let uploadSvgText = "";
const externalSvgCache = new Map();
let prepareToken = 0;
const rowConfigs = [
{ prefix: "title", defaultAlign: "center", defaultTag: "h2", bold: false, italic: false, strong: false, code: false },
{ prefix: "fqdn", defaultAlign: "center", defaultTag: "h3", bold: false, italic: false, strong: false, code: false },
{ prefix: "network", defaultAlign: "center", defaultTag: "h3", bold: false, italic: false, strong: false, code: false },
{ prefix: "config", defaultAlign: "center", defaultTag: "h3", bold: false, italic: false, strong: false, code: true },
{ prefix: "custom", defaultAlign: "left", defaultTag: "none", bold: false, italic: false, strong: false, code: false },
];
const ROW_KEYS = ["icon", "title", "fqdn", "network", "config", "custom"];
function getEl(id) {
return document.getElementById(id);
}
function getSelectedRadioValue(name, fallback = "") {
const checked = form.querySelector(`input[name="${name}"]:checked`);
return checked ? checked.value : fallback;
}
function setSelectedRadioValue(name, value) {
const radios = form.querySelectorAll(`input[name="${name}"]`);
let didSet = false;
for (const radio of radios) {
const shouldCheck = radio.value === value;
radio.checked = shouldCheck;
if (shouldCheck) {
didSet = true;
}
}
if (!didSet && radios.length > 0) {
radios[0].checked = true;
}
}
function escapeHtml(value) {
return String(value)
.replaceAll("&", "&")
.replaceAll("<", "&lt;")
.replaceAll(">", "&gt;")
.replaceAll('"', "&quot;");
}
function isSvgUrl(url) {
return /\.svg($|[?#])/i.test(url);
}
function isRasterUrl(url) {
return /\.(png|jpe?g|webp)($|[?#])/i.test(url);
}
function readTextFile(file) {
return new Promise((resolve, reject) => {
const reader = new FileReader();
reader.onload = () => resolve(String(reader.result || ""));
reader.onerror = () => reject(new Error("Could not read file."));
reader.readAsText(file);
});
}
function encodeSvgDataUrl(svgText) {
return `data:image/svg+xml;charset=utf-8,${encodeURIComponent(svgText)}`;
}
function parsePositiveFloat(value) {
const numeric = Number.parseFloat(String(value || "").replace(/[^0-9.]/g, ""));
return Number.isFinite(numeric) && numeric > 0 ? numeric : null;
}
function getSvgDimensions(svgEl) {
const viewBox = svgEl.getAttribute("viewBox");
if (viewBox) {
const parts = viewBox
.trim()
.split(/[\s,]+/)
.map((item) => Number.parseFloat(item));
if (parts.length === 4 && Number.isFinite(parts[2]) && Number.isFinite(parts[3]) && parts[2] > 0 && parts[3] > 0) {
return { width: parts[2], height: parts[3] };
}
}
const width = parsePositiveFloat(svgEl.getAttribute("width"));
const height = parsePositiveFloat(svgEl.getAttribute("height"));
if (width && height) {
return { width, height };
}
return { width: 1, height: 1 };
}
function resizeSvg(svgText, targetWidth) {
const parser = new DOMParser();
const doc = parser.parseFromString(svgText, "image/svg+xml");
const svg = doc.documentElement;
if (!svg || svg.nodeName.toLowerCase() !== "svg") {
throw new Error("Not a valid SVG.");
}
const { width, height } = getSvgDimensions(svg);
const ratio = height / width;
const normalizedWidth = Number.parseInt(String(targetWidth), 10) || 110;
const normalizedHeight = Math.max(1, Math.round(normalizedWidth * ratio));
svg.setAttribute("width", String(normalizedWidth));
svg.setAttribute("height", String(normalizedHeight));
return new XMLSerializer().serializeToString(doc);
}
async function getExternalSvgText(url) {
if (externalSvgCache.has(url)) {
return externalSvgCache.get(url);
}
const res = await fetch(url);
if (!res.ok) {
throw new Error(`HTTP ${res.status}`);
}
const text = await res.text();
externalSvgCache.set(url, text);
return text;
}
function setIconStatus(text, isError = false) {
iconStatusEl.textContent = text;
iconStatusEl.classList.toggle("error", isError);
}
function getIconAlign() {
return getSelectedRadioValue("iconAlign", "center");
}
function styleToolbarHtml(prefix, defaults) {
const headingOptions = ["h1", "h2", "h3", "h4", "h5"];
const alignOptions = ["left", "center", "right"];
const align = alignOptions
.map((value) => {
const short = value === "left" ? "L" : value === "center" ? "C" : "R";
const checked = defaults.defaultAlign === value ? "checked" : "";
return `<label class="tool-chip" title="${value.toUpperCase()} alignment"><input type="radio" name="${prefix}Align" value="${value}" ${checked} /><span>${short}</span></label>`;
})
.join("");
const heading = headingOptions
.map((tag) => {
const label = tag.toUpperCase();
const title = `${tag.toUpperCase()} heading`;
const checked = defaults.defaultTag === tag ? "checked" : "";
return `<label class="tool-chip" title="${title}"><input type="checkbox" name="${prefix}Heading" value="${tag}" ${checked} /><span>${label}</span></label>`;
})
.join("");
const toggles = [
{ key: "Italic", label: "I", title: "Italic", checked: defaults.italic },
{ key: "Bold", label: "B", title: "Bold", checked: defaults.bold },
{ key: "Strong", label: "S", title: "Strong", checked: defaults.strong },
{ key: "Code", label: "C", title: "Code", checked: defaults.code },
]
.map((item) => {
const checked = item.checked ? "checked" : "";
return `<label class="tool-chip" title="${item.title}"><input id="${prefix}${item.key}" type="checkbox" ${checked} /><span>${item.label}</span></label>`;
})
.join("");
return `
<div class="tool-set">
<span class="tool-title">Align</span>
<div class="tool-group">${align}</div>
</div>
<div class="tool-set">
<span class="tool-title">Text Style</span>
<div class="tool-group">${heading}${toggles}</div>
</div>
`;
}
function mountStyleToolbars() {
for (const config of rowConfigs) {
const holder = document.querySelector(`.style-tools[data-prefix="${config.prefix}"]`);
if (!holder) {
continue;
}
holder.innerHTML = styleToolbarHtml(config.prefix, config);
}
}
function bindStyleConflicts() {
for (const { prefix } of rowConfigs) {
const bold = getEl(`${prefix}Bold`);
const strong = getEl(`${prefix}Strong`);
const headingToggles = form.querySelectorAll(`input[name="${prefix}Heading"]`);
if (!bold || !strong) {
continue;
}
for (const headingToggle of headingToggles) {
headingToggle.addEventListener("change", () => {
if (headingToggle.checked) {
for (const other of headingToggles) {
if (other !== headingToggle) {
other.checked = false;
}
}
bold.checked = false;
strong.checked = false;
}
renderOutput();
});
}
bold.addEventListener("change", () => {
if (bold.checked && strong.checked) {
strong.checked = false;
}
if (bold.checked) {
for (const headingToggle of headingToggles) {
headingToggle.checked = false;
}
}
renderOutput();
});
strong.addEventListener("change", () => {
if (strong.checked && bold.checked) {
bold.checked = false;
}
if (strong.checked) {
for (const headingToggle of headingToggles) {
headingToggle.checked = false;
}
}
renderOutput();
});
}
}
function getFormat(prefix) {
const checkedAlign = form.querySelector(`input[name="${prefix}Align"]:checked`);
const checkedHeading = form.querySelector(`input[name="${prefix}Heading"]:checked`);
return {
align: checkedAlign ? checkedAlign.value : "center",
tag: checkedHeading ? checkedHeading.value : "none",
bold: getEl(`${prefix}Bold`).checked,
italic: getEl(`${prefix}Italic`).checked,
strong: getEl(`${prefix}Strong`).checked,
code: getEl(`${prefix}Code`).checked,
};
}
function textToHtml(value, keepLineBreaks = false) {
const escaped = escapeHtml(value);
if (!keepLineBreaks) {
return escaped;
}
return escaped.replaceAll("\n", "<br />");
}
function rawTextToHtml(value, keepLineBreaks = false) {
const raw = String(value);
if (!keepLineBreaks) {
return raw;
}
return raw.replaceAll("\n", "<br />");
}
function wrapTextForHeading(textHtml, format) {
let value = textHtml;
if (format.code) {
value = `<code>${value}</code>`;
}
if (format.italic) {
value = `<i>${value}</i>`;
}
if (format.strong) {
value = `<strong>${value}</strong>`;
} else if (format.bold) {
value = `<b>${value}</b>`;
}
return value;
}
function wrapTextForPlain(textHtml, format) {
let value = textHtml;
if (format.strong) {
value = `<strong>${value}</strong>`;
} else if (format.bold) {
value = `<b>${value}</b>`;
}
if (format.italic) {
value = `<i>${value}</i>`;
}
if (format.code) {
value = `<code>${value}</code>`;
}
return value;
}
function buildRowDiv({ align, contentHtml }) {
const safeAlign = ["left", "center", "right"].includes(align) ? align : "center";
return ` <div align="${safeAlign}">${contentHtml}</div>`;
}
function buildTextRow({ align, icon, textHtml, format }) {
const iconHtml = icon ? `${escapeHtml(icon)} ` : "";
if (format.tag !== "none") {
const textOnly = wrapTextForHeading(textHtml, format);
return buildRowDiv({ align, contentHtml: `<${format.tag}>${iconHtml}${textOnly}</${format.tag}>` });
}
const textOnly = wrapTextForPlain(textHtml, format);
return buildRowDiv({ align, contentHtml: `${iconHtml}${textOnly}` });
}
function getOrderedRowKeys() {
return Array.from(form.querySelectorAll("fieldset[data-row-key]"))
.map((fieldset) => fieldset.getAttribute("data-row-key"))
.filter(Boolean);
}
function reorderFieldsets(rowOrder) {
const map = new Map(
Array.from(form.querySelectorAll("fieldset[data-row-key]")).map((fieldset) => [fieldset.getAttribute("data-row-key"), fieldset])
);
for (const key of rowOrder) {
const fieldset = map.get(key);
if (!fieldset) {
continue;
}
form.appendChild(fieldset);
}
}
function moveRow(rowKey, direction) {
const fieldsets = Array.from(form.querySelectorAll("fieldset[data-row-key]"));
const index = fieldsets.findIndex((fieldset) => fieldset.getAttribute("data-row-key") === rowKey);
if (index < 0) {
return;
}
const targetIndex = direction === "up" ? index - 1 : index + 1;
if (targetIndex < 0 || targetIndex >= fieldsets.length) {
return;
}
const current = fieldsets[index];
const target = fieldsets[targetIndex];
if (direction === "up") {
form.insertBefore(current, target);
} else {
form.insertBefore(target, current);
}
}
function getConfigLocationValues() {
return Array.from(configLocationsEl.querySelectorAll("input[data-config-location]"))
.map((input) => input.value.trim())
.filter(Boolean);
}
function buildNoteHtml() {
const byKey = {};
const lines = ["<div>"];
if (iconResolvedSrc) {
byKey.icon = [buildRowDiv({ align: getIconAlign(), contentHtml: `<img src="${escapeHtml(iconResolvedSrc)}" alt="App icon" />` })];
}
const titleText = getEl("titleText").value.trim();
if (titleText) {
const format = getFormat("title");
byKey.title = [buildTextRow({ align: format.align, icon: getEl("titleEmoji").value, textHtml: textToHtml(titleText), format })];
}
const fqdnLabel = getEl("fqdnLabel").value.trim();
if (fqdnLabel) {
const format = getFormat("fqdn");
const fqdnUrl = getEl("fqdnUrl").value.trim();
const label = textToHtml(fqdnLabel);
const linked = fqdnUrl
? `<a href="${escapeHtml(fqdnUrl)}" target="_blank" rel="noopener noreferrer">${label}</a>`
: label;
byKey.fqdn = [buildTextRow({ align: format.align, icon: getEl("fqdnEmoji").value, textHtml: linked, format })];
}
const networkText = getEl("networkText").value.trim();
if (networkText) {
const format = getFormat("network");
byKey.network = [buildTextRow({ align: format.align, icon: getEl("networkEmoji").value, textHtml: textToHtml(networkText), format })];
}
const configLocations = getConfigLocationValues();
if (configLocations.length > 0) {
const format = getFormat("config");
byKey.config = configLocations.map((location) =>
buildTextRow({ align: format.align, icon: getEl("configEmoji").value, textHtml: textToHtml(location), format })
);
}
const customText = getEl("customText").value.trim();
if (customText) {
const format = getFormat("custom");
byKey.custom = [buildTextRow({ align: format.align, icon: "", textHtml: rawTextToHtml(customText, true), format })];
}
for (const key of getOrderedRowKeys()) {
const section = byKey[key];
if (!section) {
continue;
}
lines.push(...section);
}
lines.push("</div>");
return lines.join("\n");
}
function updateLengthState(noteHtml) {
const len = noteHtml.length;
charCountEl.textContent = `${len} / ${MAX_OUTPUT_LENGTH}`;
if (len > MAX_OUTPUT_LENGTH) {
charWarningEl.textContent = `Too long by ${len - MAX_OUTPUT_LENGTH} characters.`;
copyBtn.disabled = true;
} else {
charWarningEl.textContent = "";
copyBtn.disabled = len === 0;
}
}
function clearTextFields() {
iconUrlEl.value = "";
getEl("titleText").value = "";
getEl("fqdnLabel").value = "";
getEl("fqdnUrl").value = "";
getEl("networkText").value = "";
getEl("customText").value = "";
const configInputs = configLocationsEl.querySelectorAll('input[data-config-location="1"]');
for (const input of configInputs) {
input.value = "";
}
prepareIcon();
}
function collectRowState(prefix) {
const emojiEl = getEl(`${prefix}Emoji`);
return {
emoji: emojiEl ? emojiEl.value : "",
align: getSelectedRadioValue(`${prefix}Align`, "center"),
heading: getSelectedRadioValue(`${prefix}Heading`, ""),
bold: Boolean(getEl(`${prefix}Bold`)?.checked),
italic: Boolean(getEl(`${prefix}Italic`)?.checked),
strong: Boolean(getEl(`${prefix}Strong`)?.checked),
code: Boolean(getEl(`${prefix}Code`)?.checked),
};
}
function collectSettings() {
const rows = {};
for (const { prefix } of rowConfigs) {
rows[prefix] = collectRowState(prefix);
}
return {
version: 1,
rowOrder: getOrderedRowKeys(),
theme: activeTheme,
icon: {
align: getSelectedRadioValue("iconAlign", "center"),
mode: iconModeEl.value,
url: iconUrlEl.value,
embedSvg: iconEmbedSvgEl.checked,
scale: iconScaleEl.value,
uploadSvgText,
},
fields: {
titleText: getEl("titleText").value,
fqdnLabel: getEl("fqdnLabel").value,
fqdnUrl: getEl("fqdnUrl").value,
networkText: getEl("networkText").value,
configLocations: getConfigLocationValues(),
customText: getEl("customText").value,
},
rows,
};
}
function applyRowState(prefix, rowState = {}) {
const emojiEl = getEl(`${prefix}Emoji`);
if (emojiEl && typeof rowState.emoji === "string") {
emojiEl.value = rowState.emoji;
}
if (typeof rowState.align === "string") {
setSelectedRadioValue(`${prefix}Align`, rowState.align);
}
const headingValue = typeof rowState.heading === "string" ? rowState.heading : "";
const headingToggles = form.querySelectorAll(`input[name="${prefix}Heading"]`);
for (const toggle of headingToggles) {
toggle.checked = headingValue ? toggle.value === headingValue : false;
}
const bold = getEl(`${prefix}Bold`);
const italic = getEl(`${prefix}Italic`);
const strong = getEl(`${prefix}Strong`);
const code = getEl(`${prefix}Code`);
if (bold) bold.checked = Boolean(rowState.bold);
if (italic) italic.checked = Boolean(rowState.italic);
if (strong) strong.checked = Boolean(rowState.strong);
if (code) code.checked = Boolean(rowState.code);
}
async function applySettings(settings) {
if (!settings || typeof settings !== "object") {
throw new Error("Invalid settings format.");
}
const requestedOrder = Array.isArray(settings.rowOrder) ? settings.rowOrder.filter((k) => ROW_KEYS.includes(k)) : [];
const ordered = requestedOrder.length > 0 ? requestedOrder : ROW_KEYS;
reorderFieldsets(ordered);
if (settings.theme === "light" || settings.theme === "dark") {
setTheme(settings.theme);
}
if (settings.icon && typeof settings.icon === "object") {
if (typeof settings.icon.align === "string") {
setSelectedRadioValue("iconAlign", settings.icon.align);
}
if (typeof settings.icon.mode === "string") {
iconModeEl.value = settings.icon.mode;
}
if (typeof settings.icon.url === "string") {
iconUrlEl.value = settings.icon.url;
}
if (typeof settings.icon.embedSvg === "boolean") {
iconEmbedSvgEl.checked = settings.icon.embedSvg;
}
if (typeof settings.icon.scale === "string" || typeof settings.icon.scale === "number") {
iconScaleEl.value = String(settings.icon.scale);
}
uploadSvgText = typeof settings.icon.uploadSvgText === "string" ? settings.icon.uploadSvgText : "";
}
if (settings.fields && typeof settings.fields === "object") {
if (typeof settings.fields.titleText === "string") getEl("titleText").value = settings.fields.titleText;
if (typeof settings.fields.fqdnLabel === "string") getEl("fqdnLabel").value = settings.fields.fqdnLabel;
if (typeof settings.fields.fqdnUrl === "string") getEl("fqdnUrl").value = settings.fields.fqdnUrl;
if (typeof settings.fields.networkText === "string") getEl("networkText").value = settings.fields.networkText;
if (typeof settings.fields.customText === "string") getEl("customText").value = settings.fields.customText;
if (Array.isArray(settings.fields.configLocations)) {
configLocationsEl.innerHTML = "";
const values = settings.fields.configLocations.length > 0 ? settings.fields.configLocations : [""];
for (const value of values) {
configLocationsEl.append(createConfigLocationInput(String(value)));
}
}
}
if (settings.rows && typeof settings.rows === "object") {
for (const { prefix } of rowConfigs) {
applyRowState(prefix, settings.rows[prefix] || {});
}
}
await prepareIcon();
}
function exportSettings() {
const payload = JSON.stringify(collectSettings(), null, 2);
const blob = new Blob([payload], { type: "application/json;charset=utf-8" });
const url = URL.createObjectURL(blob);
const a = document.createElement("a");
a.href = url;
a.download = "pve-notebuddy-settings.json";
a.click();
URL.revokeObjectURL(url);
}
async function importSettingsFromFile(event) {
const [file] = event.target.files || [];
if (!file) {
return;
}
try {
const text = await file.text();
const parsed = JSON.parse(text);
await applySettings(parsed);
} catch {
setIconStatus("Import failed: invalid JSON file.", true);
} finally {
importFileEl.value = "";
}
}
function renderOutput() {
iconScaleValueEl.textContent = `${iconScaleEl.value} px`;
const noteHtml = buildNoteHtml();
outputEl.value = noteHtml;
previewCard.innerHTML = noteHtml;
updateLengthState(noteHtml);
}
function iconCanUseScale() {
if (iconModeEl.value === "upload") {
return Boolean(uploadSvgText);
}
if (iconModeEl.value === "external") {
const url = iconUrlEl.value.trim();
return isSvgUrl(url) && iconEmbedSvgEl.checked;
}
return false;
}
function updateIconControls() {
const mode = iconModeEl.value;
iconUrlWrap.classList.toggle("hidden", mode !== "external");
iconSelfhstWrap.classList.toggle("hidden", mode !== "external");
iconEmbedWrap.classList.toggle("hidden", mode !== "external");
iconUploadWrap.classList.toggle("hidden", mode !== "upload");
const url = iconUrlEl.value.trim();
const rasterLink = mode === "external" && isRasterUrl(url);
if (rasterLink) {
iconEmbedSvgEl.checked = false;
iconEmbedSvgEl.disabled = true;
} else {
iconEmbedSvgEl.disabled = false;
}
iconScaleEl.disabled = !iconCanUseScale();
}
async function prepareIcon() {
const token = ++prepareToken;
updateIconControls();
const mode = iconModeEl.value;
if (mode === "none") {
iconResolvedSrc = "";
setIconStatus("");
renderOutput();
return;
}
if (mode === "upload") {
if (!uploadSvgText) {
iconResolvedSrc = "";
setIconStatus("Upload an SVG to embed the icon.");
renderOutput();
return;
}
try {
const resized = resizeSvg(uploadSvgText, iconScaleEl.value);
if (token !== prepareToken) {
return;
}
iconResolvedSrc = encodeSvgDataUrl(resized);
setIconStatus(`Uploaded SVG embedded at ${iconScaleEl.value}px width.`);
updateIconControls();
renderOutput();
return;
} catch {
iconResolvedSrc = "";
setIconStatus("Could not process uploaded SVG.", true);
renderOutput();
return;
}
}
const url = iconUrlEl.value.trim();
if (!url) {
iconResolvedSrc = "";
setIconStatus("Add an external image URL.");
renderOutput();
return;
}
if (isRasterUrl(url)) {
iconResolvedSrc = url;
setIconStatus("Raster image detected: link-only mode (no scaling). Use CDN-sized assets.");
updateIconControls();
renderOutput();
return;
}
if (!isSvgUrl(url)) {
iconResolvedSrc = url;
setIconStatus("Unknown extension: using direct link.");
updateIconControls();
renderOutput();
return;
}
if (!iconEmbedSvgEl.checked) {
iconResolvedSrc = url;
setIconStatus("SVG link mode enabled. Scaling is disabled until embedding is enabled.");
updateIconControls();
renderOutput();
return;
}
setIconStatus("Preparing embedded SVG...");
try {
const svgText = await getExternalSvgText(url);
const resized = resizeSvg(svgText, iconScaleEl.value);
if (token !== prepareToken) {
return;
}
iconResolvedSrc = encodeSvgDataUrl(resized);
setIconStatus(`External SVG embedded at ${iconScaleEl.value}px width.`);
updateIconControls();
renderOutput();
} catch {
if (token !== prepareToken) {
return;
}
iconResolvedSrc = url;
setIconStatus("Embedding failed. Falling back to direct SVG link.", true);
updateIconControls();
renderOutput();
}
}
function setTheme(theme) {
activeTheme = theme === "light" ? "light" : "dark";
previewShell.classList.toggle("dark", activeTheme === "dark");
previewShell.classList.toggle("light", activeTheme === "light");
themeDarkBtn.classList.toggle("active", activeTheme === "dark");
themeLightBtn.classList.toggle("active", activeTheme === "light");
}
function createConfigLocationInput(initialValue = "") {
const row = document.createElement("div");
row.className = "stack-row";
const input = document.createElement("input");
input.type = "text";
input.placeholder = "/ETC/APP/CONFIG.YML";
input.value = initialValue;
input.setAttribute("data-config-location", "1");
const remove = document.createElement("button");
remove.type = "button";
remove.className = "ghost";
remove.textContent = "Remove";
remove.addEventListener("click", () => {
row.remove();
renderOutput();
});
row.append(input, remove);
input.addEventListener("input", renderOutput);
return row;
}
async function onIconUploadChange(event) {
const [file] = event.target.files;
if (!file) {
uploadSvgText = "";
await prepareIcon();
return;
}
const byType = file.type === "image/svg+xml";
const byName = /\.svg$/i.test(file.name);
if (!byType && !byName) {
iconUploadEl.value = "";
uploadSvgText = "";
setIconStatus("Only SVG upload is allowed. Use a CDN link for PNG/JPG/WEBP.", true);
await prepareIcon();
return;
}
try {
uploadSvgText = await readTextFile(file);
await prepareIcon();
} catch {
uploadSvgText = "";
setIconStatus("Could not read uploaded SVG.", true);
await prepareIcon();
}
}
async function copyOutput() {
if (copyBtn.disabled) {
return;
}
try {
await navigator.clipboard.writeText(outputEl.value);
copyBtn.textContent = "Copied";
setTimeout(() => {
copyBtn.textContent = "Copy HTML";
}, 1200);
} catch {
copyBtn.textContent = "Clipboard blocked";
setTimeout(() => {
copyBtn.textContent = "Copy HTML";
}, 1400);
}
}
function bootstrap() {
mountStyleToolbars();
bindStyleConflicts();
configLocationsEl.append(createConfigLocationInput("/etc/termix"));
addConfigBtn.addEventListener("click", () => {
configLocationsEl.append(createConfigLocationInput(""));
renderOutput();
});
form.addEventListener("input", () => {
renderOutput();
});
form.addEventListener("click", (event) => {
const target = event.target;
if (!(target instanceof HTMLElement)) {
return;
}
const moveBtn = target.closest(".row-move");
if (moveBtn instanceof HTMLElement) {
const rowKey = moveBtn.getAttribute("data-row-key");
const direction = moveBtn.getAttribute("data-direction");
if (rowKey && (direction === "up" || direction === "down")) {
moveRow(rowKey, direction);
renderOutput();
}
return;
}
const clearBtn = target.closest(".icon-clear");
if (!clearBtn) {
return;
}
const inputId = clearBtn.getAttribute("data-target");
const input = inputId ? getEl(inputId) : null;
if (input) {
input.value = "";
renderOutput();
}
});
clearBtn.addEventListener("click", clearTextFields);
exportBtn.addEventListener("click", exportSettings);
importBtn.addEventListener("click", () => importFileEl.click());
importFileEl.addEventListener("change", importSettingsFromFile);
iconModeEl.addEventListener("change", prepareIcon);
iconUrlEl.addEventListener("input", prepareIcon);
iconEmbedSvgEl.addEventListener("change", prepareIcon);
iconScaleEl.addEventListener("input", prepareIcon);
iconUploadEl.addEventListener("change", onIconUploadChange);
themeDarkBtn.addEventListener("click", () => setTheme("dark"));
themeLightBtn.addEventListener("click", () => setTheme("light"));
copyBtn.addEventListener("click", copyOutput);
setTheme("dark");
prepareIcon();
}
bootstrap();