summaryrefslogtreecommitdiffstats
path: root/assets/js/meals.js
blob: 0a5313a34c61b7089d8825fd166f7753c6a9f651 (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
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
const API_ENDPOINT = "https://lopolis-api.gimb.tk/";

async function checkLogin() {
    localforage.getItem("logged_in_lopolis").then((value) => {
        if (value != true) {
            $("#meals-container").hide();
            $("#meals-login").show();
        } else {
            $("#meals-container").show();
            $("#meals-login").hide();
            loadMeals();
        }
    }).catch((err) => {
        console.log(err);
    });
}

function setLoading(state) {
    if (state) {
        $("#loading-bar").removeClass("hidden");
    } else {
        $("#loading-bar").addClass("hidden");
    }
}

async function getToken(callback, callbackparams = []) {
    setLoading(true);
    let promises_to_run = [
        localforage.getItem("lopolis_username").then((value) => {
            username = value;
        }),
        localforage.getItem("lopolis_password").then((value) => {
            password = value;
        })
    ];
    await Promise.all(promises_to_run);

    $.ajax({
        url: API_ENDPOINT + "gettoken",
        crossDomain: true,
        contentType: "application/json",
        data: JSON.stringify({
            "username": username,
            "password": password
        }),

        dataType: "json",
        cache: false,
        type: "POST",

        success: (dataauth) => {
            if(dataauth === null || dataauth.error == true) {
                UIAlert(D("authenticationError"), "getToken(): response error or null");
                localforage.setItem("logged_in_lopolis", false).then( function(){
                    checkLogin();
                });
            } else if (dataauth.error == false) {
                let empty = {};
                empty.token = dataauth.data;
                let argumentsToCallback = [empty].concat(callbackparams);
                callback(...argumentsToCallback); // poslje token v {token: xxx}
            } else {
                UIAlert( D("authenticationError"), "getToken(): invalid response, no condition met");
            }
            setLoading(false);
        },
        error: () => {
            UIAlert( D("lopolisAPIConnectionError"), "getToken(): AJAX error");
            setLoading(false);
        }
    });
}

async function getMenus(dataauth, callback, callbackparams = []) {
    setLoading(true);
    let current_date = new Date();
    // naloži za dva meseca vnaprej (če so zadnji dnevi v mesecu)
    let mealsgathered = {};
    let promises_to_wait_for = [];
    for (let iteration = 1; iteration <= 2; iteration++) {

        promises_to_wait_for[iteration] = $.ajax({
            url: API_ENDPOINT+"getmenus",
            crossDomain: true,
            contentType: "application/json",
            data: JSON.stringify({
                "month": current_date.getMonth() + iteration,
                "year": current_date.getFullYear()
            }),

            headers: {
                "Authorization": `Bearer ${dataauth.token}`
            },

            dataType: "json",
            cache: false,
            type: "POST",

            success: (meals) => {
                if(meals === null || meals.error == true) {
                    UIAlert( D("errorGettingMenus"), "getMenus(): response error or null");
                    setLoading(false);
                    localforage.setItem("logged_in_lopolis", false).then( () => {
                        checkLogin();
                    });
                } else if (meals.error == false) {
                    setLoading(false);
                    mealsgathered[iteration] = meals;
                    } else {
                    setLoading(false);
                    UIAlert( D("errorUnexpectedResponse") , "getMenus(): invalid response, no condition met");
                }
            },

            error: () => {
                setLoading(false);
                UIAlert( D("lopolisAPIConnectionError"), "getMenus(): AJAX error");
            }
        });
    }

    await Promise.all(promises_to_wait_for); // javascript is ducking amazing

    let allmeals = {};
    let passtocallback = {};

    for (const [index, monthmeals] of Object.entries(mealsgathered)) { // although this is not very javascripty
        allmeals = mergeDeep(allmeals, monthmeals.data);
    }

    passtocallback.data = allmeals;
    passtocallback.token = dataauth.token;
    let toBePassed = [passtocallback].concat(callbackparams);
    callback(...toBePassed);

}

async function loadMeals() {
    getToken(getMenus, [displayMeals, []]);
}

function displayMeals(meals) {
    // console.log(JSON.stringify(meals)); // debug // dela!

    let root_element = document.getElementById("meals-collapsible");
    for (const [date, mealzz] of Object.entries(meals.data)) {
        let unabletochoosequestionmark = "";
        let readonly = mealzz.readonly;
        var datum = new Date(date);

        // Create root element for a date entry
        let subject_entry = document.createElement("li");

        // Create subject collapsible header
        let subject_header = document.createElement("div");
        subject_header.classList.add("collapsible-header");
        subject_header.classList.add("collapsible-header-root");

        // Create header text element
        let subject_header_text = document.createElement("span");

        if(mealzz.readonly) {
            unabletochoosequestionmark = `*${S("readOnly")}*`;
        }

        // Use ES6 templates
        subject_header_text = `${dateString.day(datum.getDay())}, ${datum.getDate()}. ${dateString.month(datum.getMonth())} ${datum.getFullYear()} (${mealzz.meal} @ ${mealzz.location}) ${unabletochoosequestionmark}`;

        // Create collection for displaying individuals meals
        let subject_body = document.createElement("div");
        subject_body.className = "collapsible-body";
        let subject_body_root = document.createElement("ul");
        subject_body_root.className = "collection";

        for(const [dindex, dmil] of Object.entries(mealzz.menu_options)) {
            // Create element for individual meal
            let meal_node = document.createElement("li");
            meal_node.className = "collection-item";
            meal_node.classList.add("collection-item")
            meal_node.classList.add("meal-node");
            meal_node.dataset["index"] = dindex;

            if (!readonly) {
                meal_node.onclick = () => {
                    setMenu(date, dmil.value);
                }
            }

            let meal_node_div = document.createElement("div");
            // Node for left text
            let meal_lefttext = document.createElement("span");
            // Node for the right text
            let meal_righttext = document.createElement("div");
            meal_righttext.className = "secondary-content";
            // Apply different style, if the meal is selected
            if (dmil.selected) {
                // Text
                meal_lefttext.innerHTML = `<i>${dmil.text}</i>`;
                // Number
                meal_righttext.innerText = S("selected");
            } else {
                // Text
                meal_lefttext.innerText = dmil.text;
                // Number
                meal_righttext.innerText = "";
            }
            meal_node_div.appendChild(meal_lefttext);
            meal_node_div.appendChild(meal_righttext);
            meal_node.appendChild(meal_node_div);
            subject_body_root.appendChild(meal_node);
        }

        subject_header.appendChild(subject_header_text);
        subject_body.append(subject_body_root);
        subject_entry.append(subject_header);
        subject_entry.append(subject_body);
        root_element.append(subject_entry);
    }
    $("#meals-collapsible").append(root_element);
    // refreshClickHandlers();
}

function clearMeals() {
    const table = document.getElementById("meals-collapsible");
    while (table.firstChild) {
        table.removeChild(table.firstChild);
    }
}

function refreshMeals() {
    clearMeals();
    loadMeals();
}

function lopolisLogout() {
    localforage.setItem("logged_in_lopolis", false);
    $("#meals-collapsible").html("");
    checkLogin();
}

async function lopolisLogin() {
    setLoading(true);
    var usernameEl = $("#meals_username");
    var passwordEl = $("#meals_password");
    $.ajax({
        url: API_ENDPOINT+"gettoken",
        crossDomain: true,
        contentType: "application/json",
        data: JSON.stringify({
            "username": usernameEl.val(),
            "password": passwordEl.val()
        }),

        dataType: "json",
        cache: false,
        type: "POST",

        success: async function(data) {
            if(data == null) {
                UIAlert( S("requestForAuthenticationFailed"), "lopolisLogin(): date is is null");
                setLoading(false);
                usernameEl.val("");
                passwordEl.val("");
            } else if(data.error == true) {
                UIAlert( S("loginFailed"), "lopolisLogin(): login failed. data.error is true");
                usernameEl.val("");
                passwordEl.val("");
                setLoading(false);
            } else {
                let promises_to_run = [
                    localforage.setItem("logged_in_lopolis", true),
                    localforage.setItem("lopolis_username", usernameEl.val()),
                    localforage.setItem("lopolis_password", passwordEl.val())
                ];
                await Promise.all(promises_to_run);
                checkLogin();
                UIAlert("Credential match!");
            }
        },

        error: () => {
            UIAlert( D("loginError"), "lopolisLogin(): ajax.error");
            setLoading(false);
        }
    });
}

async function setMenus(currentmeals = 69, toBeSentChoices) { // currentmeals je getMenus response in vsebuje tudi token.

    if (currentmeals === 69) {
        getToken(getMenus, [setMenus, toBeSentChoices]);
        return;
    }

    for(const [mealzzdate, mealzz] of Object.entries(currentmeals.data)) {
        if (mealzzdate in toBeSentChoices === false) {
            for (const [mealid, mealdata] of Object.entries(mealzz.menu_options)) {
                console.log(mealdata);
                if(mealdata.selected == true || mealzz.readonly == true) {
                    toBeSentChoices[mealzzdate] = mealdata.value;
                    break;
                }
            }
        }
    }

    setLoading(true);

    $.ajax({
        url: API_ENDPOINT + "setmenus",
        crossDomain: true,
        contentType: "application/json",
        data: JSON.stringify( { "choices": toBeSentChoices } ),
        headers: {
            "Authorization": "Bearer " + currentmeals.token
        },
        dataType: "json",
        cache: false,
        type: "POST",

        success: (response) => {
            if(response === null || response.error == true) {
                UIAlert( D("errorSettingMeals"), "setMenus(): response error or null");
            } else if (response.error == false) {
                UIAlert( D("mealSet"), "setMenus(): meni nastavljen");
            } else {
                UIAlert( D("errorUnexpectedResponse"), "setMenus(): invalid response, no condition met");
            }
            setLoading(false);
        },

        error: () => {
            setLoading(false);
            UIAlert( D("lopolisAPIConnectionError"), "setMenus(): AJAX error");
        }
    });
}
async function setMenu(date, menu) {
    let choice = {};
    choice[date] = menu;
    getToken(getMenus, [setMenus, choice]);
}


function setupEventListeners() {
    $("#meals-login").click(() => {
        lopolisLogin();
    });

    $("#meals-logout").click(() => {
        lopolisLogout();
    });
}

// Initialization code
document.addEventListener("DOMContentLoaded", async () => {
    checkLogin();

    setupEventListeners();

    let coll_elem = document.querySelectorAll('.collapsible');
    M.Collapsible.init(coll_elem, {});

    // Setup refresh handler
    $("#refresh-icon").click(function () {
        refreshMeals();
    });

    let elems = document.querySelectorAll('.modal');
    M.Modal.init(elems, {});
    // Setup side menu
    const menus = document.querySelectorAll('.side-menu');
    M.Sidenav.init(menus, { edge: 'right', draggable: true });

    // Setup side modal
    const modals = document.querySelectorAll('.side-modal');
    M.Sidenav.init(modals, { edge: 'left', draggable: false });

    var elemsx = document.querySelectorAll('select');
    M.FormSelect.init(elemsx);

    var datepickerelems = document.querySelectorAll('.datepicker');
    var today = new Date();
    M.Datepicker.init(datepickerelems, {
        firstDay: 1,
        minDate: today,
        showDaysInNextAndPreviousMonths: true,
        showClearBtn: true,
        format: "dddd, dd. mmmm yyyy"
    });

    refreshMeals();
});