const API_URL = '../api.php'; let allItems = []; let currentAdminTab = 'critique'; let currentPage = 1; const itemsPerPage = 12; let selectedIds = new Set(); let pendingDeleteAction = null; function getStarsHTML(rating) { const r = parseFloat(rating) || 0; const full = Math.floor(r); const hasHalf = (r - full) >= 0.5; const empty = 5 - Math.ceil(r); let html = '★'.repeat(full); if (hasHalf) html += ''; html += `${'☆'.repeat(empty)}`; return html; } // ── PARSER CSV RENFORCÉ ── function parseCSV(text) { if (text.charCodeAt(0) === 0xFEFF) text = text.slice(1); const rows = []; let col = '', row = [], inQuotes = false; for (let i = 0; i < text.length; i++) { const c = text[i]; if (inQuotes) { if (c === '"') { if (text[i+1] === '"') { col += '"'; i++; } else inQuotes = false; } else col += c; } else { if (c === '"') inQuotes = true; else if (c === ',') { row.push(col); col = ''; } else if (c === '\n' || c === '\r') { if (c === '\r' && text[i+1] === '\n') i++; row.push(col); col = ''; if (row.length > 1 || row[0].trim() !== '') rows.push(row); row = []; } else col += c; } } if (col !== '' || row.length > 0) { row.push(col); rows.push(row); } if (rows.length === 0) return []; const headers = rows[0].map(h => h.trim()); const data = []; for (let i = 1; i < rows.length; i++) { if (rows[i].length === 1 && rows[i][0].trim() === '') continue; const obj = {}; headers.forEach((h, idx) => { obj[h] = rows[i][idx] !== undefined ? rows[i][idx] : ''; }); data.push(obj); } return data; } document.addEventListener('DOMContentLoaded', () => { loadDashboardData(); initEventListeners(); const confirmBtn = document.getElementById('confirm-btn'); if (confirmBtn) { confirmBtn.addEventListener('click', () => { if (pendingDeleteAction) pendingDeleteAction(); closeConfirmModal(); }); } }); function initEventListeners() { const filmForm = document.getElementById('film-form'); if (filmForm) filmForm.addEventListener('submit', saveFilmForm); const csvInput = document.getElementById('csv-file'); if (csvInput) csvInput.addEventListener('change', (e) => handleCsvUpload(e.target)); const searchInput = document.getElementById('search-input'); if (searchInput) { searchInput.addEventListener('input', () => { currentPage = 1; renderAdminTable(); }); } const selectAll = document.getElementById('select-all-checkbox'); if (selectAll) selectAll.addEventListener('change', (e) => toggleSelectAll(e.target)); document.addEventListener('click', (e) => { if (e.target.classList.contains('modal-close') || e.target.closest('.modal-close')) { const overlay = e.target.closest('.overlay'); if (overlay) overlay.classList.remove('open'); } if (e.target.classList.contains('overlay')) { e.target.classList.remove('open'); } }); const physicalFilter = document.getElementById('admin-physical-checkbox'); if (physicalFilter) { physicalFilter.addEventListener('change', () => { currentPage = 1; renderAdminTable(); }); } } async function loadDashboardData() { try { const res = await fetch(`${API_URL}?action=get_films`, { cache: 'no-store' }); allItems = await res.json(); const secRes = await fetch(`${API_URL}?action=check_security_status`, { cache: 'no-store' }); const secData = await secRes.json(); const banner = document.getElementById('security-banner'); if (banner) banner.style.display = secData.is_blank ? 'flex' : 'none'; renderAdminTable(); } catch (err) { console.error('Erreur chargement :', err); } } function renderAdminTable() { const tbody = document.getElementById('admin-table-body'); if (!tbody) return; tbody.innerHTML = ''; const searchInput = document.getElementById('search-input'); const currentSearch = searchInput ? searchInput.value.toLowerCase() : ''; const physicalFilter = document.getElementById('admin-physical-checkbox'); let filtered = allItems.filter(item => item.type === currentAdminTab); if (physicalFilter && physicalFilter.checked) { filtered = filtered.filter(f => f.format && !['dématérialisé', 'vod', 'digital', 'streaming'].includes(f.format.toLowerCase())); } if (currentSearch) { filtered = filtered.filter(f => f.title.toLowerCase().includes(currentSearch) || (f.director && f.director.toLowerCase().includes(currentSearch)) ); } const countLabel = document.getElementById('admin-count-label'); if (countLabel) countLabel.textContent = `${filtered.length} élément(s)`; const totalPages = Math.ceil(filtered.length / itemsPerPage) || 1; if (currentPage > totalPages) currentPage = totalPages; const startIdx = (currentPage - 1) * itemsPerPage; const pageItems = filtered.slice(startIdx, startIdx + itemsPerPage); pageItems.forEach(f => { const tr = document.createElement('tr'); const isChecked = selectedIds.has(String(f.id)) ? 'checked' : ''; tr.innerHTML = ` ${f.poster ? `Affiche` : '
'} ${f.title} ${f.year || '-'} ${f.director || '-'} ${currentAdminTab === 'critique' ? `${getStarsHTML(f.rating)}` : `${f.format || '-'}`}
`; tbody.appendChild(tr); }); renderPagination(totalPages, filtered.length); const selectAll = document.getElementById('select-all-checkbox'); if (selectAll) { selectAll.checked = pageItems.length > 0 && pageItems.every(f => selectedIds.has(String(f.id))); } } function toggleSingleSelect(id, checkbox) { if (checkbox.checked) selectedIds.add(String(id)); else selectedIds.delete(String(id)); updateBulkBar(); const filtered = allItems.filter(item => item.type === currentAdminTab); const selectAll = document.getElementById('select-all-checkbox'); if (selectAll) { selectAll.checked = filtered.length > 0 && filtered.every(f => selectedIds.has(String(f.id))); } } function toggleSelectAll(source) { const filtered = allItems.filter(item => item.type === currentAdminTab); if (source.checked) { filtered.forEach(f => selectedIds.add(String(f.id))); } else { filtered.forEach(f => selectedIds.delete(String(f.id))); } document.querySelectorAll('.film-checkbox').forEach(cb => { cb.checked = selectedIds.has(cb.value); }); updateBulkBar(); } function updateBulkBar() { const bulkBar = document.getElementById('bulk-actions-bar'); const bulkCount = document.getElementById('bulk-count'); if (selectedIds.size > 0) { if (bulkBar) bulkBar.style.display = 'flex'; if (bulkCount) bulkCount.textContent = selectedIds.size; } else { if (bulkBar) bulkBar.style.display = 'none'; const selectAll = document.getElementById('select-all-checkbox'); if (selectAll) selectAll.checked = false; } } function renderPagination(totalPages, totalItems) { const container = document.getElementById('pagination-container'); if (!container) return; container.innerHTML = ''; if (totalItems === 0) { container.innerHTML = '

Aucun élément trouvé.

'; return; } if (totalPages <= 1) return; const info = document.createElement('span'); info.className = 'pagination-info'; info.textContent = `Page ${currentPage} sur ${totalPages}`; container.appendChild(info); const prevBtn = document.createElement('button'); prevBtn.innerHTML = ''; prevBtn.disabled = currentPage === 1; prevBtn.onclick = () => { currentPage--; renderAdminTable(); }; container.appendChild(prevBtn); const maxButtons = 5; let startPage = Math.max(1, currentPage - Math.floor(maxButtons / 2)); let endPage = Math.min(totalPages, startPage + maxButtons - 1); if (endPage - startPage + 1 < maxButtons) { startPage = Math.max(1, endPage - maxButtons + 1); } if (startPage > 1) { container.appendChild(createPageBtn(1)); if (startPage > 2) container.appendChild(createEllipsis()); } for (let i = startPage; i <= endPage; i++) { container.appendChild(createPageBtn(i)); } if (endPage < totalPages) { if (endPage < totalPages - 1) container.appendChild(createEllipsis()); container.appendChild(createPageBtn(totalPages)); } const nextBtn = document.createElement('button'); nextBtn.innerHTML = ''; nextBtn.disabled = currentPage === totalPages; nextBtn.onclick = () => { currentPage++; renderAdminTable(); }; container.appendChild(nextBtn); } function createPageBtn(num) { const btn = document.createElement('button'); btn.textContent = num; if (num === currentPage) btn.classList.add('active'); btn.onclick = () => { currentPage = num; renderAdminTable(); }; return btn; } function createEllipsis() { const span = document.createElement('span'); span.textContent = '...'; span.style.color = 'var(--muted)'; span.style.padding = '0 0.5rem'; return span; } function showConfirmModal(actionFn) { pendingDeleteAction = actionFn; const modal = document.getElementById('confirm-modal'); if (modal) modal.classList.add('open'); } function closeConfirmModal() { const modal = document.getElementById('confirm-modal'); if (modal) modal.classList.remove('open'); pendingDeleteAction = null; } async function executeBulkDelete() { const ids = Array.from(selectedIds); if (ids.length === 0) return; showConfirmModal(async () => { try { const res = await fetch(`${API_URL}?action=bulk_delete`, { method: 'POST', headers: { 'Authorization': localStorage.getItem('token'), 'Content-Type': 'application/json' }, body: JSON.stringify({ ids, type: currentAdminTab }) }); if (!res.ok) throw new Error("Erreur serveur."); selectedIds.clear(); document.getElementById('bulk-actions-bar').style.display = 'none'; const selectAll = document.getElementById('select-all-checkbox'); if (selectAll) selectAll.checked = false; loadDashboardData(); } catch (err) { console.error('Erreur bulk delete :', err); alert("Une erreur est survenue."); } }); } async function deleteSingleFilm(id) { showConfirmModal(async () => { try { const res = await fetch(`${API_URL}?action=delete_film&id=${id}&type=${currentAdminTab}`, { method: 'DELETE', headers: { 'Authorization': localStorage.getItem('token') } }); if (!res.ok) throw new Error("Erreur serveur."); loadDashboardData(); } catch (err) { console.error('Erreur delete :', err); alert("Une erreur est survenue."); } }); } function toggleFormFields() { const critFields = document.getElementById('form-critique-fields'); const vidFields = document.getElementById('form-videotheque-fields'); if (critFields) critFields.style.display = currentAdminTab === 'critique' ? 'block' : 'none'; if (vidFields) vidFields.style.display = currentAdminTab === 'videotheque' ? 'block' : 'none'; } function switchAdminTab(tabName) { currentAdminTab = tabName; currentPage = 1; selectedIds.clear(); const searchInput = document.getElementById('search-input'); if (searchInput) searchInput.value = ''; const physicalFilter = document.getElementById('admin-physical-checkbox'); if (physicalFilter) { physicalFilter.checked = false; // On réinitialise le filtre à chaque changement d'onglet // On cherche le conteneur parent (le