Files
edu/js/components.js
T
Sebastian Molenda c26165bfb7
Deploy to FTP / deploy (push) Successful in 6s
all local
2026-05-26 21:58:38 +02:00

15 lines
414 B
JavaScript

// Komponenty HTML loader
function loadComponent(path, replaceMap = {}) {
return fetch(path)
.then(r => r.text())
.then(html => {
Object.entries(replaceMap).forEach(([key, val]) => {
html = html.replaceAll(key, val);
});
return html;
});
}
// Przykład użycia:
// loadComponent('components/header.html', {'{TITLE}': 'Tytuł', '{SUBTITLE}': 'Podtytuł'}).then(html => ...)