summaryrefslogtreecommitdiffstats
path: root/assets/js/app.js.bvr
blob: f6015063f95315d45e2773a86d00206d2b3983ee (plain) (blame)
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
<@?i global@>
const app_version = "<@?g app_version@>";
const previous_commit = "<@?g latest_commit@>";

if ("serviceWorker" in navigator) {
    navigator.serviceWorker.register("/sw.js")
        .then(() => { })
        .catch((err) => console.log("Service worker registration failed", err));
}

// Listen to messages from service workers.
if (navigator.serviceWorker) {
    navigator.serviceWorker.addEventListener('message', (event) => {
        if (event.data.msg === "install") {
            window.location.replace("/index.html");
        }
    });
}

/**
 * Displays a user-friendly text to the user and
 * detailed text to developer (console)
 * @param {string} usermsg User-friendly message
 * @param {string} devmsg Developer-friendly message
 */
async function UIAlert(usermsg, devmsg) {
    if (true) { // če bo kakšen dev switch?
        M.toast( { html: usermsg } );
        console.log(`[BežiApp UIAlert] ${usermsg} ${devmsg}`);
    } else {
        M.toast( { html: `${usermsg} ${devmsg}` } );
    }
}

/**
 * Handles GSEC error - notifies the user and prints a console message
 * @param {Object} err GSEC error object
 */
function gsecErrorHandlerUI(err) {
    console.log(`gsecErrorHanderUI: handling ${err}`);
    if(err == GSEC_ERR_NET || err == GSEC_ERR_NET_POSTBACK_GET ||
        err == GSEC_ERR_NET_POSTBACK_POST) {

        UIAlert( D("gsecErrNet") );
    } else if(err == GSEC_ERR_LOGIN) {
        UIAlert( D("gsecErrLogin") );
        localforage.setItem("logged_in", false).then( () => {
        window.location.replace("/index.html");
        });
    } else {
        UIAlert( D("gsecErrOther") );
    }
}


window.onerror = function (msg, url, lineNo, columnNo, error) {
	var data = {};
	data.error = {"msg": msg, "url": url, "line": lineNo, "column": columnNo, "obj": error};
	data.client = {"ua": navigator.userAgent, "app_version": app_version, "previous_commit": previous_commit};
	data.type = "error";
	$.post("https://beziapp-report.gimb.tk/", data);
	return false;
}