-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
254 lines (220 loc) · 11.3 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>EPFL Week Builder</title>
<link rel="stylesheet" href="https://uicdn.toast.com/calendar/latest/toastui-calendar.min.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<link rel="stylesheet" href="./index.css"/>
</head>
<body>
<div
x-data="store"
x-init="fetchSubjectDataPerSections()"
>
<h1>EPFL BA1 Week Builder</h1>
<p>Choisissez une section puis sélectionnez vos cours en fonction du format (inversé, online ou classique), du professeur (ex. manière d'enseigner, examens, ancienneté) et de la langue (anglais, allemand ou français).</p>
<div id="section-form">
<div class="form-group">
<h4>Section</h4>
<select class="form-control" id="section-select" x-model="selectedSection" x-on:change.debounce="updateEDT">
<template x-for="section in sections">
<option x-text="section"></option>
</template>
</select>
</div>
</div>
<div id="cours-form">
<div class="form-group">
<h4>Cours</h4>
<!-- loop and for each cours, allow to choose one professor -->
<template x-for="subject in subjectDataPerSection[selectedSection]">
<div style="margin-top: 15px;">
<label x-text="subject.subjectStandardName"></label>
<select class="form-control" id="cours-select" x-model="selectedCoursPerSectionPerSubject[selectedSection][subject.subjectStandardName]" x-on:change.debounce="updateEDT">
<template x-for="cours in subject.coursList">
<option x-text="cours.coursDisplayName"></option>
</template>
</select>
</div>
</template>
</div>
<template x-if="totalSum < 29 || totalSum > 31">
<div style="margin-bottom: 10px;">
<b x-text="'Total des heures : '+totalSum+'h. En temps normal, votre nombre d\'heures de cours doit se situer entre 29h et 31h. Si ce n\'est pas le cas, cela signifie probablement que les données fournies par l\'EPFL ne sont pas correctes pour le moment. Vous pouvez me contacter sur t.me/androz2091 pour plus d\'informations.'"></b>
</div>
</template>
<p>Note : les leçons sont affichées en bleu, les exercices en vert (vert clair si une semaine sur deux) et les TP en rose.<br>Le site fonctionne très bien sur ordinateur, l'affichage est moins bon sur mobile mais permet tout de même de savoir quelles heures sont libres ou prises par un cours.</p>
<div id="section-calendar" style="height: 600px;">
</div>
</div>
<script defer src="https://cdn.jsdelivr.net/npm/[email protected]/dist/cdn.min.js"></script>
<script src="https://uicdn.toast.com/calendar/latest/toastui-calendar.min.js"></script>
<script>
const calendar = new tui.Calendar('#section-calendar', {
defaultView: 'week',
useDetailPopup: true,
calendars: [
{
id: 'calendarexercices',
name: 'Exercices',
backgroundColor: '#03bd9e',
},
{
id: 'calendarexercicesdemiweek',
name: 'Exercices demi-week',
backgroundColor: '#4cffe5',
},
{
id: 'calendarlessons',
name: 'Lessons',
backgroundColor: '#00a9ff',
},
{
id: 'calendarprojects',
name: 'Projects',
backgroundColor: '#ffbbcd',
},
{
id: 'calendartp',
name: 'TP',
backgroundColor: '#ff5583',
},
{
id: 'alldayssum',
name: 'Allday Sum',
backgroundColor: '#E39F9F',
}
],
week: {
hourStart: 8,
hourEnd: 20,
eventView: true,
taskView: false,
alldayView: false,
narrowWeekend: true
},
isReadOnly: true,
template: {
weekDayName(dayname) {
const newDays = {
'Mon': 'Lundi',
'Tue': 'Mardi',
'Wed': 'Mercredi',
'Thu': 'Jeudi',
'Fri': 'Vendredi',
'Sat': 'Samedi',
'Sun': 'Dimanche'
}
return newDays[dayname.dayName];
},
}
});
window.theCalendar = calendar;
document.addEventListener('alpine:init', () => {
Alpine.data('store', () => ({
selectedSection: 'IN',
sections: [],
selectedCoursPerSectionPerSubject: {},
subjectDataPerSection: {},
totalSum: 29,
init() {
this.fetchSections()
.then((sections) => {
this.sections = sections;
return this.fetchSubjectDataPerSections();
})
.then(() => {
this.updateEDT();
});
},
async fetchSubjectDataPerSections () {
for (const section of this.sections) {
this.subjectDataPerSection[section] = await (await fetch('/data/' + section + '.json')).json()
this.selectedCoursPerSectionPerSubject[section] = {};
this.subjectDataPerSection[section].forEach((subject) => {
const cours = subject.coursList.sort((a, b) => b.coursPrecision ? -1 : 1)[0]; // on prend les cours sans précision par défaut
this.selectedCoursPerSectionPerSubject[section][cours.subjectStandardName] = cours.coursDisplayName;
});
}
},
async fetchSections () {
const sections = await (await fetch('/data/sections.json')).json();
return Object.values(sections);
},
updateEDT () {
calendar.clear();
const daysSum = {};
for (const subject of this.subjectDataPerSection[this.selectedSection]) {
for (const cours of subject.coursList) {
for (const lesson of cours.lessons) {
if (cours.coursDisplayName === this.selectedCoursPerSectionPerSubject[this.selectedSection][subject.subjectStandardName]) {
const dayIdx = lesson.day
const hour = lesson.startHour // 5am
const duration = lesson.hoursCount // 2 hours
const start = new Date();
const end = new Date();
const startDiff = (dayIdx + 7 - start.getDay()) % 7;
const endDiff = (dayIdx + 7 - end.getDay()) % 7;
const endOfWeekDate = new Date();
endOfWeekDate.setDate(endOfWeekDate.getDate() + (7 - endOfWeekDate.getDay()) % 7);
console.log(endOfWeekDate.toISOString())
start.setDate(start.getDate() + startDiff);
end.setDate(end.getDate() + endDiff);
if (end.getTime() > endOfWeekDate.getTime()) {
end.setDate(end.getDate() - 7);
}
if (start.getTime() > endOfWeekDate.getTime()) {
start.setDate(start.getDate() - 7);
}
start.setHours(hour);
end.setHours(hour + duration);
start.setMinutes(0, 0, 0);
end.setMinutes(0, 0, 0);
const calendarId = lesson.isExercice ? (lesson.demiWeek ? 'calendarexercicesdemiweek' : 'calendarexercices') : lesson.isTP ? 'calendartp' : (lesson.isProject ? 'calendarprojects' : 'calendarlessons');
const id = Math.random().toString(36).substr(2, 9);
console.log(lesson.salle)
console.log(start.toISOString())
calendar.createEvents([
{
id,
calendarId,
title: cours.subjectStandardName,
category: 'time',
dueDateClass: '',
start: start.toISOString(),
end: end.toISOString(),
location: lesson.salle,
body: lesson.demiWeek ? 'Ce cours aura probablement lieu une semaine sur deux.' : '',
}
]);
start.setHours(10, 0);
daysSum[start.toISOString()] = (daysSum[start.toISOString()] || 0) + (lesson.demiWeek ? duration/2 : duration);
}
}
}
}
Object.keys(daysSum).forEach((c) => {
const end = new Date(c);
end.setHours(10);
calendar.createEvents([
{
id: Math.random().toString(36).substr(2, 9),
calendarId: 'alldayssum',
isAllday: true,
title: 'Total: ' + daysSum[c] + 'h',
category: 'time',
dueDateClass: '',
start: c,
end: end.toISOString(),
}
]);
});
this.totalSum = Object.values(daysSum).reduce((a, b) => a + b, 0);
}
}));
});
</script>
</body>
</html>