aboutsummaryrefslogtreecommitdiff
path: root/views/script/loader_global.js
blob: 81b4dd77f5efab6edab8121f9f54b9b7eaa4f3b7 (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
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
const $ = require('jquery');

require('electron').ipcRenderer.on('ready', (e, a) => {
    document.getElementById("banner-decoration").style.display = "";

    setTimeout(() => {
        if (native) {
            setTimeout(() => {
                setTimeout(() => {
                    
                    $("#progress").fadeOut(500);
                    setTimeout(() => {
                        window.fetch("https://kartik.hopto.org/latest.php?v=" + require('@electron/remote').getCurrentWindow().update).then((data) => {
                            data.blob().then((a) => {
                                a.text().then((b) => {
                                    if (require('@electron/remote').getCurrentWindow().update === "git") {
                                        document.getElementById('updates').style.backgroundColor = "lightsalmon";
                                        document.getElementById('updates').innerText = lang.updates.git;
                                    } else {
                                        console.log(b);
                                        console.log(require('../package.json').version);
                                        if (b === require('../package.json').version) {
                                            document.getElementById('updates').style.backgroundColor = "lightgreen";
                                            document.getElementById('updates').innerText = lang.updates.ok;
                                        } else {
                                            require('@electron/remote').getCurrentWindow().webContents.send("notification", {title: lang.updates.warn[0], message: lang.updates.warn[1]});
                                            document.getElementById('updates').style.backgroundColor = "lightyellow";
                                            document.getElementById('updates').innerText = lang.updates.available;
                                        }
                                    }
                                    setTimeout(() => {
                                        $("#banner-outer").fadeOut(200);
                                        $("#intro-video").fadeIn(200);
                                        setTimeout(() => {
                                            introsfx = document.getElementById("intro-video");
                                            introsfx.play()
                                            introsfx.onended = () => {
                                                $("body").fadeOut(500);
                                                setTimeout(() => {
                                                    info("LoadWindow", "Switching control to MenuWindow");
                                                    location.href = "intro.html";
                                                }, 1000)
                                            }
                                        }, 200)
                                    }, 2000)
                                }).catch((e) => {
                                    console.warn(e);
                                    document.getElementById('updates').style.backgroundColor = "lightcoral";
                                    document.getElementById('updates').innerText = lang.updates.error;
                                    require('@electron/remote').getCurrentWindow().webContents.send("notification", {title: lang.polymer.updateError[0], message: lang.polymer.updateError[1]});
                                    setTimeout(() => {
                                        $("#banner-outer").fadeOut(200);
                                        $("#intro-video").fadeIn(200);
                                        setTimeout(() => {
                                            introsfx = document.getElementById("intro-video");
                                            introsfx.play()
                                            introsfx.onended = () => {
                                                $("body").fadeOut(500);
                                                setTimeout(() => {
                                                    info("LoadWindow", "Switching control to MenuWindow");
                                                    location.href = "intro.html";
                                                }, 1000)
                                            }
                                        }, 200)
                                    }, 2000)
                                });
                            }).catch((e) => {
                                console.warn(e);
                                document.getElementById('updates').style.backgroundColor = "lightcoral";
                                document.getElementById('updates').innerText = lang.updates.error;
                                require('@electron/remote').getCurrentWindow().webContents.send("notification", {title: lang.polymer.updateError[0], message: lang.polymer.updateError[1]});
                                setTimeout(() => {
                                    $("#banner-outer").fadeOut(200);
                                    $("#intro-video").fadeIn(200);
                                    setTimeout(() => {
                                        introsfx = document.getElementById("intro-video");
                                        introsfx.play()
                                        introsfx.onended = () => {
                                            $("body").fadeOut(500);
                                            setTimeout(() => {
                                                info("LoadWindow", "Switching control to MenuWindow");
                                                location.href = "intro.html";
                                            }, 1000)
                                        }
                                    }, 200)
                                }, 2000)
                            });
                        }).catch((e) => {
                            console.warn(e);
                            document.getElementById('updates').style.backgroundColor = "lightcoral";
                            document.getElementById('updates').innerText = lang.updates.error;
                            require('@electron/remote').getCurrentWindow().webContents.send("notification", {title: lang.polymer.updateError[0], message: lang.polymer.updateError[1]});
                            setTimeout(() => {
                                $("#banner-outer").fadeOut(200);
                                $("#intro-video").fadeIn(200);
                                setTimeout(() => {
                                    introsfx = document.getElementById("intro-video");
                                    introsfx.play()
                                    introsfx.onended = () => {
                                        $("body").fadeOut(500);
                                        setTimeout(() => {
                                            info("LoadWindow", "Switching control to MenuWindow");
                                            location.href = "intro.html";
                                        }, 1000)
                                    }
                                }, 200)
                            }, 2000)
                        });
                    }, 2000)
                }, 3000)
            }, 1000)
        } else {
            
            setTimeout(() => {
                $("#banner-outer").fadeOut(200);
                $("#intro-video").fadeIn(200);
                setTimeout(() => {
                    introsfx = document.getElementById("intro-video");
                    introsfx.play()
                    introsfx.onended = () => {
                        $("body").fadeOut(500);
                        setTimeout(() => {
                            info("LoadWindow", "Switching control to MenuWindow");
                            location.href = "intro.html";
                        }, 1000)
                    }
                }, 200)
            }, 5000)
        }
    }, 2000)
})