-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
36 lines (29 loc) · 948 Bytes
/
script.js
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
start_msg = "Dzień dobry, chciałbym usprawiedliwić syna w dniach"
after_date_msg_singular = "o godzinnie"
after_date_msg_plural = "w godzinach"
marks = Array.from(document.getElementsByClassName("ocena"))
date_regex = /(\d{4}-\d{2}-\d{2}) \((.*?)\)/;
hour_regex = /Godzina lekcyjna: (\d+)/;
counter = 0
hours_by_date = new Map()
add_to_hashmap = (date, hour) => {
if(!hours_by_date.has(date)){
hours_by_date.set(date, [])
}
hours_by_date.get(date).push(hour)
}
marks.forEach(mark => {
let mark_type = mark.innerText
if(mark_type != "nb")
return
let mark_content = mark.title
let mark_date = mark_content.match(date_regex)[0]
let lession_hour = mark_content.match(hour_regex)[1]
++counter
add_to_hashmap(mark_date, lession_hour)
})
buffer = start_msg + '\n'
hours_by_date.forEach((value, key) => {
buffer += `${key} ${value.length > 1 ? after_date_msg_plural :after_date_msg_singular } ${value}\n`
})
console.log(buffer)