-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathapp.js
96 lines (77 loc) · 3.05 KB
/
app.js
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
// Get DOM elements
const root = document.getElementById('lumina__root');
// import lumina app routes
import { mainRoutes, notFoundRoute } from './routes.js';
// Import Layout and Loader components
import Layout from './components/layout/Layout.js';
import Loader from './components/layout/Loader.js';
// Wait for DOMContentLoaded event before executing the script
document.addEventListener('DOMContentLoaded', () => {
// Initial load of the content based on the current URL path
navigateToPage(window.location.pathname);
// Function to navigate to a page
async function navigateToPage(path) {
// find route object for this path
const route = findRoute(path);
// loadCssFile for this path
loadCssFile(route.css);
// Import the module dynamically based on the route
await importModule(route.component);
}
// Function to find the route for a given path
function findRoute(path) {
// If there is a '#' in the path, ignore everything after it
const cleanPath = path.split('#')[0];
// Find the route by comparing the cleaned path
const matchedRoute = mainRoutes.find((route) => route.path === cleanPath);
// Check if the matched route exists, otherwise return the notFoundRoute
return matchedRoute || notFoundRoute;
}
// Function to load CSS file dynamically
function loadCssFile(cssFiles) {
// Remove all existing dynamically added CSS files
document
.querySelectorAll('link[rel="stylesheet"].dynamic-style')
.forEach((link) => link.remove());
if (Array.isArray(cssFiles) && cssFiles.length > 0) {
cssFiles.forEach((cssFile) => {
const cssPath = `./assets/css/pageStyles/${cssFile}.css`;
// Create and append new CSS file
const style = document.createElement('link');
style.className = 'dynamic-style'; // Use class instead of ID to support multiple styles
style.rel = 'stylesheet';
style.href = cssPath;
document.head.appendChild(style);
});
}
}
// Function to import module dynamically
async function importModule(moduleFile) {
// Show loader
const loaderContent = await Loader();
root.innerHTML = loaderContent;
// load the req page component
const module = await import(`./components/pages/${moduleFile}.js`);
// Dynamically call the function with the same name as the module file
const PageContent = await (module[moduleFile] || module.default)();
const layout = await Layout(PageContent);
// Set page content inside root container and remove loader
root.innerHTML = layout;
}
// Handle navigation changes for spa
document.addEventListener('click', (event) => {
if (
event.target.tagName === 'A' &&
event.target.getAttribute('href').startsWith('/')
) {
event.preventDefault();
const path = event.target.getAttribute('href');
navigateToPage(path);
history.pushState(null, null, path);
}
});
// Handle back and forward buttons for spa
window.addEventListener('popstate', () => {
navigateToPage(window.location.pathname);
});
});