Compare commits
9 Commits
3ad0353d9c
...
3ba6c026f2
Author | SHA1 | Date |
---|---|---|
konradm | 3ba6c026f2 | |
konradm | 9faf9bdb96 | |
konradm | 32449be531 | |
konradm | e0ba11b0e9 | |
konradm | a211321c84 | |
bartoszh | 3d62de7867 | |
bartoszh | ab33dc5f75 | |
baiobelfer | 6f7a626db3 | |
baiobelfer | 36524d8012 |
163
css/style.css
163
css/style.css
|
@ -1,42 +1,135 @@
|
||||||
body {
|
/* Podstawowe style dla zakładek */
|
||||||
font-family: Arial, sans-serif;
|
|
||||||
margin: 20px;
|
|
||||||
}
|
|
||||||
table {
|
|
||||||
width: 100%;
|
|
||||||
border-collapse: collapse;
|
|
||||||
}
|
|
||||||
table, th, td {
|
|
||||||
border: 1px solid black;
|
|
||||||
}
|
|
||||||
th, td {
|
|
||||||
padding: 10px;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
th {
|
|
||||||
background-color: #f2f2f2;
|
|
||||||
}
|
|
||||||
input[type="number"], input[type="checkbox"] {
|
|
||||||
transform: scale(1.2);
|
|
||||||
}
|
|
||||||
button {
|
|
||||||
padding: 10px;
|
|
||||||
margin: 10px 5px;
|
|
||||||
font-size: 16px;
|
|
||||||
}
|
|
||||||
#stats {
|
|
||||||
margin-top: 20px;
|
|
||||||
}
|
|
||||||
.tab {
|
.tab {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
.active {
|
|
||||||
|
.tab.active {
|
||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
|
|
||||||
select {
|
/* Style dla przycisków kategorii */
|
||||||
margin-bottom: 10px;
|
.category-buttons {
|
||||||
padding: 5px;
|
margin: 10px 0;
|
||||||
background-color: #f2f2f2;
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.category-buttons button {
|
||||||
|
margin: 5px;
|
||||||
|
padding: 10px 15px;
|
||||||
|
font-size: 16px;
|
||||||
|
cursor: pointer;
|
||||||
|
background-color: #f2f2f2;
|
||||||
|
border: 1px solid #ccc;
|
||||||
|
border-radius: 4px;
|
||||||
|
transition: background-color 0.3s, color 0.3s, border 0.3s;
|
||||||
|
}
|
||||||
|
|
||||||
|
.category-buttons button.active {
|
||||||
|
background-color: #4CAF50;
|
||||||
|
color: white;
|
||||||
|
border: 1px solid #4CAF50;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Stylizacja tabeli */
|
||||||
|
table {
|
||||||
|
width: 100%;
|
||||||
|
border-collapse: collapse;
|
||||||
|
margin-top: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
th, td {
|
||||||
|
border: 1px solid #ddd;
|
||||||
|
padding: 8px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
th {
|
||||||
|
background-color: #f2f2f2;
|
||||||
|
}
|
||||||
|
|
||||||
|
tr:nth-child(even) {
|
||||||
|
background-color: #f9f9f9;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Stylizacja kontenera klasy */
|
||||||
|
.select-class {
|
||||||
|
margin-top: 20px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.select-class select {
|
||||||
|
padding: 5px;
|
||||||
|
font-size: 16px;
|
||||||
|
border: 1px solid #ccc;
|
||||||
|
border-radius: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Stylizacja nagłówków */
|
||||||
|
h1, h2, h3 {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Dodatkowe style dla układu */
|
||||||
|
body {
|
||||||
|
font-family: Arial, sans-serif;
|
||||||
|
margin: 20px;
|
||||||
|
background-color: #fafafa;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Stylizacja stopki */
|
||||||
|
footer.footer {
|
||||||
|
width: 100%;
|
||||||
|
padding: 20px 0;
|
||||||
|
background-color: #fafafa;
|
||||||
|
color: #555;
|
||||||
|
}
|
||||||
|
|
||||||
|
.footer-container {
|
||||||
|
max-width: 1200px;
|
||||||
|
margin: 0 auto;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: stretch;
|
||||||
|
}
|
||||||
|
|
||||||
|
.footer-left, .footer-right {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.footer-left {
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.footer-right {
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
|
||||||
|
.footer-line {
|
||||||
|
border: none;
|
||||||
|
border-top: 2px solid #ddd;
|
||||||
|
margin: 20px 0;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Dodatkowe style dla estetyki */
|
||||||
|
.footer-left p,
|
||||||
|
.footer-right p {
|
||||||
|
margin: 5px 0;
|
||||||
|
font-size: 14px;
|
||||||
|
color: #333;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Stylizacja przycisków ogólna */
|
||||||
|
button {
|
||||||
|
outline: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
button:hover {
|
||||||
|
opacity: 0.8;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Stylizacja checkboxów */
|
||||||
|
input[type="checkbox"] {
|
||||||
|
transform: scale(1.2);
|
||||||
|
cursor: pointer;
|
||||||
}
|
}
|
137
index.html
137
index.html
|
@ -15,6 +15,7 @@
|
||||||
<button onclick="showTab('points')">Ustal punkty</button>
|
<button onclick="showTab('points')">Ustal punkty</button>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<!-- Zakładka "Ustal punkty" -->
|
||||||
<div id="points" class="tab">
|
<div id="points" class="tab">
|
||||||
<h2>Ustal punkty dla kryteriów</h2>
|
<h2>Ustal punkty dla kryteriów</h2>
|
||||||
<table>
|
<table>
|
||||||
|
@ -25,98 +26,140 @@
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
|
<!-- Wiersze dla wszystkich kryteriów -->
|
||||||
<tr>
|
<tr>
|
||||||
<td>Frekwencja 95-100%</td>
|
<td>Frekwencja 95-100%</td>
|
||||||
<td><input type="number" id="frekwencja-punkty" value="30" onchange="calculateStats()"></td>
|
<td><input type="number" id="frekwencja-punkty" value="30" onchange="calculateStats()"></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>Brak godzin nieusprawiedliwionych</td>
|
<td>Brak godzin nieusprawiedliwionych</td>
|
||||||
<td><input type="number" id="brak-godzin-punkty" value="20" onchange="calculateStats()"></td>
|
<td><input type="number" id="brak_godzin-punkty" value="20" onchange="calculateStats()"></td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<!-- Dodaj pozostałe wiersze kryteriów tutaj -->
|
||||||
<tr>
|
<tr>
|
||||||
<td>Minimum 85% frekwencja</td>
|
<td>Minimum 85% frekwencja</td>
|
||||||
<td><input type="number" id="min-85-punkty" value="20" onchange="calculateStats()"></td>
|
<td><input type="number" id="min_85-punkty" value="20" onchange="calculateStats()"></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>Udział w etapie szkolnym olimpiady</td>
|
<td>Etap szkolny</td>
|
||||||
<td><input type="number" id="etap-szkolny-punkty" value="5" onchange="calculateStats()"></td>
|
<td><input type="number" id="etap_szkolny-punkty" value="5" onchange="calculateStats()"></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>Udział w etapie rejonowym olimpiady</td>
|
<td>Etap rejonowy</td>
|
||||||
<td><input type="number" id="etap-rejonowy-punkty" value="5" onchange="calculateStats()"></td>
|
<td><input type="number" id="etap_rejonowy-punkty" value="10" onchange="calculateStats()"></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>Udział w etapie wojewódzkim olimpiady</td>
|
<td>Etap wojewódzki</td>
|
||||||
<td><input type="number" id="etap-wojewodzki-punkty" value="10" onchange="calculateStats()"></td>
|
<td><input type="number" id="etap_wojewodzki-punkty" value="15" onchange="calculateStats()"></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>Udział w etapie ogólnopolskim olimpiady</td>
|
<td>Etap ogólnopolski</td>
|
||||||
<td><input type="number" id="etap-ogolnopolski-punkty" value="10" onchange="calculateStats()"></td>
|
<td><input type="number" id="etap_ogolnopolski-punkty" value="20" onchange="calculateStats()"></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Udział w konkursach</td>
|
||||||
|
<td><input type="number" id="udzial_konkurs-punkty" value="5" onchange="calculateStats()"></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Wyróżnienie w konkursie</td>
|
||||||
|
<td><input type="number" id="wyroznienie_konkurs-punkty" value="10" onchange="calculateStats()"></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Reprezentacja indywidualna</td>
|
||||||
|
<td><input type="number" id="reprezentacja_indywidualna-punkty" value="5" onchange="calculateStats()"></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Reprezentacja zespołowa</td>
|
||||||
|
<td><input type="number" id="reprezentacja_zespolowa-punkty" value="10" onchange="calculateStats()"></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Udział w zawodach</td>
|
||||||
|
<td><input type="number" id="udzial_zawody-punkty" value="15" onchange="calculateStats()"></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Organizacja imprez</td>
|
||||||
|
<td><input type="number" id="organizacja_imprez-punkty" value="10" onchange="calculateStats()"></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Funkcje w klasie</td>
|
||||||
|
<td><input type="number" id="funkcja_klasa-punkty" value="10" onchange="calculateStats()"></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Uroczystości okolicznościowe</td>
|
||||||
|
<td><input type="number" id="uroczystosci-punkty" value="10" onchange="calculateStats()"></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Udział w poczcie sztandarowej</td>
|
||||||
|
<td><input type="number" id="poczta_sztandar-punkty" value="20" onchange="calculateStats()"></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Pomoc nauczycielowi</td>
|
||||||
|
<td><input type="number" id="pomoc_nauczyciel-punkty" value="10" onchange="calculateStats()"></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Wolontariat</td>
|
||||||
|
<td><input type="number" id="wolontariat-punkty" value="10" onchange="calculateStats()"></td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<!-- Zakładka "Kryteria oceny zachowania" -->
|
||||||
<div id="criteria" class="tab active">
|
<div id="criteria" class="tab active">
|
||||||
<h2>Kryteria oceny zachowania - <span id="current-date"></span></h2>
|
<h2>Kryteria oceny zachowania - <span id="current-date"></span></h2>
|
||||||
<div>
|
<div>
|
||||||
<button onclick="changeDay(-1)">Poprzedni Dzień</button>
|
<button onclick="changeDay(-1)">Poprzedni Dzień</button>
|
||||||
<button onclick="changeDay(1)">Następny Dzień</button>
|
<button onclick="changeDay(1)">Następny Dzień</button>
|
||||||
</div>
|
</div>
|
||||||
<div class="select-class">
|
|
||||||
|
<div class="select-class" id="select-class-container">
|
||||||
<p>Wybierz klasę:</p>
|
<p>Wybierz klasę:</p>
|
||||||
<select id="select-class">
|
<select class="select-class" id="select-class-select">
|
||||||
<!-- Opcje zostaną wygenerowane dynamicznie -->
|
<!-- Opcje będą ładowane dynamicznie -->
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
<table>
|
|
||||||
|
<div class="category-buttons">
|
||||||
|
<button data-category="frekwencja" onclick="showInnerTab('frekwencja')">Frekwencja</button>
|
||||||
|
<button data-category="olimpiady" onclick="showInnerTab('olimpiady')">Olimpiady</button>
|
||||||
|
<button data-category="konkursy" onclick="showInnerTab('konkursy')">Konkursy Szkolne</button>
|
||||||
|
<button data-category="reprezentacja" onclick="showInnerTab('reprezentacja')">Reprezentacja Szkoły</button>
|
||||||
|
<button data-category="aktywnosc" onclick="showInnerTab('aktywnosc')">Aktywność</button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Tabela uczniów -->
|
||||||
|
<table id="student-table">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th rowspan="2">Imię i nazwisko</th>
|
<th>Imię i Nazwisko</th>
|
||||||
<th colspan="3">Frekwencja</th>
|
<!-- Dynamiczne kolumny będą generowane przez JavaScript -->
|
||||||
<th colspan="4">Olimpiady</th>
|
|
||||||
<th colspan="2">Konkursy Szkolne</th>
|
|
||||||
<th colspan="3">Reprezentacja Szkoły</th>
|
|
||||||
<th colspan="5">Aktywność</th>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<th>Frekwencja 95-100%</th>
|
|
||||||
<th>Brak godzin nieusprawiedliwionych</th>
|
|
||||||
<th>Minimum 85% frekwencja</th>
|
|
||||||
<th>Etap szkolny</th>
|
|
||||||
<th>Etap rejonowy</th>
|
|
||||||
<th>Etap wojewódzki</th>
|
|
||||||
<th>Etap ogólnopolski</th>
|
|
||||||
<th>Udział w konkursach</th>
|
|
||||||
<th>Wyróżnienie w konkursie</th>
|
|
||||||
<th>Reprezentacja indywidualna</th>
|
|
||||||
<th>Reprezentacja zespołowa</th>
|
|
||||||
<th>Udział w zawodach</th>
|
|
||||||
<th>Organizacja imprez</th>
|
|
||||||
<th>Funkcje w klasie</th>
|
|
||||||
<th>Uroczystości okolicznościowe</th>
|
|
||||||
<th>Udział w poczcie sztandarowym</th>
|
|
||||||
<th>Pomoc nauczycielowi</th>
|
|
||||||
<th>Wolontariat</th>
|
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody id="student-table">
|
<tbody>
|
||||||
<!-- Dane uczniów będą generowane dynamicznie -->
|
<!-- Wiersze uczniów będą generowane przez JavaScript -->
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<!-- Zakładka "Statystyka" -->
|
||||||
<div id="stats" class="tab">
|
<div id="stats" class="tab">
|
||||||
<h2>Statystyka dla wszystkich dni</h2>
|
<h2>Statystyka dla wszystkich dni</h2>
|
||||||
<div id="stats"></div>
|
<div id="stats-output"></div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<footer style="margin: 20px">
|
<footer class="footer">
|
||||||
K. Michalak<br>
|
<div class="footer-left">
|
||||||
F. Kowalski<br>
|
<p>B. Hrynowiecki</p>
|
||||||
Led and Authored by M. Pabiszczak
|
<p>K. Michalak</p>
|
||||||
|
<p>F. Kowalski</p>
|
||||||
|
</div>
|
||||||
|
<hr class="footer-line">
|
||||||
|
<div class="footer-right">
|
||||||
|
<p>Led and Authored by M. Pabiszczak</p>
|
||||||
|
</div>
|
||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
<!-- Przeniesienie skryptu na koniec body -->
|
||||||
<script src="js/script.js"></script>
|
<script src="js/script.js"></script>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
|
|
415
js/script.js
415
js/script.js
|
@ -1,13 +1,53 @@
|
||||||
// Funkcja do wczytania pliku JSON
|
// Definicja kategorii i ich kryteriów
|
||||||
|
const categories = {
|
||||||
|
frekwencja: [
|
||||||
|
{ name: "Frekwencja 95-100%", id: "frekwencja" },
|
||||||
|
{ name: "Brak godzin nieusprawiedliwionych", id: "brak_godzin" },
|
||||||
|
{ name: "Minimum 85% frekwencja", id: "min_85" }
|
||||||
|
],
|
||||||
|
olimpiady: [
|
||||||
|
{ name: "Etap szkolny", id: "etap_szkolny" },
|
||||||
|
{ name: "Etap rejonowy", id: "etap_rejonowy" },
|
||||||
|
{ name: "Etap wojewódzki", id: "etap_wojewodzki" },
|
||||||
|
{ name: "Etap ogólnopolski", id: "etap_ogolnopolski" }
|
||||||
|
],
|
||||||
|
konkursy: [
|
||||||
|
{ name: "Udział w konkursach", id: "udzial_konkurs" },
|
||||||
|
{ name: "Wyróżnienie w konkursie", id: "wyroznienie_konkurs" }
|
||||||
|
],
|
||||||
|
reprezentacja: [
|
||||||
|
{ name: "Reprezentacja indywidualna", id: "reprezentacja_indywidualna" },
|
||||||
|
{ name: "Reprezentacja zespołowa", id: "reprezentacja_zespolowa" },
|
||||||
|
{ name: "Udział w zawodach", id: "udzial_zawody" }
|
||||||
|
],
|
||||||
|
aktywnosc: [
|
||||||
|
{ name: "Organizacja imprez", id: "organizacja_imprez" },
|
||||||
|
{ name: "Funkcje w klasie", id: "funkcja_klasa" },
|
||||||
|
{ name: "Uroczystości okolicznościowe", id: "uroczystosci" },
|
||||||
|
{ name: "Udział w poczcie sztandarowej", id: "poczta_sztandar" },
|
||||||
|
{ name: "Pomoc nauczycielowi", id: "pomoc_nauczyciel" },
|
||||||
|
{ name: "Wolontariat", id: "wolontariat" }
|
||||||
|
]
|
||||||
|
};
|
||||||
|
|
||||||
|
// Zmienne globalne
|
||||||
|
let currentCategory = 'frekwencja';
|
||||||
|
let currentClass = '';
|
||||||
|
let studentsData = [];
|
||||||
|
let currentDay = 0;
|
||||||
|
const baseDate = new Date();
|
||||||
|
|
||||||
|
// Funkcja do wczytywania pliku JSON
|
||||||
async function fetchJSONFile(filePath) {
|
async function fetchJSONFile(filePath) {
|
||||||
try {
|
try {
|
||||||
const response = await fetch(filePath);
|
const response = await fetch(filePath);
|
||||||
if (!response.ok) {
|
if (!response.ok) {
|
||||||
throw new Error(`HTTP error! Status: ${response.status}`);
|
throw new Error(`Błąd HTTP! Status: ${response.status}`);
|
||||||
}
|
}
|
||||||
return await response.json();
|
return await response.json();
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.error("Error fetching JSON file:", error);
|
console.error("Błąd podczas pobierania pliku JSON:", error);
|
||||||
|
return null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -20,77 +60,86 @@ async function loadClasses() {
|
||||||
const classes = await fetchJSONFile(classFilePath);
|
const classes = await fetchJSONFile(classFilePath);
|
||||||
|
|
||||||
if (classes) {
|
if (classes) {
|
||||||
const section_by_id = document.getElementById("select-class");
|
console.log('Załadowane klasy:', classes);
|
||||||
section_by_id.innerHTML = ""; // Wyczyść istniejące opcje
|
|
||||||
|
|
||||||
for (const classInfo of classes) {
|
const selectClass = document.getElementById("select-class-select");
|
||||||
const studentsFilePath = '/data/' + classInfo.file_path;
|
selectClass.innerHTML = ""; // Wyczyść istniejące opcje
|
||||||
const studentsDataForClass = await fetchJSONFile(studentsFilePath);
|
|
||||||
|
|
||||||
const classKey = classInfo.class + "-" + classInfo.group;
|
classes.forEach(classInfo => {
|
||||||
|
const option = document.createElement('option');
|
||||||
|
option.value = classInfo.file_path;
|
||||||
|
option.textContent = `Klasa: ${classInfo.class}`;
|
||||||
|
selectClass.appendChild(option);
|
||||||
|
console.log("Dodano klasę ", classInfo.class, " do SELECT");
|
||||||
|
});
|
||||||
|
|
||||||
// Utwórz i dodaj opcję do selecta
|
// Dodaj nasłuchiwacz zdarzeń na zmianę wyboru klasy
|
||||||
const option = document.createElement("option");
|
selectClass.addEventListener('change', function() {
|
||||||
option.value = classKey;
|
const selectedClassFile = this.value;
|
||||||
option.text = "Klasa: " + classInfo.class + " Grupa: " + classInfo.group;
|
console.log(`Wybrano klasę: ${selectedClassFile}`);
|
||||||
section_by_id.appendChild(option);
|
loadStudents(selectedClassFile);
|
||||||
|
});
|
||||||
|
|
||||||
if (studentsDataForClass) {
|
// Opcjonalnie, ustaw domyślnie pierwszą klasę i załaduj jej uczniów
|
||||||
processClassData(classInfo, studentsDataForClass);
|
if (classes.length > 0) {
|
||||||
}
|
selectClass.selectedIndex = 0;
|
||||||
|
const defaultClassFile = classes[0].file_path;
|
||||||
|
loadStudents(defaultClassFile);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Funkcja do przetwarzania danych o klasach i uczniach
|
// Funkcja do wczytania danych uczniów dla wybranej klasy
|
||||||
function processClassData(classInfo, studentsDataForClass) {
|
async function loadStudents(classFilePath) {
|
||||||
const classKey = classInfo.class + "-" + classInfo.group;
|
if (!classFilePath) {
|
||||||
classData[classKey] = studentsDataForClass;
|
console.warn("Nie wybrano żadnej klasy.");
|
||||||
}
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
// Globalna tablica studentsData
|
const studentsFilePath = `/data/${classFilePath}`;
|
||||||
let studentsData = [];
|
const data = await fetchJSONFile(studentsFilePath);
|
||||||
|
|
||||||
// Nasłuchiwanie na zmianę klasy i ładowanie uczniów
|
if (data && Array.isArray(data.students)) {
|
||||||
document.addEventListener('DOMContentLoaded', function() {
|
console.log(`Uczniowie załadowani z pliku ${classFilePath}:`, data);
|
||||||
loadClasses().then(() => {
|
studentsData = data.students; // Aktualizuj globalną tablicę uczniów
|
||||||
const selectClassElement = document.getElementById('select-class');
|
|
||||||
|
|
||||||
selectClassElement.addEventListener('change', function() {
|
// Inicjalizacja 'behavior' dla każdego ucznia, jeśli jest niezdefiniowany
|
||||||
var selectedClass = this.value;
|
studentsData.forEach(student => {
|
||||||
console.log("Aktualnie wybrana klasa: ", selectedClass);
|
if (!student.behavior) {
|
||||||
|
student.behavior = {};
|
||||||
// Pobierz dane uczniów dla wybranej klasy
|
|
||||||
let classStudentsData = classData[selectedClass];
|
|
||||||
|
|
||||||
if (classStudentsData && classStudentsData.students) {
|
|
||||||
console.log("Dane uczniów dla klasy:", classStudentsData.students);
|
|
||||||
// Zaktualizuj tablicę studentsData
|
|
||||||
studentsData = classStudentsData.students.map(student => ({
|
|
||||||
name: student.first_name + " " + student.last_name,
|
|
||||||
behavior: {}
|
|
||||||
}));
|
|
||||||
// Wygeneruj tabelę
|
|
||||||
generateTable();
|
|
||||||
// Załaduj dane dla aktualnego dnia
|
|
||||||
loadDayData();
|
|
||||||
} else {
|
|
||||||
console.error("Nie znaleziono danych dla klasy: ", selectedClass);
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
// Automatycznie wywołaj 'change' dla pierwszej klasy w select
|
currentClass = classFilePath; // Ustaw aktualną klasę
|
||||||
if (selectClassElement.options.length > 0) {
|
generateTable(currentCategory); // Regeneruj tabelę z aktualną kategorią
|
||||||
selectClassElement.selectedIndex = 0;
|
} else {
|
||||||
selectClassElement.dispatchEvent(new Event('change'));
|
console.error("Błąd: Nie udało się załadować danych uczniów lub dane są niepoprawne.");
|
||||||
}
|
studentsData = []; // Jeśli nie udało się załadować danych, wyczyść tablicę uczniów
|
||||||
});
|
currentClass = '';
|
||||||
});
|
generateTable(currentCategory); // Regeneruj pustą tabelę
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Funkcja do wczytania pliku criteria.json
|
||||||
|
async function loadCriteria() {
|
||||||
|
const criteriaFilePath = '/data/criteria.json';
|
||||||
|
const criteria = await fetchJSONFile(criteriaFilePath);
|
||||||
|
|
||||||
|
console.log("Załadowane kryteria:", criteria);
|
||||||
|
// Implementacja dalszego przetwarzania kryteriów, jeśli jest potrzebna
|
||||||
|
}
|
||||||
|
|
||||||
|
// Funkcja do przełączania głównych zakładek
|
||||||
function showTab(tabName) {
|
function showTab(tabName) {
|
||||||
|
// Ukryj wszystkie główne taby
|
||||||
const tabs = document.querySelectorAll('.tab');
|
const tabs = document.querySelectorAll('.tab');
|
||||||
tabs.forEach(tab => tab.classList.remove('active'));
|
tabs.forEach(tab => tab.classList.remove('active'));
|
||||||
document.getElementById(tabName).classList.add('active');
|
|
||||||
|
// Pokaż wybrany tab
|
||||||
|
const selectedTab = document.getElementById(tabName);
|
||||||
|
if (selectedTab) {
|
||||||
|
selectedTab.classList.add('active');
|
||||||
|
}
|
||||||
|
|
||||||
if (tabName === 'criteria') {
|
if (tabName === 'criteria') {
|
||||||
loadDayData();
|
loadDayData();
|
||||||
|
@ -99,43 +148,35 @@ function showTab(tabName) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function generateTable() {
|
// Funkcja do przełączania kategorii w tabeli uczniów
|
||||||
const table = document.getElementById('student-table');
|
function showInnerTab(category) {
|
||||||
table.innerHTML = '';
|
currentCategory = category;
|
||||||
|
// Generowanie tabeli na podstawie wybranej kategorii
|
||||||
|
generateTable(category);
|
||||||
|
|
||||||
studentsData.forEach(student => {
|
// Podkreślenie aktywnego przycisku
|
||||||
console.log("Przetwarzany student:", student);
|
const buttons = document.querySelectorAll('.category-buttons button');
|
||||||
const studentId = student.name.replace(/\s+/g, '-');
|
buttons.forEach(button => button.classList.remove('active'));
|
||||||
const row = document.createElement('tr');
|
const activeButton = document.querySelector(`.category-buttons button[data-category="${category}"]`);
|
||||||
row.innerHTML = `
|
if (activeButton) {
|
||||||
<td>${student.name}</td>
|
activeButton.classList.add('active');
|
||||||
<td><input type="checkbox" id="frekwencja-${studentId}" onchange="calculateStats()"></td>
|
}
|
||||||
<td><input type="checkbox" id="brak-godzin-${studentId}" onchange="calculateStats()"></td>
|
|
||||||
<td><input type="checkbox" id="min-85-${studentId}" onchange="calculateStats()"></td>
|
|
||||||
<td><input type="checkbox" id="etap-szkolny-${studentId}" onchange="calculateStats()"></td>
|
|
||||||
<td><input type="checkbox" id="etap-rejonowy-${studentId}" onchange="calculateStats()"></td>
|
|
||||||
<td><input type="checkbox" id="etap-wojewodzki-${studentId}" onchange="calculateStats()"></td>
|
|
||||||
<td><input type="checkbox" id="etap-ogolnopolski-${studentId}" onchange="calculateStats()"></td>
|
|
||||||
<td><input type="checkbox" id="udzial-konkurs-${studentId}" onchange="calculateStats()"></td>
|
|
||||||
<td><input type="checkbox" id="wyroznienie-konkurs-${studentId}" onchange="calculateStats()"></td>
|
|
||||||
<td><input type="checkbox" id="reprezentacja-indywidualna-${studentId}" onchange="calculateStats()"></td>
|
|
||||||
<td><input type="checkbox" id="reprezentacja-zespolowa-${studentId}" onchange="calculateStats()"></td>
|
|
||||||
<td><input type="checkbox" id="udzial-zawody-${studentId}" onchange="calculateStats()"></td>
|
|
||||||
<td><input type="checkbox" id="organizacja-imprez-${studentId}" onchange="calculateStats()"></td>
|
|
||||||
<td><input type="checkbox" id="funkcja-klasa-${studentId}" onchange="calculateStats()"></td>
|
|
||||||
<td><input type="checkbox" id="uroczystosci-${studentId}" onchange="calculateStats()"></td>
|
|
||||||
<td><input type="checkbox" id="poczta-sztandar-${studentId}" onchange="calculateStats()"></td>
|
|
||||||
<td><input type="checkbox" id="pomoc-nauczyciel-${studentId}" onchange="calculateStats()"></td>
|
|
||||||
<td><input type="checkbox" id="wolontariat-${studentId}" onchange="calculateStats()"></td>
|
|
||||||
`;
|
|
||||||
table.appendChild(row);
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
let currentDay = 0;
|
// Funkcja, aby ustawić domyślną kategorię i zakładkę
|
||||||
const baseDate = new Date();
|
document.addEventListener("DOMContentLoaded", function() {
|
||||||
|
// Domyślnie pokazujemy kategorię 'frekwencja'
|
||||||
|
showInnerTab('frekwencja');
|
||||||
|
|
||||||
// Zmiana dnia i ładowanie danych
|
// Ustawienie daty na dziś
|
||||||
|
document.getElementById('current-date').innerText = baseDate.toLocaleDateString();
|
||||||
|
|
||||||
|
// Uruchomienie wczytywania klas i kryteriów
|
||||||
|
loadClasses();
|
||||||
|
loadCriteria();
|
||||||
|
});
|
||||||
|
|
||||||
|
// Funkcja do zmiany dnia
|
||||||
function changeDay(direction) {
|
function changeDay(direction) {
|
||||||
saveDayData();
|
saveDayData();
|
||||||
currentDay += direction;
|
currentDay += direction;
|
||||||
|
@ -145,81 +186,73 @@ function changeDay(direction) {
|
||||||
loadDayData();
|
loadDayData();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Funkcja do ładowania danych dnia
|
||||||
function loadDayData() {
|
function loadDayData() {
|
||||||
studentsData.forEach(student => {
|
studentsData.forEach(student => {
|
||||||
const studentId = student.name.replace(/\s+/g, '-');
|
const studentId = `${student.first_name}-${student.last_name}`.replace(/ /g, '-');
|
||||||
const behavior = student.behavior[`day${currentDay}`] || {};
|
const behavior = student.behavior[`day${currentDay}`] || {};
|
||||||
|
|
||||||
document.getElementById(`frekwencja-${studentId}`).checked = behavior.frekwencja || false;
|
// Pobierz kryteria dla aktualnej kategorii
|
||||||
document.getElementById(`brak-godzin-${studentId}`).checked = behavior.brak_godzin || false;
|
const categoryColumns = categories[currentCategory];
|
||||||
document.getElementById(`min-85-${studentId}`).checked = behavior.min_85 || false;
|
categoryColumns.forEach(column => {
|
||||||
document.getElementById(`etap-szkolny-${studentId}`).checked = behavior.etap_szkolny || false;
|
const checkbox = document.getElementById(`${column.id}-${studentId}`);
|
||||||
document.getElementById(`etap-rejonowy-${studentId}`).checked = behavior.etap_rejonowy || false;
|
if (checkbox) {
|
||||||
document.getElementById(`etap-wojewodzki-${studentId}`).checked = behavior.etap_wojewodzki || false;
|
checkbox.checked = behavior[column.id] || false;
|
||||||
document.getElementById(`etap-ogolnopolski-${studentId}`).checked = behavior.etap_ogolnopolski || false;
|
}
|
||||||
document.getElementById(`udzial-konkurs-${studentId}`).checked = behavior.udzial_konkurs || false;
|
});
|
||||||
document.getElementById(`wyroznienie-konkurs-${studentId}`).checked = behavior.wyroznienie_konkurs || false;
|
|
||||||
document.getElementById(`reprezentacja-indywidualna-${studentId}`).checked = behavior.reprezentacja_indywidualna || false;
|
|
||||||
document.getElementById(`reprezentacja-zespolowa-${studentId}`).checked = behavior.reprezentacja_zespolowa || false;
|
|
||||||
document.getElementById(`udzial-zawody-${studentId}`).checked = behavior.udzial_zawody || false;
|
|
||||||
document.getElementById(`organizacja-imprez-${studentId}`).checked = behavior.organizacja_imprez || false;
|
|
||||||
document.getElementById(`funkcja-klasa-${studentId}`).checked = behavior.funkcja_klasa || false;
|
|
||||||
document.getElementById(`uroczystosci-${studentId}`).checked = behavior.uroczystosci || false;
|
|
||||||
document.getElementById(`poczta-sztandar-${studentId}`).checked = behavior.poczta_sztandar || false;
|
|
||||||
document.getElementById(`pomoc-nauczyciel-${studentId}`).checked = behavior.pomoc_nauczyciel || false;
|
|
||||||
document.getElementById(`wolontariat-${studentId}`).checked = behavior.wolontariat || false;
|
|
||||||
});
|
});
|
||||||
|
|
||||||
calculateStats();
|
calculateStats();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Funkcja do zapisywania danych dnia
|
||||||
function saveDayData() {
|
function saveDayData() {
|
||||||
studentsData.forEach(student => {
|
studentsData.forEach(student => {
|
||||||
const studentId = student.name.replace(/\s+/g, '-');
|
const studentId = `${student.first_name}-${student.last_name}`.replace(/ /g, '-');
|
||||||
const behavior = {
|
|
||||||
frekwencja: document.getElementById(`frekwencja-${studentId}`).checked,
|
// Upewnij się, że 'behavior' jest zdefiniowany
|
||||||
brak_godzin: document.getElementById(`brak-godzin-${studentId}`).checked,
|
if (!student.behavior) {
|
||||||
min_85: document.getElementById(`min-85-${studentId}`).checked,
|
student.behavior = {};
|
||||||
etap_szkolny: document.getElementById(`etap-szkolny-${studentId}`).checked,
|
}
|
||||||
etap_rejonowy: document.getElementById(`etap-rejonowy-${studentId}`).checked,
|
|
||||||
etap_wojewodzki: document.getElementById(`etap-wojewodzki-${studentId}`).checked,
|
let behavior = student.behavior[`day${currentDay}`] || {};
|
||||||
etap_ogolnopolski: document.getElementById(`etap-ogolnopolski-${studentId}`).checked,
|
|
||||||
udzial_konkurs: document.getElementById(`udzial-konkurs-${studentId}`).checked,
|
const categoryColumns = categories[currentCategory];
|
||||||
wyroznienie_konkurs: document.getElementById(`wyroznienie-konkurs-${studentId}`).checked,
|
|
||||||
reprezentacja_indywidualna: document.getElementById(`reprezentacja-indywidualna-${studentId}`).checked,
|
categoryColumns.forEach(column => {
|
||||||
reprezentacja_zespolowa: document.getElementById(`reprezentacja-zespolowa-${studentId}`).checked,
|
const checkbox = document.getElementById(`${column.id}-${studentId}`);
|
||||||
udzial_zawody: document.getElementById(`udzial-zawody-${studentId}`).checked,
|
if (checkbox) {
|
||||||
organizacja_imprez: document.getElementById(`organizacja-imprez-${studentId}`).checked,
|
behavior[column.id] = checkbox.checked;
|
||||||
funkcja_klasa: document.getElementById(`funkcja-klasa-${studentId}`).checked,
|
}
|
||||||
uroczystosci: document.getElementById(`uroczystosci-${studentId}`).checked,
|
});
|
||||||
poczta_sztandar: document.getElementById(`poczta-sztandar-${studentId}`).checked,
|
|
||||||
pomoc_nauczyciel: document.getElementById(`pomoc-nauczyciel-${studentId}`).checked,
|
|
||||||
wolontariat: document.getElementById(`wolontariat-${studentId}`).checked
|
|
||||||
};
|
|
||||||
|
|
||||||
student.behavior[`day${currentDay}`] = behavior;
|
student.behavior[`day${currentDay}`] = behavior;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Funkcja do obliczania statystyk
|
||||||
function calculateStats() {
|
function calculateStats() {
|
||||||
const frekwencjaPoints = parseInt(document.getElementById('frekwencja-punkty').value);
|
// Pobieranie punktów z zakładki "Ustal punkty"
|
||||||
const brakGodzinPoints = parseInt(document.getElementById('brak-godzin-punkty').value);
|
const points = {
|
||||||
const min85Points = parseInt(document.getElementById('min-85-punkty').value);
|
frekwencja: parseInt(document.getElementById('frekwencja-punkty').value) || 0,
|
||||||
const etapSzkolnyPoints = parseInt(document.getElementById('etap-szkolny-punkty').value);
|
brak_godzin: parseInt(document.getElementById('brak_godzin-punkty').value) || 0,
|
||||||
const etapRejonowyPoints = parseInt(document.getElementById('etap-rejonowy-punkty').value);
|
min_85: parseInt(document.getElementById('min_85-punkty').value) || 0,
|
||||||
const etapWojewodzkiPoints = parseInt(document.getElementById('etap-wojewodzki-punkty').value);
|
etap_szkolny: parseInt(document.getElementById('etap_szkolny-punkty').value) || 5,
|
||||||
const etapOgolnopolskiPoints = parseInt(document.getElementById('etap-ogolnopolski-punkty').value);
|
etap_rejonowy: parseInt(document.getElementById('etap_rejonowy-punkty').value) || 10,
|
||||||
const udzialKonkursPoints = 5; // stała wartość
|
etap_wojewodzki: parseInt(document.getElementById('etap_wojewodzki-punkty').value) || 15,
|
||||||
const wyroznienieKonkursPoints = 10; // stała wartość
|
etap_ogolnopolski: parseInt(document.getElementById('etap_ogolnopolski-punkty').value) || 20,
|
||||||
const reprezentacjaIndPoints = 5; // stała wartość
|
udzial_konkurs: parseInt(document.getElementById('udzial_konkurs-punkty').value) || 5,
|
||||||
const reprezentacjaZesPoints = 10; // stała wartość
|
wyroznienie_konkurs: parseInt(document.getElementById('wyroznienie_konkurs-punkty').value) || 10,
|
||||||
const udzialZawodyPoints = 15; // stała wartość
|
reprezentacja_indywidualna: parseInt(document.getElementById('reprezentacja_indywidualna-punkty').value) || 5,
|
||||||
const organizacjaImprezPoints = 10; // stała wartość
|
reprezentacja_zespolowa: parseInt(document.getElementById('reprezentacja_zespolowa-punkty').value) || 10,
|
||||||
const funkcjaKlasyPoints = 10; // stała wartość
|
udzial_zawody: parseInt(document.getElementById('udzial_zawody-punkty').value) || 15,
|
||||||
const uroczystosciPoints = 10; // stała wartość
|
organizacja_imprez: parseInt(document.getElementById('organizacja_imprez-punkty').value) || 10,
|
||||||
const pocztaSztandarPoints = 20; // stała wartość
|
funkcja_klasa: parseInt(document.getElementById('funkcja_klasa-punkty').value) || 10,
|
||||||
const pomocNauczycielaPoints = 10; // stała wartość
|
uroczystosci: parseInt(document.getElementById('uroczystosci-punkty').value) || 10,
|
||||||
const wolontariatPoints = 10; // stała wartość
|
poczta_sztandar: parseInt(document.getElementById('poczta_sztandar-punkty').value) || 20,
|
||||||
|
pomoc_nauczyciel: parseInt(document.getElementById('pomoc_nauczyciel-punkty').value) || 10,
|
||||||
|
wolontariat: parseInt(document.getElementById('wolontariat-punkty').value) || 10
|
||||||
|
};
|
||||||
|
|
||||||
let stats = '';
|
let stats = '';
|
||||||
|
|
||||||
|
@ -230,34 +263,22 @@ function calculateStats() {
|
||||||
const behavior = student.behavior[day];
|
const behavior = student.behavior[day];
|
||||||
|
|
||||||
let dayPoints = 0;
|
let dayPoints = 0;
|
||||||
if (behavior.frekwencja) dayPoints += frekwencjaPoints;
|
for (const [criterion, value] of Object.entries(behavior)) {
|
||||||
if (behavior.brak_godzin) dayPoints += brakGodzinPoints;
|
if (value && points[criterion]) {
|
||||||
if (behavior.min_85) dayPoints += min85Points;
|
dayPoints += points[criterion];
|
||||||
if (behavior.etap_szkolny) dayPoints += etapSzkolnyPoints;
|
}
|
||||||
if (behavior.etap_rejonowy) dayPoints += etapRejonowyPoints;
|
}
|
||||||
if (behavior.etap_wojewodzki) dayPoints += etapWojewodzkiPoints;
|
|
||||||
if (behavior.etap_ogolnopolski) dayPoints += etapOgolnopolskiPoints;
|
|
||||||
if (behavior.udzial_konkurs) dayPoints += udzialKonkursPoints;
|
|
||||||
if (behavior.wyroznienie_konkurs) dayPoints += wyroznienieKonkursPoints;
|
|
||||||
if (behavior.reprezentacja_indywidualna) dayPoints += reprezentacjaIndPoints;
|
|
||||||
if (behavior.reprezentacja_zespolowa) dayPoints += reprezentacjaZesPoints;
|
|
||||||
if (behavior.udzial_zawody) dayPoints += udzialZawodyPoints;
|
|
||||||
if (behavior.organizacja_imprez) dayPoints += organizacjaImprezPoints;
|
|
||||||
if (behavior.funkcja_klasa) dayPoints += funkcjaKlasyPoints;
|
|
||||||
if (behavior.uroczystosci) dayPoints += uroczystosciPoints;
|
|
||||||
if (behavior.poczta_sztandar) dayPoints += pocztaSztandarPoints;
|
|
||||||
if (behavior.pomoc_nauczyciel) dayPoints += pomocNauczycielaPoints;
|
|
||||||
if (behavior.wolontariat) dayPoints += wolontariatPoints;
|
|
||||||
|
|
||||||
totalPoints += dayPoints;
|
totalPoints += dayPoints;
|
||||||
});
|
});
|
||||||
|
|
||||||
stats += `${student.name}: ${totalPoints} punktów (${getGrade(totalPoints)})\n`;
|
stats += `${student.first_name} ${student.last_name}: ${totalPoints} punktów (${getGrade(totalPoints)})\n`;
|
||||||
});
|
});
|
||||||
|
|
||||||
document.getElementById('stats').innerText = stats;
|
document.getElementById('stats-output').innerText = stats;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Funkcja do przypisywania ocen na podstawie punktów
|
||||||
function getGrade(points) {
|
function getGrade(points) {
|
||||||
if (points >= 250) return "Wzorowe";
|
if (points >= 250) return "Wzorowe";
|
||||||
if (points >= 180) return "Bardzo dobre";
|
if (points >= 180) return "Bardzo dobre";
|
||||||
|
@ -267,5 +288,61 @@ function getGrade(points) {
|
||||||
return "Naganne";
|
return "Naganne";
|
||||||
}
|
}
|
||||||
|
|
||||||
// Ustawienie daty na dziś
|
// Funkcja do generowania tabeli uczniów na podstawie wybranej kategorii
|
||||||
document.getElementById('current-date').innerText = baseDate.toLocaleDateString();
|
function generateTable(category) {
|
||||||
|
const table = document.getElementById('student-table');
|
||||||
|
const thead = table.querySelector('thead tr');
|
||||||
|
const tbody = table.querySelector('tbody');
|
||||||
|
|
||||||
|
// Wyczyść istniejące nagłówki i wiersze
|
||||||
|
thead.innerHTML = '';
|
||||||
|
tbody.innerHTML = '';
|
||||||
|
|
||||||
|
// Dodaj nagłówek 'Imię i Nazwisko'
|
||||||
|
const thName = document.createElement('th');
|
||||||
|
thName.textContent = "Imię i Nazwisko";
|
||||||
|
thead.appendChild(thName);
|
||||||
|
|
||||||
|
// Pobierz kolumny dla wybranej kategorii
|
||||||
|
const categoryColumns = categories[category];
|
||||||
|
|
||||||
|
// Dodaj nagłówki dla kryteriów w kategorii
|
||||||
|
categoryColumns.forEach(column => {
|
||||||
|
const th = document.createElement('th');
|
||||||
|
th.textContent = column.name;
|
||||||
|
thead.appendChild(th);
|
||||||
|
});
|
||||||
|
|
||||||
|
// Generuj wiersze dla uczniów
|
||||||
|
studentsData.forEach(student => {
|
||||||
|
const row = document.createElement('tr');
|
||||||
|
|
||||||
|
// Komórka z imieniem i nazwiskiem
|
||||||
|
const tdName = document.createElement('td');
|
||||||
|
tdName.textContent = `${student.first_name} ${student.last_name}`;
|
||||||
|
row.appendChild(tdName);
|
||||||
|
|
||||||
|
// Upewnij się, że 'behavior' jest zdefiniowany
|
||||||
|
if (!student.behavior) {
|
||||||
|
student.behavior = {};
|
||||||
|
}
|
||||||
|
|
||||||
|
// Komórki z checkboxami dla kryteriów
|
||||||
|
categoryColumns.forEach(column => {
|
||||||
|
const td = document.createElement('td');
|
||||||
|
const checkbox = document.createElement('input');
|
||||||
|
checkbox.type = 'checkbox';
|
||||||
|
const studentId = `${student.first_name}-${student.last_name}`.replace(/ /g, '-');
|
||||||
|
checkbox.id = `${column.id}-${studentId}`;
|
||||||
|
checkbox.onchange = calculateStats;
|
||||||
|
|
||||||
|
// Ustawienie stanu checkboxa na podstawie zapisanych danych
|
||||||
|
checkbox.checked = student.behavior[`day${currentDay}`]?.[column.id] || false;
|
||||||
|
|
||||||
|
td.appendChild(checkbox);
|
||||||
|
row.appendChild(td);
|
||||||
|
});
|
||||||
|
|
||||||
|
tbody.appendChild(row);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
a4dd89352b730d2ef7a3eff72ab98dbc2b7e8d6b
|
|
|
@ -1,7 +0,0 @@
|
||||||
<div>
|
|
||||||
<h2>Kryteria Weryfikacyjne</h2>
|
|
||||||
<ul id="criteria-list">
|
|
||||||
<!-- Kryteria weryfikacyjne będą generowane dynamicznie -->
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
|
|
|
@ -1,51 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
||||||
<title>Behavior Assessment Dashboard</title>
|
|
||||||
<link rel="stylesheet" href="styles.css">
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<h1>Behavior Assessment Dashboard</h1>
|
|
||||||
|
|
||||||
<div class="filters">
|
|
||||||
<!-- Wybór roli -->
|
|
||||||
<label for="role">Select Role:</label>
|
|
||||||
<select id="role">
|
|
||||||
<option value="teacher">Teacher</option>
|
|
||||||
<option value="homeroom_teacher">Homeroom Teacher</option>
|
|
||||||
<option value="principal">Principal</option>
|
|
||||||
<option value="student">Student (Self-Assessment)</option>
|
|
||||||
</select>
|
|
||||||
|
|
||||||
<!-- Wybór osoby -->
|
|
||||||
<label for="person">Select Person:</label>
|
|
||||||
<select id="person">
|
|
||||||
<!-- Osoby będą generowane dynamicznie na podstawie roli -->
|
|
||||||
</select>
|
|
||||||
|
|
||||||
<!-- Wybór kategorii -->
|
|
||||||
<label for="category">Select Category:</label>
|
|
||||||
<select id="category">
|
|
||||||
<!-- Kategorie będą generowane dynamicznie na podstawie roli -->
|
|
||||||
</select>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<h2>Criteria Table</h2>
|
|
||||||
<table id="criteria-table">
|
|
||||||
<thead>
|
|
||||||
<tr>
|
|
||||||
<th>Student</th>
|
|
||||||
<!-- Nagłówki dla kryteriów zostaną dodane dynamicznie -->
|
|
||||||
</tr>
|
|
||||||
</thead>
|
|
||||||
<tbody>
|
|
||||||
<!-- Wiersze uczniów i kryteriów zostaną dodane dynamicznie -->
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
|
|
||||||
<script src="app.js"></script>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
|
|
|
@ -1,12 +0,0 @@
|
||||||
<div style="background-color: #4CAF50; color: white; padding: 10px;">
|
|
||||||
<h1>Ocena Zachowania</h1>
|
|
||||||
<p>Zalogowany jako: <span id="user-role">Nauczyciel</span></p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
// Skrypt do ustawiania roli użytkownika po zalogowaniu
|
|
||||||
// Można pobrać rolę z sesji po wdrożeniu API
|
|
||||||
const userRole = 'Nauczyciel'; // Tymczasowe dane
|
|
||||||
document.getElementById('user-role').innerText = userRole;
|
|
||||||
</script>
|
|
||||||
|
|
|
@ -1,27 +0,0 @@
|
||||||
<div>
|
|
||||||
<h2>Statystyki i Ustalanie Wag</h2>
|
|
||||||
<!-- Wprowadź elementy do zarządzania wagami, np. suwaki lub pola numeryczne -->
|
|
||||||
<label for="waga-pomoc">Pomoc nauczycielowi:</label>
|
|
||||||
<input type="number" id="waga-pomoc" value="10"><br>
|
|
||||||
|
|
||||||
<label for="waga-spoznienie">Spóźnienie:</label>
|
|
||||||
<input type="number" id="waga-spoznienie" value="-5"><br>
|
|
||||||
|
|
||||||
<!-- Więcej wag dla innych kryteriów -->
|
|
||||||
|
|
||||||
<h3>Statystyki dla uczniów</h3>
|
|
||||||
<!-- Tabela statystyk dla uczniów -->
|
|
||||||
<table>
|
|
||||||
<thead>
|
|
||||||
<tr>
|
|
||||||
<th>Uczeń</th>
|
|
||||||
<th>Punkty</th>
|
|
||||||
<th>Ocena</th>
|
|
||||||
</tr>
|
|
||||||
</thead>
|
|
||||||
<tbody>
|
|
||||||
<!-- Dane będą dynamicznie ładowane -->
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
</div>
|
|
||||||
|
|
Loading…
Reference in New Issue