wczytywanie klas oraz uczniow z bazy danych
This commit is contained in:
parent
df4b58fb50
commit
949e9d7fb5
313
js/script.js
313
js/script.js
|
@ -6,7 +6,10 @@ let currentDay = 0;
|
||||||
let currentRole = "teacher"
|
let currentRole = "teacher"
|
||||||
let currentRoleCriterias = []
|
let currentRoleCriterias = []
|
||||||
const baseDate = new Date();
|
const baseDate = new Date();
|
||||||
|
let categories = {};
|
||||||
|
let criteriaData = {};
|
||||||
|
|
||||||
|
// Funkcja do generowania tabeli (bez zmian)
|
||||||
function generateTable(category) {
|
function generateTable(category) {
|
||||||
const table = document.getElementById('student-table');
|
const table = document.getElementById('student-table');
|
||||||
const thead = table.querySelector('thead tr');
|
const thead = table.querySelector('thead tr');
|
||||||
|
@ -24,11 +27,18 @@ function generateTable(category) {
|
||||||
// Pobierz kolumny dla wybranej kategorii
|
// Pobierz kolumny dla wybranej kategorii
|
||||||
const categoryColumns = categories[category];
|
const categoryColumns = categories[category];
|
||||||
|
|
||||||
// Dodaj nagłówki dla kryteriów w kategorii
|
if (!categoryColumns) {
|
||||||
|
console.error(`Brak kolumn dla kategorii: ${category}`);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Dodaj nagłówki dla kryteriów
|
||||||
categoryColumns.forEach(column => {
|
categoryColumns.forEach(column => {
|
||||||
|
if(currentRoleCriterias.includes(column.id)) {
|
||||||
const th = document.createElement('th');
|
const th = document.createElement('th');
|
||||||
th.textContent = column.name;
|
th.textContent = column.name;
|
||||||
thead.appendChild(th);
|
thead.appendChild(th);
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
// Generuj wiersze dla uczniów
|
// Generuj wiersze dla uczniów
|
||||||
|
@ -47,6 +57,7 @@ function generateTable(category) {
|
||||||
|
|
||||||
// Komórki z checkboxami dla kryteriów
|
// Komórki z checkboxami dla kryteriów
|
||||||
categoryColumns.forEach(column => {
|
categoryColumns.forEach(column => {
|
||||||
|
if(currentRoleCriterias.includes(column.id)) {
|
||||||
const td = document.createElement('td');
|
const td = document.createElement('td');
|
||||||
const checkbox = document.createElement('input');
|
const checkbox = document.createElement('input');
|
||||||
checkbox.type = 'checkbox';
|
checkbox.type = 'checkbox';
|
||||||
|
@ -59,11 +70,13 @@ function generateTable(category) {
|
||||||
|
|
||||||
td.appendChild(checkbox);
|
td.appendChild(checkbox);
|
||||||
row.appendChild(td);
|
row.appendChild(td);
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
tbody.appendChild(row);
|
tbody.appendChild(row);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
// Funkcja do wczytywania pliku JSON
|
// Funkcja do wczytywania pliku JSON
|
||||||
async function fetchJSONFile(filePath) {
|
async function fetchJSONFile(filePath) {
|
||||||
try {
|
try {
|
||||||
|
@ -78,70 +91,67 @@ async function fetchJSONFile(filePath) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Obiekt do przechowywania danych klas i uczniów
|
// Funkcja do wczytania klas z bazy danych
|
||||||
const classData = {};
|
|
||||||
|
|
||||||
// Funkcja do wczytania pliku class.json i danych uczniów
|
|
||||||
async function loadClasses() {
|
async function loadClasses() {
|
||||||
|
|
||||||
const selectClass = document.getElementById("select-class-select");
|
const selectClass = document.getElementById("select-class-select");
|
||||||
selectClass.innerHTML = ""; // Wyczyść istniejące opcje
|
selectClass.innerHTML = ""; // Wyczyść istniejące opcje
|
||||||
|
|
||||||
|
console.log("Pobieranie klas z bazy danych...");
|
||||||
console.log("test")
|
fetch("php/get_classes.php")
|
||||||
//Fetch klas
|
|
||||||
fetch("/c2024/php/get_class.php")
|
|
||||||
.then(response => response.json())
|
.then(response => response.json())
|
||||||
.then(data => {
|
.then(data => {
|
||||||
console.log("Zaladowano klasy || ", data)
|
console.log("Załadowano klasy:", data);
|
||||||
|
|
||||||
data.forEach(element => {
|
data.forEach(element => {
|
||||||
|
|
||||||
const option = document.createElement('option');
|
const option = document.createElement('option');
|
||||||
option.textContent = `Klasa: ${element.nazwa_klasy}`;
|
option.textContent = `Klasa: ${element.nazwa_klasy}`;
|
||||||
selectClass.appendChild(option)
|
option.value = element.id_klasy; // Ustaw ID klasy jako wartość opcji
|
||||||
console.log("Dodano klasę ", element.nazwa_klasy, " do SELECT")
|
selectClass.appendChild(option);
|
||||||
|
console.log("Dodano klasę ", element.nazwa_klasy, " do SELECT");
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// Ustaw domyślnie pierwszą klasę i załaduj jej uczniów
|
||||||
|
if (data.length > 0) {
|
||||||
|
selectClass.selectedIndex = 0;
|
||||||
|
const defaultClassId = data[0].id_klasy;
|
||||||
|
loadStudents(defaultClassId);
|
||||||
|
}
|
||||||
|
|
||||||
})
|
})
|
||||||
|
.catch(error => {
|
||||||
// Dodaj nasłuchiwacz zdarzeń na zmianę wyboru klasy
|
console.error("Błąd podczas pobierania klas:", error);
|
||||||
selectClass.addEventListener('change', function() {
|
|
||||||
const selectedClassFile = this.value;
|
|
||||||
console.log(`Wybrano klasę: ${selectedClassFile}`);
|
|
||||||
loadStudents(selectedClassFile);
|
|
||||||
});
|
});
|
||||||
|
|
||||||
// Opcjonalnie, ustaw domyślnie pierwszą klasę i załaduj jej uczniów
|
// Nasłuchiwacz zmiany wyboru klasy
|
||||||
if (classes.length > 0) {
|
selectClass.addEventListener('change', function() {
|
||||||
selectClass.selectedIndex = 0;
|
const selectedClassId = this.value;
|
||||||
const defaultClassFile = classes[0].file_path;
|
console.log(`Wybrano klasę o ID: ${selectedClassId}`);
|
||||||
loadStudents(defaultClassFile);
|
loadStudents(selectedClassId);
|
||||||
}
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
// Funkcja do wczytania danych uczniów dla wybranej klasy
|
// Funkcja do wczytania danych uczniów dla wybranej klasy
|
||||||
async function loadStudents(classFilePath) {
|
async function loadStudents(classId) {
|
||||||
if (!classFilePath) {
|
if (!classId) {
|
||||||
console.warn("Nie wybrano żadnej klasy.");
|
console.warn("Nie wybrano żadnej klasy.");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
const studentsFilePath = `/data/${classFilePath}`;
|
fetch(`php/get_students.php?id_klasy=${classId}`)
|
||||||
const data = await fetchJSONFile(studentsFilePath);
|
.then(response => response.json())
|
||||||
|
.then(data => {
|
||||||
if (data && Array.isArray(data.students)) {
|
if (data && Array.isArray(data)) {
|
||||||
console.log(`Uczniowie załadowani z pliku ${classFilePath}:`, data);
|
console.log(`Uczniowie załadowani dla klasy ${classId}:`, data);
|
||||||
studentsData = data.students; // Aktualizuj globalną tablicę uczniów
|
// Przekształć dane na format oczekiwany przez 'studentsData'
|
||||||
|
studentsData = data.map(student => {
|
||||||
// Inicjalizacja 'behavior' dla każdego ucznia, jeśli jest niezdefiniowany
|
return {
|
||||||
studentsData.forEach(student => {
|
first_name: student.imie,
|
||||||
if (!student.behavior) {
|
last_name: student.nazwisko,
|
||||||
student.behavior = {};
|
behavior: {} // Inicjalizacja obiektu 'behavior'
|
||||||
}
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
currentClass = classFilePath; // Ustaw aktualną klasę
|
currentClass = classId; // Ustaw aktualną klasę
|
||||||
generateTable(currentCategory); // Regeneruj tabelę z aktualną kategorią
|
generateTable(currentCategory); // Regeneruj tabelę z aktualną kategorią
|
||||||
} else {
|
} else {
|
||||||
console.error("Błąd: Nie udało się załadować danych uczniów lub dane są niepoprawne.");
|
console.error("Błąd: Nie udało się załadować danych uczniów lub dane są niepoprawne.");
|
||||||
|
@ -149,36 +159,26 @@ async function loadStudents(classFilePath) {
|
||||||
currentClass = '';
|
currentClass = '';
|
||||||
generateTable(currentCategory); // Regeneruj pustą tabelę
|
generateTable(currentCategory); // Regeneruj pustą tabelę
|
||||||
}
|
}
|
||||||
|
})
|
||||||
|
.catch(error => {
|
||||||
|
console.error("Błąd podczas pobierania uczniów:", error);
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
async function getCategoriesWithCriteria() {
|
// Funkcja do wczytania kryteriów z pliku criteria.json
|
||||||
const criteriaFilePath = '/data/criteria.json';
|
|
||||||
const criteria = await fetchJSONFile(criteriaFilePath);
|
|
||||||
let categoriesWithCriteria = {}
|
|
||||||
|
|
||||||
criteria.categories.forEach(category => {
|
|
||||||
let criteriaForCategory = []
|
|
||||||
criteria.criteria.forEach(criteria => {
|
|
||||||
if(category.criteria_ids.includes(criteria.id)) {
|
|
||||||
//console.log(`!!! ${category.name} posiada ${criteria.name}`)
|
|
||||||
criteriaForCategory.push({name: criteria.name, id: criteria.id})
|
|
||||||
}
|
|
||||||
})
|
|
||||||
categoriesWithCriteria[category.id] = criteriaForCategory
|
|
||||||
})
|
|
||||||
|
|
||||||
return categoriesWithCriteria
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
// Funkcja do wczytania pliku criteria.json
|
|
||||||
async function loadCriteria() {
|
async function loadCriteria() {
|
||||||
const criteriaFilePath = '/data/criteria.json';
|
const criteriaFilePath = 'data/criteria.json'; // Poprawiona ścieżka
|
||||||
const criteria = await fetchJSONFile(criteriaFilePath);
|
const criteria = await fetchJSONFile(criteriaFilePath);
|
||||||
|
|
||||||
|
if (!criteria) {
|
||||||
|
console.error("Nie udało się załadować pliku criteria.json.");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
console.log("Załadowane kryteria:", criteria);
|
console.log("Załadowane kryteria:", criteria);
|
||||||
|
|
||||||
|
criteriaData = criteria; // Zapisz kryteria globalnie
|
||||||
|
|
||||||
//
|
//
|
||||||
// LADOWANIE ROL
|
// LADOWANIE ROL
|
||||||
//
|
//
|
||||||
|
@ -212,28 +212,36 @@ async function loadCriteria() {
|
||||||
});
|
});
|
||||||
|
|
||||||
categoryButtonsBox.innerHTML = categoryButtonHTML;
|
categoryButtonsBox.innerHTML = categoryButtonHTML;
|
||||||
|
|
||||||
|
// Zbuduj obiekt 'categories'
|
||||||
|
categories = {};
|
||||||
|
criteria.categories.forEach(category => {
|
||||||
|
let criteriaForCategory = []
|
||||||
|
criteria.criteria.forEach(crit => {
|
||||||
|
if(category.criteria_ids.includes(crit.id)) {
|
||||||
|
criteriaForCategory.push({name: crit.name, id: crit.id})
|
||||||
|
}
|
||||||
|
})
|
||||||
|
categories[category.id] = criteriaForCategory
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
async function changeRole(role) {
|
async function changeRole() {
|
||||||
const select = document.getElementById('select-role');
|
const select = document.getElementById('select-role');
|
||||||
const selectedValue = select.value;
|
const selectedValue = select.value;
|
||||||
|
|
||||||
const criteriaFilePath = '/data/criteria.json';
|
currentRole = selectedValue;
|
||||||
const criteria = await fetchJSONFile(criteriaFilePath);
|
currentRoleCriterias = criteriaData.roles[currentRole].criteria_ids;
|
||||||
|
console.log("currentRole:", currentRole);
|
||||||
currentRole = selectedValue
|
console.log("currentRoleCriterias:", currentRoleCriterias);
|
||||||
currentRoleCriterias = criteria.roles[currentRole].criteria_ids
|
|
||||||
console.log("currentRole:", currentRole)
|
|
||||||
console.log("currentRoleCriterias:", currentRoleCriterias)
|
|
||||||
|
|
||||||
// category-buttons-box
|
// category-buttons-box
|
||||||
const categoriesCriteria = criteria.categories;
|
const categoriesCriteria = criteriaData.categories;
|
||||||
const categoryButtonsBox = document.getElementById("category-buttons-box");
|
const categoryButtonsBox = document.getElementById("category-buttons-box");
|
||||||
let categoryButtonHTML = ""
|
let categoryButtonHTML = "";
|
||||||
categoriesCriteria.forEach(category => {
|
categoriesCriteria.forEach(category => {
|
||||||
const hasCriteria = category.criteria_ids.some(criteriaId => currentRoleCriterias.includes(criteriaId));
|
const hasCriteria = category.criteria_ids.some(criteriaId => currentRoleCriterias.includes(criteriaId));
|
||||||
|
|
||||||
|
|
||||||
// Jeśli kategoria ma kryteria, dodajemy przycisk
|
// Jeśli kategoria ma kryteria, dodajemy przycisk
|
||||||
if (hasCriteria) {
|
if (hasCriteria) {
|
||||||
categoryButtonHTML += `<button data-category="${category.id}" onclick="showInnerTab('${category.id}')">${category.name}</button>`;
|
categoryButtonHTML += `<button data-category="${category.id}" onclick="showInnerTab('${category.id}')">${category.name}</button>`;
|
||||||
|
@ -242,7 +250,7 @@ async function changeRole(role) {
|
||||||
|
|
||||||
categoryButtonsBox.innerHTML = categoryButtonHTML;
|
categoryButtonsBox.innerHTML = categoryButtonHTML;
|
||||||
|
|
||||||
generateTable(currentCategory)
|
generateTable(currentCategory);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Funkcja do przełączania głównych zakładek
|
// Funkcja do przełączania głównych zakładek
|
||||||
|
@ -259,9 +267,42 @@ function showTab(tabName) {
|
||||||
|
|
||||||
if (tabName === 'criteria') {
|
if (tabName === 'criteria') {
|
||||||
loadDayData();
|
loadDayData();
|
||||||
} else if (tabName === 'points') {
|
} else if (tabName === 'stats') {
|
||||||
calculateStats();
|
calculateStats();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Zmieniaj tytuł nagłówka w zależności od wybranej zakładki
|
||||||
|
const headerTitle = document.getElementById('header-title');
|
||||||
|
const upButtonContainer = document.getElementById('up-button-container');
|
||||||
|
const selectRoleContainer = document.getElementById('select-role-container');
|
||||||
|
const selectClassContainer = document.getElementById('select-class-container');
|
||||||
|
|
||||||
|
switch (tabName) {
|
||||||
|
case 'criteria':
|
||||||
|
headerTitle.textContent = 'Ocena Zachowania';
|
||||||
|
generateTable(currentCategory); // Generuj tabelę dla aktualnej kategorii
|
||||||
|
upButtonContainer.style.display = 'block'; // Pokaż przyciski
|
||||||
|
selectRoleContainer.style.display = 'block'; // Pokaż wybór roli
|
||||||
|
selectClassContainer.style.display = 'block'; // Pokaż wybór klasy
|
||||||
|
break;
|
||||||
|
case 'stats':
|
||||||
|
headerTitle.textContent = 'Statystyka';
|
||||||
|
upButtonContainer.style.display = 'none'; // Ukryj przyciski
|
||||||
|
selectRoleContainer.style.display = 'none'; // Ukryj wybór roli
|
||||||
|
selectClassContainer.style.display = 'none'; // Ukryj wybór klasy
|
||||||
|
break;
|
||||||
|
case 'points':
|
||||||
|
headerTitle.textContent = 'Ustal punkty';
|
||||||
|
upButtonContainer.style.display = 'none'; // Ukryj przyciski
|
||||||
|
selectRoleContainer.style.display = 'none'; // Ukryj wybór roli
|
||||||
|
selectClassContainer.style.display = 'none'; // Ukryj wybór klasy
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
headerTitle.textContent = 'Ocena Zachowania';
|
||||||
|
upButtonContainer.style.display = 'none'; // Ukryj przyciski
|
||||||
|
selectRoleContainer.style.display = 'none'; // Ukryj wybór roli
|
||||||
|
selectClassContainer.style.display = 'none'; // Ukryj wybór klasy
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Funkcja do przełączania kategorii w tabeli uczniów
|
// Funkcja do przełączania kategorii w tabeli uczniów
|
||||||
|
@ -281,9 +322,6 @@ function showInnerTab(category) {
|
||||||
|
|
||||||
// Funkcja, aby ustawić domyślną kategorię i zakładkę
|
// Funkcja, aby ustawić domyślną kategorię i zakładkę
|
||||||
document.addEventListener("DOMContentLoaded", function() {
|
document.addEventListener("DOMContentLoaded", function() {
|
||||||
// Domyślnie pokazujemy kategorię 'frekwencja'
|
|
||||||
|
|
||||||
|
|
||||||
// Ustawienie daty na dziś
|
// Ustawienie daty na dziś
|
||||||
document.getElementById('current-date').innerText = baseDate.toLocaleDateString();
|
document.getElementById('current-date').innerText = baseDate.toLocaleDateString();
|
||||||
|
|
||||||
|
@ -405,118 +443,3 @@ function getGrade(points) {
|
||||||
if (points >= 0) return "Nieodpowiednie";
|
if (points >= 0) return "Nieodpowiednie";
|
||||||
return "Naganne";
|
return "Naganne";
|
||||||
}
|
}
|
||||||
|
|
||||||
// Funkcja do generowania tabeli uczniów na podstawie wybranej kategorii
|
|
||||||
async 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);
|
|
||||||
|
|
||||||
// get role
|
|
||||||
console.log("currentRole", currentRole)
|
|
||||||
|
|
||||||
// Pobierz kolumny dla wybranej kategorii
|
|
||||||
const categories = await getCategoriesWithCriteria()
|
|
||||||
console.log("łot:", categories)
|
|
||||||
const categoryColumns = categories[category];
|
|
||||||
|
|
||||||
// Dodaj nagłówki dla kryteriów w kategorii
|
|
||||||
categoryColumns.forEach(column => {
|
|
||||||
const th = document.createElement('th');
|
|
||||||
if(currentRoleCriterias.includes(column.id)) {
|
|
||||||
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 => {
|
|
||||||
if(currentRoleCriterias.includes(column.id)) {
|
|
||||||
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);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
function showTab(tabName) {
|
|
||||||
// Ukryj wszystkie zakładki
|
|
||||||
const tabs = document.querySelectorAll('.tab');
|
|
||||||
tabs.forEach(tab => tab.classList.remove('active'));
|
|
||||||
|
|
||||||
// Pokaż wybraną zakładkę
|
|
||||||
const selectedTab = document.getElementById(tabName);
|
|
||||||
if (selectedTab) {
|
|
||||||
selectedTab.classList.add('active');
|
|
||||||
}
|
|
||||||
|
|
||||||
// Zmieniaj tytuł nagłówka w zależności od wybranej zakładki
|
|
||||||
const headerTitle = document.getElementById('header-title');
|
|
||||||
const upButtonContainer = document.getElementById('up-button-container');
|
|
||||||
const selectRoleContainer = document.getElementById('select-role-container');
|
|
||||||
const selectClassContainer = document.getElementById('select-class-container');
|
|
||||||
|
|
||||||
switch (tabName) {
|
|
||||||
case 'criteria':
|
|
||||||
headerTitle.textContent = 'Ocena Zachowania';
|
|
||||||
generateTable(currentCategory); // Generuj tabelę dla aktualnej kategorii
|
|
||||||
upButtonContainer.style.display = 'block'; // Pokaż przyciski
|
|
||||||
selectRoleContainer.style.display = 'block'; // Pokaż wybór roli
|
|
||||||
selectClassContainer.style.display = 'block'; // Pokaż wybór klasy
|
|
||||||
break;
|
|
||||||
case 'stats':
|
|
||||||
headerTitle.textContent = 'Statystyka';
|
|
||||||
upButtonContainer.style.display = 'none'; // Ukryj przyciski
|
|
||||||
selectRoleContainer.style.display = 'none'; // Ukryj wybór roli
|
|
||||||
selectClassContainer.style.display = 'none'; // Ukryj wybór klasy
|
|
||||||
break;
|
|
||||||
case 'points':
|
|
||||||
headerTitle.textContent = 'Ustal punkty';
|
|
||||||
upButtonContainer.style.display = 'none'; // Ukryj przyciski
|
|
||||||
selectRoleContainer.style.display = 'none'; // Ukryj wybór roli
|
|
||||||
selectClassContainer.style.display = 'none'; // Ukryj wybór klasy
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
headerTitle.textContent = 'Ocena Zachowania';
|
|
||||||
upButtonContainer.style.display = 'none'; // Ukryj przyciski
|
|
||||||
selectRoleContainer.style.display = 'none'; // Ukryj wybór roli
|
|
||||||
selectClassContainer.style.display = 'none'; // Ukryj wybór klasy
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
|
@ -6,7 +6,11 @@ $dbname = "ocena_zachowania";
|
||||||
|
|
||||||
$con = mysqli_connect($dbhost, $dbuser, $dbpass, $dbname);
|
$con = mysqli_connect($dbhost, $dbuser, $dbpass, $dbname);
|
||||||
|
|
||||||
$ans = mysqli_query($con, "SELECT nazwa_klasy FROM klasy;");
|
if (!$con) {
|
||||||
|
die("Błąd połączenia z bazą danych: " . mysqli_connect_error());
|
||||||
|
}
|
||||||
|
|
||||||
|
$ans = mysqli_query($con, "SELECT * FROM klasy;");
|
||||||
$json = array();
|
$json = array();
|
||||||
|
|
||||||
while($row = mysqli_fetch_assoc($ans)) {
|
while($row = mysqli_fetch_assoc($ans)) {
|
|
@ -6,12 +6,21 @@ $dbname = "ocena_zachowania";
|
||||||
|
|
||||||
$con = mysqli_connect($dbhost, $dbuser, $dbpass, $dbname);
|
$con = mysqli_connect($dbhost, $dbuser, $dbpass, $dbname);
|
||||||
|
|
||||||
$ans = mysqli_query($con, "SELECT * sFROM klasy;");
|
if (!$con) {
|
||||||
$json = array();
|
die("Błąd połączenia z bazą danych: " . mysqli_connect_error());
|
||||||
|
|
||||||
while($row = mysqli_fetch_assoc($ans)) {
|
|
||||||
$json[] = $row;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
echo json_encode($json);
|
if(isset($_GET['id_klasy'])) {
|
||||||
|
$id_klasy = intval($_GET['id_klasy']);
|
||||||
|
$ans = mysqli_query($con, "SELECT * FROM uczniowie WHERE id_klasy = $id_klasy;");
|
||||||
|
$json = array();
|
||||||
|
|
||||||
|
while($row = mysqli_fetch_assoc($ans)) {
|
||||||
|
$json[] = $row;
|
||||||
|
}
|
||||||
|
|
||||||
|
echo json_encode($json);
|
||||||
|
} else {
|
||||||
|
echo json_encode(array("error" => "Brak podanego ID klasy."));
|
||||||
|
}
|
||||||
?>
|
?>
|
Loading…
Reference in New Issue