2023-11-11 18:13:18 +01:00
|
|
|
{% extends "sco_page.j2" %}
|
2023-11-15 20:38:51 +01:00
|
|
|
{% import 'wtf.j2' as wtf %}
|
2023-11-11 18:13:18 +01:00
|
|
|
|
|
|
|
{% block styles %}
|
|
|
|
{{super()}}
|
2023-11-16 23:34:47 +01:00
|
|
|
<link rel="stylesheet" href="{{scu.STATIC_DIR}}/libjs/tui.calendar/toastui-calendar.min.css"/>
|
|
|
|
<link rel="stylesheet" href="{{scu.STATIC_DIR}}/libjs/bootstrap-multiselect-1.1.2/bootstrap-multiselect.min.css"/>
|
|
|
|
<link rel="stylesheet" href="{{scu.STATIC_DIR}}/css/edt.css">
|
2023-11-11 18:13:18 +01:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
|
|
{% block app_content %}
|
|
|
|
|
|
|
|
<div class="tab-content">
|
|
|
|
<h2>Expérimental: emploi du temps</h2>
|
|
|
|
|
2023-11-16 23:34:47 +01:00
|
|
|
{{ form_groups_choice|safe }}
|
|
|
|
|
2024-01-05 14:10:12 +01:00
|
|
|
<div class="dropdown">
|
|
|
|
<button class="dropbtn">Semaine</button>
|
|
|
|
<div class="dropdown-content">
|
|
|
|
<ul>
|
2024-01-06 14:51:48 +01:00
|
|
|
{% for v in views_names %}
|
|
|
|
<li><a href="#" data-view="{{v}}">{{views_names[v]}}</a></li>
|
|
|
|
{% endfor %}
|
2024-01-05 14:10:12 +01:00
|
|
|
<li>
|
|
|
|
<label>
|
|
|
|
<input type="checkbox" id="showModulesTitles"
|
|
|
|
{{ "checked" if show_modules_titles else "" }}
|
|
|
|
>
|
|
|
|
noms des modules
|
|
|
|
</label>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<form id="calendar_control_form" method="GET">
|
|
|
|
<input type="hidden" name="current_date" value="{{current_date}}">
|
|
|
|
<input type="hidden" name="show_modules_titles" value="{{ 1 if show_modules_titles else 0 }}">
|
|
|
|
<input type="submit" value="Apply Changes" hidden>
|
|
|
|
</div>
|
2023-12-24 16:09:07 +01:00
|
|
|
|
2023-11-14 22:48:28 +01:00
|
|
|
<div>
|
|
|
|
<span id="menu-navi">
|
|
|
|
<button type="button" class="btn btn-default btn-sm move-today"
|
|
|
|
data-action="move-today">Aujourd'hui</button>
|
|
|
|
<button type="button" class="btn btn-default btn-sm move-day" data-action="move-prev">
|
2023-11-14 23:16:25 +01:00
|
|
|
<i class="calendar-icon ic-arrow-line-left" data-action="move-prev"><</i>
|
2023-11-14 22:48:28 +01:00
|
|
|
</button>
|
|
|
|
<button type="button" class="btn btn-default btn-sm move-day" data-action="move-next">
|
2023-11-14 23:16:25 +01:00
|
|
|
<i class="calendar-icon ic-arrow-line-right" data-action="move-next">></i>
|
2023-11-14 22:48:28 +01:00
|
|
|
</button>
|
|
|
|
</span>
|
|
|
|
<span id="renderRange" class="render-range"></span>
|
2024-01-09 18:48:44 +01:00
|
|
|
<span id="cal_warning">Attention: dates en dehors de ce semestre !</span>
|
2023-11-14 22:48:28 +01:00
|
|
|
</div>
|
2024-01-05 14:10:12 +01:00
|
|
|
<div id="formsemestre-calendar" style="height: calc(100vh - 180px);"></div>
|
2023-11-11 18:13:18 +01:00
|
|
|
|
2023-11-16 23:34:47 +01:00
|
|
|
<div class="help">
|
|
|
|
<ul>
|
|
|
|
<li>Les heures sont toujours affichées dans le fuseau horaire du serveur,
|
|
|
|
qui est en principe celui des étudiants.
|
|
|
|
</li>
|
|
|
|
<li>Si vous filtrez par groupe, les évènements dont le groupe n'est pas reconnu seront affichés.
|
|
|
|
</li>
|
2023-12-24 16:09:07 +01:00
|
|
|
{% if formsemestre.can_be_edited_by(current_user) %}
|
|
|
|
<li><a class="stdlink" href="{{
|
|
|
|
url_for('notes.formsemestre_edt_help_config',
|
|
|
|
scodoc_dept=g.scodoc_dept, formsemestre_id= formsemestre.id)
|
|
|
|
}}">Aide à la configuration de l'emploi du temps</a>
|
|
|
|
{% endif %}
|
2023-11-16 23:34:47 +01:00
|
|
|
</ul>
|
|
|
|
</div>
|
2023-11-11 18:13:18 +01:00
|
|
|
</div>
|
2023-12-24 16:09:07 +01:00
|
|
|
|
2023-11-11 18:13:18 +01:00
|
|
|
{% endblock app_content %}
|
|
|
|
|
|
|
|
{% block scripts %}
|
|
|
|
{{ super() }}
|
2023-11-16 23:34:47 +01:00
|
|
|
<script src="{{scu.STATIC_DIR}}/libjs/bootstrap-multiselect-1.1.2/bootstrap-multiselect.min.js"></script>
|
|
|
|
<script src="{{scu.STATIC_DIR}}/libjs/purl.js"></script>
|
2023-11-11 18:13:18 +01:00
|
|
|
<script src="{{scu.STATIC_DIR}}/libjs/tui.calendar/toastui-calendar.min.js"></script>
|
2023-11-16 23:34:47 +01:00
|
|
|
<script src="{{scu.STATIC_DIR}}/js/groups_view.js"></script>
|
2023-11-11 18:13:18 +01:00
|
|
|
<script>
|
|
|
|
let hm_formatter = new Intl.DateTimeFormat('default', {
|
|
|
|
hour: '2-digit',
|
|
|
|
minute: '2-digit',
|
|
|
|
hour12: false
|
|
|
|
});
|
|
|
|
|
2023-11-14 23:16:25 +01:00
|
|
|
function getDataAction(target) {
|
|
|
|
return target.dataset ? target.dataset.action : target.getAttribute('data-action');
|
|
|
|
}
|
|
|
|
|
2024-01-05 14:10:12 +01:00
|
|
|
function getNextDayISODate(isoDate) {
|
|
|
|
// Parse the ISO date string into a Date object
|
|
|
|
const date = new Date(isoDate);
|
|
|
|
|
|
|
|
// Add one day
|
|
|
|
date.setDate(date.getDate() + 1);
|
|
|
|
|
|
|
|
// Convert back to ISO date string (YYYY-MM-DD)
|
|
|
|
return date.toISOString().split('T')[0];
|
|
|
|
}
|
|
|
|
|
|
|
|
var calendar;
|
|
|
|
|
2023-11-11 18:13:18 +01:00
|
|
|
document.addEventListener('DOMContentLoaded', function() {
|
2023-11-14 23:16:25 +01:00
|
|
|
document.getElementById('menu-navi').addEventListener('click', onClickNavi);
|
2023-11-11 18:13:18 +01:00
|
|
|
const Calendar = tui.Calendar;
|
2024-01-05 14:10:12 +01:00
|
|
|
const container = document.getElementById('formsemestre-calendar');
|
2023-11-11 18:13:18 +01:00
|
|
|
const options = {
|
2024-01-06 14:51:48 +01:00
|
|
|
defaultView: '{{view}}',
|
2023-11-11 18:13:18 +01:00
|
|
|
calendars: [
|
|
|
|
{
|
|
|
|
id: 'cal1',
|
|
|
|
name: 'Personal',
|
|
|
|
backgroundColor: '#03bd9e',
|
|
|
|
borderColor: 'white',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
isReadOnly: true,
|
|
|
|
// timezone: { zones: [ { timezoneName: 'Europe/Paris' } ] },
|
|
|
|
template: {
|
|
|
|
// ce template nous permet d'avoir du HTML dans le title de l'event
|
|
|
|
time: function(event) {
|
|
|
|
const date_start = new Date(event.start);
|
|
|
|
const start = hm_formatter.format(date_start);
|
2024-01-17 21:58:45 +01:00
|
|
|
return `<strong>${start}</strong> <span>${event.title}</span> <div class="raw-event">${event.raw}</div>`;
|
2023-11-11 18:13:18 +01:00
|
|
|
},
|
|
|
|
},
|
2023-11-13 15:08:09 +01:00
|
|
|
timezone: {
|
|
|
|
zones: [
|
|
|
|
{
|
|
|
|
timezoneName: 'CET', // TODO récupérer timezone serveur
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
2023-11-11 18:13:18 +01:00
|
|
|
usageStatistics: false,
|
|
|
|
week: {
|
|
|
|
dayNames: [ "Dimanche", "Lundi", "Mardi", "Mercredi", "Jeudi", "Vendredi", "Samedi"],
|
|
|
|
eventView: ['time'],
|
2023-11-13 11:30:26 +01:00
|
|
|
hourStart: {{ hour_start }},
|
|
|
|
hourEnd: {{ hour_end }},
|
2023-11-11 18:13:18 +01:00
|
|
|
showNowIndicator: true,
|
|
|
|
startDayOfWeek: 1,
|
|
|
|
taskView: false,
|
|
|
|
useDetailPopup:false, // on va pouvoir placer les liens scodoc
|
|
|
|
workweek: true, // TODO voir samedi travaillé
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2024-01-05 14:10:12 +01:00
|
|
|
calendar = new Calendar(container, options);
|
2023-11-14 23:16:25 +01:00
|
|
|
|
2023-12-24 16:09:07 +01:00
|
|
|
fetch(`${SCO_URL}/../api/formsemestre/{{formsemestre.id}}/edt?{{groups_query_args|safe}}&show_modules_titles={{show_modules_titles}}`)
|
2023-11-11 18:13:18 +01:00
|
|
|
.then(r=>{return r.json()})
|
|
|
|
.then(events=>{
|
2023-11-14 14:06:47 +01:00
|
|
|
if (typeof events == 'string') {
|
|
|
|
// error !
|
|
|
|
alert("error: " + events)
|
|
|
|
} else {
|
|
|
|
calendar.createEvents(events);
|
|
|
|
}
|
2023-11-11 18:13:18 +01:00
|
|
|
});
|
2023-11-14 23:16:25 +01:00
|
|
|
|
2024-01-05 14:10:12 +01:00
|
|
|
{% if current_date %}
|
|
|
|
// we need to add one day because our weeks are starting on Monday
|
|
|
|
calendar.setDate( getNextDayISODate("{{current_date}}") );
|
|
|
|
{% endif %}
|
|
|
|
changeCalendarDate();
|
|
|
|
|
2023-11-14 23:16:25 +01:00
|
|
|
function formatDate(date) {
|
|
|
|
let year = date.getFullYear();
|
|
|
|
let month = (date.getMonth() + 1).toString().padStart(2, '0'); // Months are zero-indexed in JavaScript
|
|
|
|
let day = date.getDate().toString().padStart(2, '0');
|
|
|
|
return `${day}/${month}/${year}`;
|
|
|
|
}
|
|
|
|
|
|
|
|
function setRenderRangeText() {
|
|
|
|
var renderRange = document.getElementById('renderRange');
|
|
|
|
var options = calendar.getOptions();
|
|
|
|
var viewName = calendar.getViewName();
|
|
|
|
var html = [];
|
|
|
|
if (viewName === 'day') {
|
2024-01-05 14:10:12 +01:00
|
|
|
html.push(calendar.getDate().toDate().toLocaleString('fr-Fr', {
|
|
|
|
year: 'numeric',
|
|
|
|
month: 'long',
|
|
|
|
day: 'numeric'}));
|
2023-11-14 23:16:25 +01:00
|
|
|
} else if (viewName === 'month' &&
|
|
|
|
(!options.month.visibleWeeksCount || options.month.visibleWeeksCount > 4)) {
|
2024-01-05 14:10:12 +01:00
|
|
|
html.push(
|
|
|
|
calendar.getDate().toDate().toLocaleString('fr-Fr', {
|
|
|
|
year: 'numeric',
|
|
|
|
month: 'long',
|
|
|
|
}));
|
2023-11-14 23:16:25 +01:00
|
|
|
} else {
|
|
|
|
html.push(formatDate(calendar.getDateRangeStart()));
|
|
|
|
html.push(' - ');
|
|
|
|
html.push(formatDate(calendar.getDateRangeEnd()));
|
|
|
|
}
|
|
|
|
renderRange.innerHTML = html.join('');
|
|
|
|
}
|
|
|
|
function onClickNavi(e) {
|
|
|
|
var action = getDataAction(e.target);
|
|
|
|
|
|
|
|
switch (action) {
|
|
|
|
case 'move-prev':
|
|
|
|
calendar.prev();
|
|
|
|
break;
|
|
|
|
case 'move-next':
|
|
|
|
calendar.next();
|
|
|
|
break;
|
|
|
|
case 'move-today':
|
|
|
|
calendar.today();
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// setSchedules();
|
2024-01-05 14:10:12 +01:00
|
|
|
changeCalendarDate();
|
|
|
|
}
|
|
|
|
// Update current URL when date change (newDate=ISO string)
|
2024-01-09 02:03:16 +01:00
|
|
|
function updateParametersInUrl(newParams) {
|
2024-01-05 14:10:12 +01:00
|
|
|
// Parse the current URL
|
|
|
|
const currentUrl = new URL(window.location.href);
|
|
|
|
|
|
|
|
// Access and modify the search parameters
|
|
|
|
const searchParams = currentUrl.searchParams;
|
2024-01-09 02:03:16 +01:00
|
|
|
Object.entries(newParams).forEach(([key, value]) => {
|
|
|
|
searchParams.set(key, value);
|
|
|
|
});
|
2024-01-05 14:10:12 +01:00
|
|
|
|
|
|
|
// Create the new URL
|
|
|
|
const newUrl = `${currentUrl.origin}${currentUrl.pathname}?${searchParams.toString()}`;
|
|
|
|
|
|
|
|
// Update the URL without reloading the page
|
|
|
|
window.history.pushState({ path: newUrl }, '', newUrl);
|
2023-11-14 23:16:25 +01:00
|
|
|
}
|
2024-01-05 14:10:12 +01:00
|
|
|
// Update "current" date (URL and title)
|
|
|
|
function changeCalendarDate() {
|
|
|
|
setRenderRangeText();
|
|
|
|
// current calendar date, ISO, without time
|
2024-01-09 18:48:44 +01:00
|
|
|
const iso_date_start = calendar.getDateRangeStart().toDate().toISOString().split('T')[0];
|
|
|
|
const iso_date_end = calendar.getDateRangeEnd().toDate().toISOString().split('T')[0];
|
|
|
|
const cal_warning = document.querySelector('#cal_warning');
|
|
|
|
updateParametersInUrl( { current_date: iso_date_start } );
|
|
|
|
calendar_control_form.current_date.value = iso_date_start;
|
|
|
|
if ((iso_date_start > "{{ formsemestre.date_fin.isoformat() }}")
|
|
|
|
|| (iso_date_end < "{{ formsemestre.date_debut.isoformat() }}")) {
|
|
|
|
cal_warning.style.display = 'inline-block';
|
|
|
|
} else {
|
|
|
|
cal_warning.style.display = 'none';
|
|
|
|
}
|
2024-01-05 14:10:12 +01:00
|
|
|
}
|
|
|
|
// View menu
|
|
|
|
const dropdown = document.querySelector('.dropdown');
|
|
|
|
const dropbtn = document.querySelector('.dropbtn');
|
|
|
|
const dropdownContent = document.querySelector('.dropdown-content');
|
2024-01-06 14:51:48 +01:00
|
|
|
dropbtn.textContent = "{{views_names[view]}}";
|
2024-01-05 14:10:12 +01:00
|
|
|
|
|
|
|
dropbtn.addEventListener('click', function(event) {
|
|
|
|
dropdownContent.style.display = dropdownContent.style.display === 'block' ? 'none' : 'block';
|
|
|
|
event.stopPropagation();
|
|
|
|
});
|
|
|
|
|
|
|
|
document.querySelectorAll('.dropdown-content a').forEach(item => {
|
|
|
|
item.addEventListener('click', function(e) {
|
|
|
|
e.preventDefault();
|
|
|
|
const selectedText = this.textContent;
|
|
|
|
const selectedView = this.getAttribute('data-view');
|
|
|
|
calendar.changeView(selectedView); // Change the calendar view
|
2024-01-09 02:03:16 +01:00
|
|
|
updateParametersInUrl( { view : selectedView } );
|
|
|
|
setRenderRangeText();
|
2024-01-05 14:10:12 +01:00
|
|
|
dropbtn.textContent = selectedText; // Update the button text
|
|
|
|
dropdownContent.style.display = 'none';
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
const showModulesTitlesCheckbox = document.getElementById('showModulesTitles');
|
|
|
|
showModulesTitlesCheckbox.addEventListener('change', function() {
|
|
|
|
calendar_control_form.show_modules_titles.value = (calendar_control_form.show_modules_titles.value=="1") ? "0" : "1";
|
|
|
|
calendar_control_form.submit();
|
|
|
|
});
|
|
|
|
|
|
|
|
// Close dropdown when clicking outside
|
|
|
|
window.addEventListener('click', function() {
|
|
|
|
if (dropdownContent.style.display === 'block') {
|
|
|
|
dropdownContent.style.display = 'none';
|
|
|
|
}
|
|
|
|
});
|
2023-11-11 18:13:18 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
</script>
|
|
|
|
{% endblock scripts %}
|