2024-10-17 10:47:01 +00:00
|
|
|
// 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" }
|
|
|
|
]
|
|
|
|
};
|
|
|
|
|
|
|
|
// Zmienna przechowująca aktualną kategorię
|
|
|
|
let currentCategory = 'frekwencja';
|
|
|
|
|
|
|
|
// Funkcja do wczytywania pliku JSON
|
2024-10-16 10:18:43 +00:00
|
|
|
async function fetchJSONFile(filePath) {
|
|
|
|
try {
|
|
|
|
const response = await fetch(filePath);
|
|
|
|
if (!response.ok) {
|
|
|
|
throw new Error(`HTTP error! Status: ${response.status}`);
|
|
|
|
}
|
|
|
|
return await response.json();
|
|
|
|
} catch (error) {
|
|
|
|
console.error("Error fetching JSON file:", error);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Funkcja do wczytania pliku class.json
|
|
|
|
async function loadClasses() {
|
|
|
|
const classFilePath = '/data/class.json';
|
|
|
|
const classes = await fetchJSONFile(classFilePath);
|
|
|
|
|
|
|
|
if (classes) {
|
|
|
|
console.log('Classes loaded:', classes);
|
|
|
|
|
2024-10-17 10:47:01 +00:00
|
|
|
let section_HTML = "";
|
2024-10-16 10:42:08 +00:00
|
|
|
|
2024-10-16 10:18:43 +00:00
|
|
|
// Iterowanie po wszystkich klasach i wczytywanie plików z danymi uczniów
|
|
|
|
for (const classInfo of classes) {
|
2024-10-17 10:47:01 +00:00
|
|
|
const studentsFilePath = '/data/' + classInfo.file_path;
|
|
|
|
const studentsDataFromFile = await fetchJSONFile(studentsFilePath);
|
2024-10-16 10:18:43 +00:00
|
|
|
|
2024-10-16 10:42:08 +00:00
|
|
|
// Wczytywanie klas do elementu select w html
|
2024-10-17 10:47:01 +00:00
|
|
|
const selectClass = document.getElementById("select-class-select");
|
2024-10-16 10:42:08 +00:00
|
|
|
|
|
|
|
if (!section_HTML.includes(classInfo.class)) {
|
2024-10-17 10:47:01 +00:00
|
|
|
const option = document.createElement('option');
|
|
|
|
option.value = classInfo.class;
|
|
|
|
option.textContent = `Klasa: ${classInfo.class}`;
|
|
|
|
selectClass.appendChild(option);
|
|
|
|
console.log("DODANO KLASE ", classInfo.class, " DO SELECT");
|
|
|
|
section_HTML += classInfo.class;
|
2024-10-16 10:42:08 +00:00
|
|
|
}
|
|
|
|
|
2024-10-17 10:47:01 +00:00
|
|
|
if (studentsDataFromFile) {
|
|
|
|
console.log(`Students loaded for class ${classInfo.class}:`, studentsDataFromFile);
|
|
|
|
// Możesz tutaj przechowywać dane uczniów dla poszczególnych klas
|
|
|
|
// Na przykład, dodając je do odpowiedniego obiektu lub tablicy
|
2024-10-16 10:18:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-10-17 10:47:01 +00:00
|
|
|
// Funkcja do wczytania pliku criteria.json
|
|
|
|
async function loadCriteria() {
|
2024-10-16 12:53:18 +00:00
|
|
|
const criteriaFilePath = '/data/criteria.json';
|
2024-10-16 12:56:56 +00:00
|
|
|
const criteria = await fetchJSONFile(criteriaFilePath);
|
2024-10-16 12:53:18 +00:00
|
|
|
|
2024-10-17 10:47:01 +00:00
|
|
|
console.log("Criteria loaded:", criteria);
|
|
|
|
// Implementacja dalszego przetwarzania kryteriów, jeśli jest potrzebna
|
2024-10-16 10:18:43 +00:00
|
|
|
}
|
|
|
|
|
2024-10-17 10:47:01 +00:00
|
|
|
// Dane uczniów (przykładowe, powinny być ładowane z plików JSON)
|
2024-10-16 09:24:57 +00:00
|
|
|
const studentsData = [
|
|
|
|
{ name: "Jan Kowalski", behavior: {} },
|
|
|
|
{ name: "Anna Nowak", behavior: {} },
|
|
|
|
{ name: "Piotr Wiśniewski", behavior: {} },
|
|
|
|
{ name: "Katarzyna Zielińska", behavior: {} }
|
|
|
|
];
|
|
|
|
|
2024-10-17 10:47:01 +00:00
|
|
|
let currentDay = 0;
|
|
|
|
const baseDate = new Date();
|
|
|
|
|
|
|
|
// Funkcja do przełączania głównych zakładek
|
2024-10-16 09:24:57 +00:00
|
|
|
function showTab(tabName) {
|
2024-10-17 10:47:01 +00:00
|
|
|
// Ukryj wszystkie główne taby
|
2024-10-16 09:24:57 +00:00
|
|
|
const tabs = document.querySelectorAll('.tab');
|
|
|
|
tabs.forEach(tab => tab.classList.remove('active'));
|
2024-10-17 10:47:01 +00:00
|
|
|
|
|
|
|
// Pokaż wybrany tab
|
|
|
|
const selectedTab = document.getElementById(tabName);
|
|
|
|
if (selectedTab) {
|
|
|
|
selectedTab.classList.add('active');
|
|
|
|
}
|
2024-10-16 09:24:57 +00:00
|
|
|
|
|
|
|
if (tabName === 'criteria') {
|
|
|
|
loadDayData();
|
|
|
|
} else if (tabName === 'points') {
|
|
|
|
calculateStats();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-10-17 10:47:01 +00:00
|
|
|
// Funkcja do przełączania kategorii w tabeli uczniów
|
|
|
|
function showInnerTab(category) {
|
|
|
|
currentCategory = category;
|
|
|
|
// Generowanie tabeli na podstawie wybranej kategorii
|
|
|
|
generateTable(category);
|
|
|
|
|
|
|
|
// Podkreślenie aktywnego przycisku
|
|
|
|
const buttons = document.querySelectorAll('.category-buttons button');
|
|
|
|
buttons.forEach(button => button.classList.remove('active'));
|
|
|
|
const activeButton = document.querySelector(`.category-buttons button[data-category="${category}"]`);
|
|
|
|
if (activeButton) {
|
|
|
|
activeButton.classList.add('active');
|
|
|
|
}
|
2024-10-16 10:18:43 +00:00
|
|
|
}
|
|
|
|
|
2024-10-17 10:47:01 +00:00
|
|
|
// Funkcja, aby ustawić domyślną kategorię i zakładkę
|
|
|
|
document.addEventListener("DOMContentLoaded", function() {
|
|
|
|
showInnerTab('frekwencja'); // Pokaż domyślnie zakładkę Frekwencja
|
2024-10-16 10:18:43 +00:00
|
|
|
|
2024-10-17 10:47:01 +00:00
|
|
|
// Ustawienie daty na dziś
|
|
|
|
document.getElementById('current-date').innerText = baseDate.toLocaleDateString();
|
2024-10-16 10:18:43 +00:00
|
|
|
|
2024-10-17 10:47:01 +00:00
|
|
|
// Uruchomienie wczytywania klas i kryteriów
|
|
|
|
loadClasses();
|
|
|
|
loadCriteria();
|
|
|
|
});
|
2024-10-16 09:24:57 +00:00
|
|
|
|
2024-10-17 10:47:01 +00:00
|
|
|
// Funkcja do zmiany dnia
|
2024-10-16 09:24:57 +00:00
|
|
|
function changeDay(direction) {
|
|
|
|
saveDayData();
|
|
|
|
currentDay += direction;
|
|
|
|
const newDate = new Date(baseDate);
|
|
|
|
newDate.setDate(baseDate.getDate() + currentDay);
|
|
|
|
document.getElementById('current-date').innerText = newDate.toLocaleDateString();
|
|
|
|
loadDayData();
|
|
|
|
}
|
|
|
|
|
2024-10-17 10:47:01 +00:00
|
|
|
// Funkcja do ładowania danych dnia
|
2024-10-16 09:24:57 +00:00
|
|
|
function loadDayData() {
|
2024-10-17 10:47:01 +00:00
|
|
|
// Wczytaj dane dla aktualnego dnia, jeśli istnieją
|
|
|
|
// Możesz tu zaimplementować dodatkową logikę, jeśli potrzebujesz
|
2024-10-16 09:24:57 +00:00
|
|
|
calculateStats();
|
|
|
|
}
|
|
|
|
|
2024-10-17 10:47:01 +00:00
|
|
|
// Funkcja do zapisywania danych dnia
|
2024-10-16 09:24:57 +00:00
|
|
|
function saveDayData() {
|
|
|
|
studentsData.forEach(student => {
|
2024-10-17 10:47:01 +00:00
|
|
|
const studentId = student.name.replace(/ /g, '-');
|
|
|
|
const behavior = student.behavior[`day${currentDay}`] || {};
|
|
|
|
|
|
|
|
const categoryColumns = categories[currentCategory];
|
|
|
|
|
|
|
|
categoryColumns.forEach(column => {
|
|
|
|
behavior[column.id] = document.getElementById(`${column.id}-${studentId}`).checked;
|
|
|
|
});
|
2024-10-16 09:24:57 +00:00
|
|
|
|
|
|
|
student.behavior[`day${currentDay}`] = behavior;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2024-10-17 10:47:01 +00:00
|
|
|
// Funkcja do obliczania statystyk
|
2024-10-16 09:24:57 +00:00
|
|
|
function calculateStats() {
|
2024-10-17 10:47:01 +00:00
|
|
|
const frekwencjaPoints = parseInt(document.getElementById('frekwencja-punkty').value) || 0;
|
|
|
|
const brakGodzinPoints = parseInt(document.getElementById('brak-godzin-punkty').value) || 0;
|
|
|
|
const min85Points = parseInt(document.getElementById('min-85-punkty').value) || 0;
|
|
|
|
const etapSzkolnyPoints = parseInt(document.getElementById('etap-szkolny-punkty')?.value) || 5;
|
|
|
|
const etapRejonowyPoints = parseInt(document.getElementById('etap-rejonowy-punkty')?.value) || 10;
|
|
|
|
const etapWojewodzkiPoints = parseInt(document.getElementById('etap-wojewodzki-punkty')?.value) || 15;
|
|
|
|
const etapOgolnopolskiPoints = parseInt(document.getElementById('etap-ogolnopolski-punkty')?.value) || 20;
|
|
|
|
const udzialKonkursPoints = parseInt(document.getElementById('udzial-konkurs-punkty')?.value) || 5;
|
|
|
|
const wyroznienieKonkursPoints = parseInt(document.getElementById('wyroznienie-konkurs-punkty')?.value) || 10;
|
|
|
|
const reprezentacjaIndPoints = parseInt(document.getElementById('reprezentacja-indywidualna-punkty')?.value) || 5;
|
|
|
|
const reprezentacjaZesPoints = parseInt(document.getElementById('reprezentacja-zespolowa-punkty')?.value) || 10;
|
|
|
|
const udzialZawodyPoints = parseInt(document.getElementById('udzial-zawody-punkty')?.value) || 15;
|
|
|
|
const organizacjaImprezPoints = parseInt(document.getElementById('organizacja-imprez-punkty')?.value) || 10;
|
|
|
|
const funkcjaKlasyPoints = parseInt(document.getElementById('funkcja-klasa-punkty')?.value) || 10;
|
|
|
|
const uroczystosciPoints = parseInt(document.getElementById('uroczystosci-punkty')?.value) || 10;
|
|
|
|
const pocztaSztandarPoints = parseInt(document.getElementById('poczta-sztandar-punkty')?.value) || 20;
|
|
|
|
const pomocNauczycielaPoints = parseInt(document.getElementById('pomoc-nauczyciel-punkty')?.value) || 10;
|
|
|
|
const wolontariatPoints = parseInt(document.getElementById('wolontariat-punkty')?.value) || 10;
|
2024-10-16 09:24:57 +00:00
|
|
|
|
|
|
|
let stats = '';
|
|
|
|
|
|
|
|
studentsData.forEach(student => {
|
|
|
|
let totalPoints = 0;
|
|
|
|
|
|
|
|
Object.keys(student.behavior).forEach(day => {
|
|
|
|
const behavior = student.behavior[day];
|
|
|
|
|
|
|
|
let dayPoints = 0; // Startowa liczba punktów
|
|
|
|
if (behavior.frekwencja) dayPoints += frekwencjaPoints;
|
|
|
|
if (behavior.brak_godzin) dayPoints += brakGodzinPoints;
|
|
|
|
if (behavior.min_85) dayPoints += min85Points;
|
|
|
|
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;
|
2024-10-17 10:47:01 +00:00
|
|
|
if (behavior.pomoc_nauczyciel) dayPoints += pomocNauczycielaPoints;
|
2024-10-16 09:24:57 +00:00
|
|
|
if (behavior.wolontariat) dayPoints += wolontariatPoints;
|
|
|
|
|
|
|
|
totalPoints += dayPoints;
|
|
|
|
});
|
|
|
|
|
|
|
|
stats += `${student.name}: ${totalPoints} punktów (${getGrade(totalPoints)})\n`;
|
|
|
|
});
|
|
|
|
|
2024-10-17 10:47:01 +00:00
|
|
|
document.getElementById('stats-output').innerText = stats;
|
2024-10-16 09:24:57 +00:00
|
|
|
}
|
|
|
|
|
2024-10-17 10:47:01 +00:00
|
|
|
// Funkcja do przypisywania ocen na podstawie punktów
|
2024-10-16 09:24:57 +00:00
|
|
|
function getGrade(points) {
|
|
|
|
if (points >= 250) return "Wzorowe";
|
|
|
|
if (points >= 180) return "Bardzo dobre";
|
|
|
|
if (points >= 100) return "Dobre";
|
|
|
|
if (points >= 50) return "Poprawne";
|
|
|
|
if (points >= 0) return "Nieodpowiednie";
|
|
|
|
return "Naganne";
|
|
|
|
}
|
|
|
|
|
2024-10-17 10:47:01 +00:00
|
|
|
// Funkcja do generowania tabeli uczniów na podstawie wybranej kategorii
|
|
|
|
function generateTable(category) {
|
|
|
|
const table = document.getElementById('student-table');
|
|
|
|
const thead = table.querySelector('thead tr');
|
|
|
|
const tbody = table.querySelector('tbody');
|
|
|
|
|
|
|
|
// Clear existing headers and body
|
|
|
|
thead.innerHTML = '';
|
|
|
|
tbody.innerHTML = '';
|
|
|
|
|
|
|
|
// Add 'Imię i Nazwisko' header
|
|
|
|
const thName = document.createElement('th');
|
|
|
|
thName.textContent = "Imię i Nazwisko";
|
|
|
|
thead.appendChild(thName);
|
|
|
|
|
|
|
|
// Get columns for the category
|
|
|
|
const categoryColumns = categories[category];
|
|
|
|
|
|
|
|
// Add headers for category
|
|
|
|
categoryColumns.forEach(column => {
|
|
|
|
const th = document.createElement('th');
|
|
|
|
th.textContent = column.name;
|
|
|
|
thead.appendChild(th);
|
|
|
|
});
|
|
|
|
|
|
|
|
// Generate rows
|
|
|
|
studentsData.forEach(student => {
|
|
|
|
const row = document.createElement('tr');
|
2024-10-16 09:24:57 +00:00
|
|
|
|
2024-10-17 10:47:01 +00:00
|
|
|
// Name cell
|
|
|
|
const tdName = document.createElement('td');
|
|
|
|
tdName.textContent = student.name;
|
|
|
|
row.appendChild(tdName);
|
|
|
|
|
|
|
|
// Checkbox cells
|
|
|
|
categoryColumns.forEach(column => {
|
|
|
|
const td = document.createElement('td');
|
|
|
|
const checkbox = document.createElement('input');
|
|
|
|
checkbox.type = 'checkbox';
|
|
|
|
checkbox.id = `${column.id}-${student.name.replace(/ /g, '-')}`;
|
|
|
|
checkbox.onchange = calculateStats;
|
|
|
|
|
|
|
|
// Ustawienie stanu checkboxa na podstawie zapisanych danych
|
|
|
|
if (student.behavior[`day${currentDay}`] && student.behavior[`day${currentDay}`][column.id]) {
|
|
|
|
checkbox.checked = student.behavior[`day${currentDay}`][column.id];
|
|
|
|
}
|
|
|
|
|
|
|
|
td.appendChild(checkbox);
|
|
|
|
row.appendChild(td);
|
|
|
|
});
|
|
|
|
|
|
|
|
tbody.appendChild(row);
|
|
|
|
});
|
|
|
|
}
|