-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.js
More file actions
51 lines (44 loc) · 1.28 KB
/
main.js
File metadata and controls
51 lines (44 loc) · 1.28 KB
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
import { replaceIcons } from "/icons.js"
window.onload = () => {
init();
}
function init() {
replaceIcons();
fillAppCloud();
}
const apps = [
{
"name": "Gradia",
"icon": "https://vorks-dev.github.io/gradia/img/app_icon.png",
"url": "https://vorks-dev.github.io/apps/gradia/"
},
{
"name": "Lysa",
"icon": "https://vorks-dev.github.io/lysa/img/app_icon.png",
"url": "https://vorks-dev.github.io/apps/lysa/"
},
{
"name": "DataManager.js",
"icon": "https://datamanager.js.org/logo.svg",
"url": "https://vorks-dev.github.io/apps/datamanager.js"
}
]
//----- App Cloud -----//
async function fillAppCloud() {
const appClouds = document.getElementsByClassName("appCloud");
const appDiv = document.createElement("div");
apps.forEach((app, i) => {
const anchor = document.createElement("a");
anchor.href = app.url;
anchor.target = "_blank";
anchor.ariaLabel = `More information on ${app.name}`;
const img = document.createElement("img");
img.src = app.icon;
img.title = app.name;
anchor.appendChild(img);
appDiv.appendChild(anchor);
});
for(const appCloud of appClouds) {
appCloud.appendChild(appDiv);
}
}