-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
144 lines (131 loc) · 4.76 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
class App {
//#region debug
_debug = true;
set debug(new_debug) { this._debug = !!new_debug };
get debug() { return this._debug };
//#endregion
//#region logs
_logs = new Map();
_log = this.getLogger('App');
get loggers() { return Object.fromEntries(this._logs) };
/** @param {string} prefix */
getLogger(prefix) {
/**
* @param {string} message - The message to be logged.
* @param {object} [data={}] - Optional data associated with the message.
*/
const log = (message, data = {}) => {
messages.push({ time: Date.now(), message, data });
if (this._debug) console.log(`${prefix}: ${message}`, data);
}
const messages = [];
this._logs.set(prefix, messages);
return log;
}
//#endregion
//#region setup
/** @param {Object<string, Function[]>} initializersGroups */
ready(initializersGroups) {
this._log('Setting up initializers...');
const fn = event => {
this._log('ready', event);
this.runInitializers(initializersGroups);
};
document.readyState === 'loading'
? document.addEventListener('DOMContentLoaded', fn)
: fn();
return this;
};
/** @param {Object<string, Function[]>} initializersGroups */
alpineReady(initializersGroups) {
this._log('Setting up alpine initializers...');
const fn = event => {
this._log('alpine ready', event);
this.runInitializers(initializersGroups);
};
document.addEventListener('alpine:init', fn);
return this;
}
/** @param {Object<string, Function[]>} initializersGroups */
runInitializers = (initializersGroups) => Object.entries(initializersGroups).forEach(([groupName, initializers]) => {
const log = this.getLogger('runInitializers');
log(`START GROUP INITIALIZING : ${groupName}`);
initializers.forEach(initializer => {
try {
log(`Initing: ${initializer.name}`);
initializer(this.getLogger(initializer.name));
log(`Inited: ${initializer.name}`);
} catch (error) {
log(`Error occurred while running initializer: ${initializer.name}`, error);
}
});
log(`END GROUP INITIALIZING: ${groupName}`);
});
//#endregion
// #region modules
loadScript(src) {
return new Promise((resolve, reject) => {
const script = document.createElement('script');
script.src = src;
script.onload = resolve;
script.onerror = reject;
document.body.appendChild(script);
});
}
loadStyles(url) {
return new Promise((resolve, reject) => {
const link = document.createElement('link');
link.rel = 'stylesheet';
link.href = url;
link.onload = resolve;
link.onerror = reject;
document.head.firstChild
? document.head.insertBefore(link, document.head.firstChild)
: document.head.appendChild(link);
});
}
_modules = {
jquery: {
js: ['https://code.jquery.com/jquery-3.7.1.min.js'],
css: [],
},
alpine: {
js: ['https://cdn.jsdelivr.net/npm/[email protected]/dist/cdn.min.js'],
css: [],
},
axios: {
js: ['https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js'],
css: [],
},
skeletonCss: {
js: [],
css: [
'https://cdn.jsdelivr.net/npm/[email protected]/normalize.min.css',
'https://cdnjs.cloudflare.com/ajax/libs/skeleton/2.0.4/skeleton.min.css',
],
},
highlight: {
js: ['https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/highlight.min.js'],
css: ['https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/styles/default.min.css'],
}
}
getModules = () => Object.keys(this._modules);
/** @param {Array<keyof typeof this._modules>} keys */
loadModules(keys) {
keys.forEach(key => {
const { js, css } = this._modules[key];
js.forEach(src => {
this.loadScript(src)
.then(script => this._log(`script loaded: ${src}`, script))
.catch(error => this._log(`script load error: ${src}`, error));
});
css.forEach(url => {
this.loadStyles(url)
.then(style => this._log(`style loaded: ${url}`, style))
.catch(error => this._log(`style load error: ${url}`, error));
});
});
return this;
}
// #endregion
}