summaryrefslogblamecommitdiffstats
path: root/assets/js/initialize.js
blob: 219bc57e2eb9d093a5afe57fd65286c9ce349054 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
                                  

                                                                   
                                                   

 




                                                                                            




                                                            
                                
                                                        

                                                       
                                         
                                                                                 

                                                       


                                                                
                                                                                             



                                                                     



                        


                             
function getUrlParameter(sParam) {
    const url_params = new URLSearchParams(window.location.search);
    const found_param = url_params.get(sParam);
    return found_param === null ? "" : found_param;
}

try {
	localforage.getItem("logged_in").then(console.log);
} catch {
	alert("Vaša naprava ne podpira BežiAppa. Your device does not support BežiApp.");
}
localforage.getItem("logged_in")
    .then(
        function (value) {
            // This code runs once the value has been loaded
            // from the offline store.
            if (value == null) {
                // Setup the storage if it doesn't exist
                setupStorage(true);
                window.location.replace("/login.html");
            } else if (value === false) {
                // If storage exists, but user isn't logged in, redirect to login
                window.location.replace("/login.html");
            } else {
                // User is logged in, execute appropriate action

                if (getUrlParameter("m") !== "") {
                    window.location.replace("/pages/messaging.html#" + getUrlParameter("m"));
                } else {
                    window.location.replace("/pages/timetable.html");
                }

            }
        }
    ).catch(
        function (err) {
            console.log(err);
        }
    );