summaryrefslogtreecommitdiff
path: root/src/scripts/main.js
blob: 24fc769062558dc6f7068807eaa70e833b3cab37 (plain)
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

const assets = [
    "/",
    "/sura.html",
    "/src/index.html",
    "/src/sura.html",
    "/src/attribution.html",
    "/src/styles/style.css",
    "/src/styles/css/fontawesome.css",
    "/src/styles/css/brands.css",
    "/src/styles/css/solid.css",
    "/src/styles/webfonts/fa-brands-400.ttf",
    "/src/styles/webfonts/fa-brands-400.woff2",
    "/src/styles/webfonts/fa-solid-900.ttf",
    "/src/styles/webfonts/fa-solid-900.woff2",
    "/src/styles/css/solid.css",
    "/src/data/en.sahih.xml",
    "/src/data/id.indonesian.xml",
    "/src/data/quran-data.xml",
    "/src/data/quran-uthmani.xml",
    "/src/scripts/main.js",
    "/src/scripts/quran.js",
    "/src/scripts/sura-list.js",
];

function urlExists(url) {
    console.log(url);
    var http = new XMLHttpRequest();
    http.open('HEAD', url, false);
    http.send();
    console.log(http.status)
    return http.status != 404;
}
if ("serviceWorker" in navigator) {
    window.addEventListener("load", function () {

        for (var i = 0; i < assets.length; i++) {
            urlExists(assets[i]);
        }

        navigator.serviceWorker
            .register("scripts/service-worker.js")
            .then(res => console.log("service worker registered"))
            .catch(err => console.log("service worker not registered", err))
    })
}