summaryrefslogtreecommitdiffstats
path: root/js/gradings.js
blob: 285f48b25d91401b40acaeda5bd168796fc83c52 (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
const API_ENDPOINT = "https://gimb.tk/test.php";
var calendar_obj = null;

async function checkLogin() {
    localforage.getItem("logged_in").then((value) => {
        // This code runs once the value has been loaded
        // from the offline store.
        if (value !== true) {
            window.location.replace("/index.html");
        }
    }).catch((err) => {
        // This code runs if there were any errors
        console.log(err);
    });
}

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

// GET COLOR FROM STRING
function hashCode(str) { // java String#hashCode
    var hash = 0;
    for (var i = 0; i < str.length; i++) {
        hash = str.charCodeAt(i) + ((hash << 5) - hash);
    }
    return hash;
}

function intToRGB(i) {
    var c = (i & 0x00FFFFFF)
        .toString(16)
        .toUpperCase();

    return "00000".substring(0, 6 - c.length) + c;
}

// http://www.w3.org/TR/AERT#color-contrast
function getForegroundFromBackground(background_color) {
    let color_hex = background_color.replace("#", "");
    let rgb = [
        parseInt(color_hex.substring(0, 2), 16),
        parseInt(color_hex.substring(2, 4), 16),
        parseInt(color_hex.substring(4, 6), 16)
    ];
    let o = Math.round(((parseInt(rgb[0]) * 299) + (parseInt(rgb[1]) * 587) + (parseInt(rgb[2]) * 114)) / 1000);
    if (o > 180) {
        return "#000000";
    } else {
        return "#ffffff";
    }
}

function getHexColorFromString(str) {
    return "#" + intToRGB(hashCode(str));
}
// --------------------------------------------------

function getDateString() {
    let date = new Date();

    let year_str = date.getFullYear();
    let month_str = date.getMonth() + 1
    month_str = month_str.toString().padStart(2, "0");
    let day_str = date.getDate();
    day_str = day_str.toString().padStart(2, "0");

    let date_string = year_str + "-" + month_str + "-" + day_str;
    return date_string;
}

async function loadGradings(force_refresh = false) {
    setLoading(true);

    let promises_to_run = [
        localforage.getItem("username").then((value) => {
            username = value;
        }),
        localforage.getItem("password").then((value) => {
            password = value;
        }),
        localforage.getItem("gradings").then((value) => {
            gradings = value;
        })
    ];

    Promise.all(promises_to_run).then(() => {

        if (gradings === null || gradings === [] || gradings === -1 || force_refresh) {
            $.ajax({
                url: API_ENDPOINT,
                crossDomain: true,

                data: {
                    "u": username,
                    "p": password,
                    "m": "fetchocenjevanja"
                },
                dataType: "json",

                cache: false,
                type: "GET",

                success: (data) => {

                    // If data is null, the credentials were incorrect
                    if (data === null) {
												UIAlert( S("requestFailed"), "loadGradings(): data === null; request failed");
                        setLoading(false);
                    } else {
                        // Save gradings & populate calendar
                        localforage.setItem("gradings", data).then((value) => {
                            gradings = value;
                            displayData();
                            setLoading(false);
                        });
                    }

                },

                error: () => {
										UIAlert( S("noInternetConnection"), "loadGradings(): $.ajax:error" );
                    setLoading(false);
                }

            });

        } else {
            displayData();
            setLoading(false);
        }
    });

}

function displayData() {
    let transformed_gradings = [];
    gradings.forEach((element, index) => {

        let bg_color = getHexColorFromString(element["kratica"]);
        let fg_color = getForegroundFromBackground(bg_color);

        let grading_object = {
            // Convert from dd.mm.yyyy to yyyy-mm-dd
            start: element["datum"].split(".").reverse().join("-"),
            title: element["kratica"],
            id: index.toString(),
            backgroundColor: bg_color,
            textColor: fg_color
        };

        transformed_gradings.push(grading_object);
    });

    calendar_obj.removeAllEvents();
    calendar_obj.addEventSource(transformed_gradings);
}

function gradingClickHandler(eventClickInfo) {
    let grading_id = parseInt(eventClickInfo.event.id);
    let grading_subject = gradings[grading_id]["predmet"];
    let grading_date = gradings[grading_id]["datum"];
    let grading_description = gradings[grading_id]["opis"];

    document.getElementById("grading-subject").innerText = grading_subject;
    document.getElementById("grading-date").innerText = grading_date;
    document.getElementById("grading-description").innerText = grading_description;

    const modal = document.querySelectorAll('.side-modal')[0];
    M.Sidenav.getInstance(modal).open();
}

function setupPickers() {
    // Setup pickers
    var date_object = new Date();

    let elems = document.querySelectorAll('#datepicker-add');
    let options = {
        autoClose: true,
        format: "dd.mm.yyyy",
        defaultDate: date_object,
        setDefaultDate: true,
        firstDay: 1
    }
    let instances = M.Datepicker.init(elems, options);


    instances = M.Datepicker.init(elems, options);
}


document.addEventListener("DOMContentLoaded", () => {
    checkLogin();

    // Calendar setup
    var calendarEl = document.getElementById("calendar");
    calendar_obj = new FullCalendar.Calendar(calendarEl, {
				firstDay: 1,
        plugins: ["dayGrid"],
        defaultDate: getDateString(),
        navLinks: false,
        editable: false,
        events: [],
        eventClick: gradingClickHandler,
        height: "parent"
    });
    calendar_obj.render();
    setupPickers();
    loadGradings();

    // Setup refresh handler
    $("#refresh-icon").click(() => {
        loadGradings(true);
    });

    // 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 });
});