diff options
author | sijanec <sijanecantonluka@gmail.com> | 2020-05-17 00:13:40 +0200 |
---|---|---|
committer | sijanec <sijanecantonluka@gmail.com> | 2020-05-17 00:13:40 +0200 |
commit | fc66b376cb3a2c73843cc882d500cfd743c0790e (patch) | |
tree | c94ab426742180e88100629102fa7c21eb820a58 /dist/js/initialize.js | |
parent | Handlers moved from HTML to JS (diff) | |
download | beziapp-fc66b376cb3a2c73843cc882d500cfd743c0790e.tar beziapp-fc66b376cb3a2c73843cc882d500cfd743c0790e.tar.gz beziapp-fc66b376cb3a2c73843cc882d500cfd743c0790e.tar.bz2 beziapp-fc66b376cb3a2c73843cc882d500cfd743c0790e.tar.lz beziapp-fc66b376cb3a2c73843cc882d500cfd743c0790e.tar.xz beziapp-fc66b376cb3a2c73843cc882d500cfd743c0790e.tar.zst beziapp-fc66b376cb3a2c73843cc882d500cfd743c0790e.zip |
Diffstat (limited to 'dist/js/initialize.js')
-rw-r--r-- | dist/js/initialize.js | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/dist/js/initialize.js b/dist/js/initialize.js new file mode 100644 index 0000000..cb5d210 --- /dev/null +++ b/dist/js/initialize.js @@ -0,0 +1,35 @@ +function getUrlParameter(sParam) { + const url_params = new URLSearchParams(window.location.search); + const found_param = url_params.get(sParam); + return found_param === null ? "" : found_param; +} + + +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); + } + ); |