diff options
author | sijanec <sijanecantonluka@gmail.com> | 2020-05-20 18:31:15 +0200 |
---|---|---|
committer | sijanec <sijanecantonluka@gmail.com> | 2020-05-20 18:31:15 +0200 |
commit | 70854102b66f8cac32e925398120c4f6731206d1 (patch) | |
tree | 3fd0aaa98d808df70f27971979a6b6498fef36be /dist/js | |
parent | fixed even mroe geeky operators (?) (diff) | |
download | beziapp-70854102b66f8cac32e925398120c4f6731206d1.tar beziapp-70854102b66f8cac32e925398120c4f6731206d1.tar.gz beziapp-70854102b66f8cac32e925398120c4f6731206d1.tar.bz2 beziapp-70854102b66f8cac32e925398120c4f6731206d1.tar.lz beziapp-70854102b66f8cac32e925398120c4f6731206d1.tar.xz beziapp-70854102b66f8cac32e925398120c4f6731206d1.tar.zst beziapp-70854102b66f8cac32e925398120c4f6731206d1.zip |
Diffstat (limited to 'dist/js')
-rwxr-xr-x | dist/js/app.js | 2 | ||||
-rw-r--r-- | dist/js/messaging.js | 90 |
2 files changed, 57 insertions, 35 deletions
diff --git a/dist/js/app.js b/dist/js/app.js index d9a5e16..09e4c86 100755 --- a/dist/js/app.js +++ b/dist/js/app.js @@ -3,7 +3,7 @@ const app_version = "1.0.13-beta"; -const previous_commit = "2eaa58fd631705101eeb6a946f548f936747c30e"; +const previous_commit = "5de19af5e33c527e4b47091b5eba010f002b73eb"; if ("serviceWorker" in navigator) { navigator.serviceWorker.register("/sw.js") diff --git a/dist/js/messaging.js b/dist/js/messaging.js index 34963a3..dba57ef 100644 --- a/dist/js/messaging.js +++ b/dist/js/messaging.js @@ -38,40 +38,62 @@ function htmlDecode(value) { // --------------------------------- // Try to fetch name:id directory -function loadDirectory() { - $.ajax({ - url: DIRECTORY_URL, - crossDomain: true, - - dataType: "json", - cache: false, - type: "GET", - - success: (data) => { - // If we were able to retrieve it, update the saved directory - localforage.setItem("directory", data); - directory = data; - // Populate autocomplete - populateAutocomplete(); - }, - - error: () => { - // Otherwise, try to retrieve stored directory - localforage.getItem("directory").then((stored_directory) => { - if (stored_directory === null) { - // If unable, set directory to null (so other functions know that we don't have it) - UIAlert( D("nameDirectoryNotSet"), "loadDirectory(): stored_directory === null" ); - directory = null; - // Disable send button - document.getElementById("msg-send").disabled = true; - } else { - directory = stored_directory; - // Populate autocomplete - populateAutocomplete(); - } - }); - } - }); +async function loadDirectory() { + $.ajax({ + url: DIRECTORY_URL, + crossDomain: true, + dataType: "json", + cache: false, + type: "GET", + success: async function (data) { + // If we were able to retrieve it, update the saved directory + let promises_to_run = [ + localforage.getItem("username").then((value) => { + username = value; + }), + localforage.getItem("password").then((value) => { + password = value; + }), + localforage.getItem("grades").then((value) => { + grades = value; + }) + ]; + await Promise.all(promises_to_run); + var gsecdata; + try { + let gsecInstance = new gsec(); + await gsecInstance.login(username, password); + gsecdata = await gsecInstance.fetchTeachersDirectory().catch( (err) => { + gsecErrorHandlerUI(err); + setLoading(false); + }); + } catch (err) { + gsecErrorHandlerUI(err); + setLoading(false); + } + directory = {...gsecdata, ...data }; + console.log(directory); + localforage.setItem("directory", directory); + // Populate autocomplete + populateAutocomplete(); + }, + error: () => { + // Otherwise, try to retrieve stored directory + localforage.getItem("directory").then((stored_directory) => { + if (stored_directory === null) { + // If unable, set directory to null (so other functions know that we don't have it) + UIAlert( D("nameDirectoryNotSet"), "loadDirectory(): stored_directory === null" ); + directory = null; + // Disable send button + document.getElementById("msg-send").disabled = true; + } else { + directory = stored_directory; + // Populate autocomplete + populateAutocomplete(); + } + }); + } + }); } function populateAutocomplete() { |