edumanagerpro2/manager/components/Exams.tsx

748 lines
35 KiB
TypeScript

import React, { useState, useRef } from 'react';
import { SchoolData, Exam, Question } from '../types';
import { FileText, Plus, Search, BookOpen, Upload, Trash2, ArrowLeft, Save, CheckCircle, Image as ImageIcon, X, RefreshCw, Lock, Unlock, AlertTriangle, Copy, Bell } from 'lucide-react';
import { uploadExamImage } from '../services/supabase';
import { useDialog } from '../DialogContext';
import { dbService } from '../services/dbService';
interface ExamsProps {
data: SchoolData;
updateData: (newData: Partial<SchoolData>) => void;
}
const Exams: React.FC<ExamsProps> = ({ data, updateData }) => {
const [searchTerm, setSearchTerm] = useState('');
const [currentView, setCurrentView] = useState<'list' | 'builder'>('list');
const [editingExam, setEditingExam] = useState<Exam | null>(null);
const [isUploading, setIsUploading] = useState(false);
const [duplicatingExam, setDuplicatingExam] = useState<Exam | null>(null);
const [targetClassId, setTargetClassId] = useState('');
const [activeTab, setActiveTab] = useState<'ativos' | 'lixeira'>('ativos');
const { showAlert, showConfirm } = useDialog();
const normalizePhotoUrl = (url?: string) => {
if (!url) return '';
if (url.startsWith('data:image') || url.startsWith('/storage')) return url;
try {
const match = url.match(/^https?:\/\/[^\/]+\/(.+)$/);
if (match) return `/storage/${match[1]}`;
} catch (e) { }
return url;
};
const exams = data.exams || [];
const filteredExams = exams.filter(exam =>
(activeTab === 'ativos' ? !exam.isDeleted : !!exam.isDeleted) &&
(exam.title.toLowerCase().includes(searchTerm.toLowerCase()) ||
data.classes.find(c => c.id === exam.classId)?.name.toLowerCase().includes(searchTerm.toLowerCase()))
);
const handleStartCreate = () => {
setEditingExam({
id: Date.now().toString(),
title: '',
classId: data.classes[0]?.id || '',
durationMinutes: 60,
status: 'draft',
questions: [],
evaluationType: 'exam',
maxScore: 10,
allowRetake: false
} as any);
setCurrentView('builder');
};
const handleEditExam = (exam: Exam) => {
setEditingExam({ ...exam });
setCurrentView('builder');
};
const handleToggleRetake = (examId: string) => {
const updatedExams = exams.map(e => {
if (e.id === examId) {
return { ...e, allowRetake: !e.allowRetake };
}
return e;
});
updateData({ exams: updatedExams });
dbService.saveData({ ...data, exams: updatedExams });
};
const handleDeleteExam = (examId: string) => {
showConfirm(
'Mover para Lixeira',
'Tem certeza que deseja mover esta avaliação para a lixeira? Ela será ocultada para os alunos, mas as notas no boletim continuarão intactas.',
() => {
const updatedExams = exams.map(e => e.id === examId ? { ...e, isDeleted: true } : e);
updateData({ exams: updatedExams });
dbService.saveData({ ...data, exams: updatedExams });
showAlert('Sucesso', 'Avaliação movida para a lixeira.', 'success');
}
);
};
const handleRestoreExam = (examId: string) => {
const updatedExams = exams.map(e => e.id === examId ? { ...e, isDeleted: false } : e);
updateData({ exams: updatedExams });
dbService.saveData({ ...data, exams: updatedExams });
showAlert('Sucesso', 'Avaliação reativada.', 'success');
};
const handleDuplicateExam = () => {
if (!duplicatingExam || !targetClassId) return;
const newExam: Exam = {
...duplicatingExam,
id: Date.now().toString() + Math.random().toString(36).substring(7),
classId: targetClassId,
status: 'draft', // Sempre começa como rascunho para segurança
title: `${duplicatingExam.title} (Cópia)`
};
const updatedExams = [...exams, newExam];
updateData({ exams: updatedExams });
dbService.saveData({ ...data, exams: updatedExams });
setDuplicatingExam(null);
setTargetClassId('');
showAlert('Sucesso', 'Avaliação duplicada com sucesso!', 'success');
};
const handleAddQuestion = () => {
if (!editingExam) return;
setEditingExam({
...editingExam,
questions: [
...editingExam.questions,
{
id: Date.now().toString() + Math.random().toString(36).substring(7),
text: '',
options: ['', '', '', ''],
correctOptionIndex: 0
}
]
});
};
const handleRemoveQuestion = (qIndex: number) => {
if (!editingExam) return;
const newQuestions = [...editingExam.questions];
newQuestions.splice(qIndex, 1);
setEditingExam({ ...editingExam, questions: newQuestions });
};
const handleQuestionChange = (qIndex: number, field: keyof Question, value: any) => {
if (!editingExam) return;
const newQuestions = [...editingExam.questions];
newQuestions[qIndex] = { ...newQuestions[qIndex], [field]: value };
setEditingExam({ ...editingExam, questions: newQuestions });
};
const handleOptionChange = (qIndex: number, oIndex: number, value: string) => {
if (!editingExam) return;
const newQuestions = [...editingExam.questions];
const newOptions = [...newQuestions[qIndex].options];
newOptions[oIndex] = value;
newQuestions[qIndex].options = newOptions;
setEditingExam({ ...editingExam, questions: newQuestions });
};
const handleAddOption = (qIndex: number) => {
if (!editingExam) return;
const newQuestions = [...editingExam.questions];
newQuestions[qIndex].options.push('');
setEditingExam({ ...editingExam, questions: newQuestions });
};
const handleRemoveOption = (qIndex: number, oIndex: number) => {
if (!editingExam) return;
const newQuestions = [...editingExam.questions];
newQuestions[qIndex].options.splice(oIndex, 1);
// Adjust correctOptionIndex if needed
if (newQuestions[qIndex].correctOptionIndex >= newQuestions[qIndex].options.length) {
newQuestions[qIndex].correctOptionIndex = Math.max(0, newQuestions[qIndex].options.length - 1);
} else if (newQuestions[qIndex].correctOptionIndex === oIndex) {
newQuestions[qIndex].correctOptionIndex = 0;
}
setEditingExam({ ...editingExam, questions: newQuestions });
};
const handleImageUpload = async (qIndex: number, event: React.ChangeEvent<HTMLInputElement>) => {
const file = event.target.files?.[0];
if (!file) return;
setIsUploading(true);
try {
const url = await uploadExamImage(file);
if (url) {
handleQuestionChange(qIndex, 'imageUrl', url);
} else {
alert('Falha ao obter URL pública da imagem após o upload.');
}
} catch (error: any) {
console.error(error);
const errorMessage = error.message || 'Erro desconhecido';
alert(`Erro ao enviar imagem: ${errorMessage}\n\nVerifique sua conexão ou a configuração do bucket "exames" no MinIO.`);
} finally {
setIsUploading(false);
if (event.target) {
event.target.value = ''; // Reset file input
}
}
};
const handleNotifyStudents = async (exam: Exam) => {
const classObj = (data.classes || []).find(c => c.id === exam.classId);
if (!classObj) return;
showConfirm(
'Notificar Turma',
`Deseja enviar WhatsApp e notificação no portal para os alunos da turma ${classObj.name} informando sobre esta avaliação?`,
async () => {
try {
const resp = await fetch('/api/exames/notificar', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ examId: exam.id })
});
const resData = await resp.json();
if (resp.ok) {
showAlert('Sucesso', 'Notificações enviadas com sucesso!', 'success');
} else {
showAlert('Erro', resData.error || 'Erro ao notificar turma.', 'error');
}
} catch (e) {
showAlert('Erro', 'Erro de conexão.', 'error');
}
}
);
};
const handleSave = (status: 'draft' | 'published') => {
if (!editingExam) return;
if (!editingExam.title || !editingExam.classId) {
showAlert('Atenção', 'Preencha o título e a turma antes de salvar.', 'warning');
return;
}
if (status === 'published' && (!editingExam.subjectId || !editingExam.periodId)) {
showAlert(
'Vínculo Obrigatório',
'Para PUBLICAR a avaliação e permitir que as notas entrem no Boletim Escolar, você precisa vincular uma Disciplina e um Período.',
'warning'
);
return;
}
const finalExam = { ...editingExam, status };
const currentExams = data.exams || [];
const existingIndex = currentExams.findIndex(e => e.id === finalExam.id);
let newExams;
if (existingIndex >= 0) {
newExams = [...currentExams];
newExams[existingIndex] = finalExam;
} else {
newExams = [...currentExams, finalExam];
}
updateData({ exams: newExams });
setCurrentView('list');
setEditingExam(null);
};
if (currentView === 'builder' && editingExam) {
return (
<div className="p-8 max-w-4xl mx-auto animate-in fade-in duration-500 pb-32">
<div className="flex items-center gap-4 mb-8">
<button
onClick={() => setCurrentView('list')}
className="p-2 text-slate-400 hover:text-indigo-600 hover:bg-indigo-50 rounded-lg transition-colors"
>
<ArrowLeft size={24} />
</button>
<div>
<h2 className="text-3xl font-black text-slate-800 tracking-tight flex items-center gap-3">
Criador de Provas
</h2>
<p className="text-slate-500 mt-1 font-medium">Configure os detalhes e as questões da avaliação.</p>
</div>
</div>
{/* Informações Básicas */}
<div className="bg-white rounded-2xl p-8 shadow-sm border border-slate-200 mb-8">
<h3 className="text-lg font-bold text-slate-800 mb-6 flex items-center gap-2">
<BookOpen className="text-indigo-500" size={20} /> Informações Básicas
</h3>
<div className="grid grid-cols-1 md:grid-cols-2 gap-6">
<div className="md:col-span-2">
<label className="block text-sm font-bold text-slate-700 mb-2">Título da Avaliação</label>
<input
type="text"
value={editingExam.title}
onChange={e => setEditingExam({ ...editingExam, title: e.target.value })}
placeholder="Ex: Prova Bimestral de Matemática"
className="w-full px-4 py-3 bg-slate-50 border border-slate-200 rounded-xl focus:ring-2 focus:ring-indigo-500 focus:outline-none transition-all font-medium text-slate-800"
/>
</div>
<div>
<label className="block text-sm font-bold text-slate-700 mb-2">Tipo de Avaliação</label>
<select
value={(editingExam as any).evaluationType || 'exam'}
onChange={e => setEditingExam({ ...editingExam, evaluationType: e.target.value } as any)}
className="w-full px-4 py-3 bg-slate-50 border border-slate-200 rounded-xl focus:ring-2 focus:ring-indigo-500 focus:outline-none transition-all font-medium text-slate-800"
>
<option value="exam">Prova</option>
<option value="activity">Atividade</option>
</select>
</div>
<div>
<label className="block text-sm font-bold text-slate-700 mb-2">Valor (Pontuação Máxima)</label>
<input
type="number"
value={(editingExam as any).maxScore ?? 10}
onChange={e => setEditingExam({ ...editingExam, maxScore: parseFloat(e.target.value) || 0 } as any)}
min="0"
step="0.1"
className="w-full px-4 py-3 bg-slate-50 border border-slate-200 rounded-xl focus:ring-2 focus:ring-indigo-500 focus:outline-none transition-all font-medium text-slate-800"
/>
</div>
<div>
<label className="block text-sm font-bold text-slate-700 mb-2">Turma Associada</label>
<select
value={editingExam.classId}
onChange={e => setEditingExam({ ...editingExam, classId: e.target.value })}
className="w-full px-4 py-3 bg-slate-50 border border-slate-200 rounded-xl focus:ring-2 focus:ring-indigo-500 focus:outline-none transition-all font-medium text-slate-800"
>
<option value="" disabled>Selecione uma turma</option>
{data.classes.map(c => (
<option key={c.id} value={c.id}>{c.name}</option>
))}
</select>
</div>
<div>
<label className="block text-sm font-bold text-slate-700 mb-2">Duração (Minutos)</label>
<input
type="number"
value={editingExam.durationMinutes}
onChange={e => setEditingExam({ ...editingExam, durationMinutes: parseInt(e.target.value) || 0 })}
min="0"
className="w-full px-4 py-3 bg-slate-50 border border-slate-200 rounded-xl focus:ring-2 focus:ring-indigo-500 focus:outline-none transition-all font-medium text-slate-800"
/>
</div>
<div>
<label className="block text-sm font-bold text-slate-700 mb-2">
Disciplina (Boletim) <span className="text-amber-500" title="Obrigatório para publicar">*</span>
</label>
<select
value={editingExam.subjectId || ''}
onChange={e => setEditingExam({ ...editingExam, subjectId: e.target.value || undefined })}
className="w-full px-4 py-3 bg-slate-50 border border-slate-200 rounded-xl focus:ring-2 focus:ring-indigo-500 focus:outline-none transition-all font-medium text-slate-800"
>
<option value="">Nenhuma (não vincular)</option>
{(data.subjects || []).map(s => (
<option key={s.id} value={s.id}>{s.name}</option>
))}
</select>
<p className="text-[11px] text-amber-600 mt-1.5 font-semibold">Obrigatório para Publicar. A nota irá automaticamente para o boletim.</p>
</div>
<div>
<label className="block text-sm font-bold text-slate-700 mb-2">
Período (Boletim) <span className="text-amber-500" title="Obrigatório para publicar">*</span>
</label>
<select
value={editingExam.periodId || ''}
onChange={e => setEditingExam({ ...editingExam, periodId: e.target.value || undefined })}
className="w-full px-4 py-3 bg-slate-50 border border-slate-200 rounded-xl focus:ring-2 focus:ring-indigo-500 focus:outline-none transition-all font-medium text-slate-800"
>
<option value="">Nenhum (não vincular)</option>
{(data.periods || []).map(p => (
<option key={p.id} value={p.id}>{p.name}</option>
))}
</select>
<p className="text-[11px] text-amber-600 mt-1.5 font-semibold">Obrigatório para Publicar. Define em qual coluna do boletim a nota entra.</p>
</div>
</div>
</div>
{/* Questões */}
<div className="space-y-6 mb-8">
{editingExam.questions.map((question, qIndex) => (
<div key={question.id} className="bg-white rounded-2xl p-8 shadow-md border border-slate-200 relative group animate-slide-up">
<div className="absolute top-0 left-0 w-1.5 h-full bg-indigo-500 rounded-l-2xl"></div>
<div className="flex justify-between items-center mb-6">
<h4 className="text-lg font-black text-slate-800 flex items-center gap-2">
<span className="w-8 h-8 rounded-lg bg-indigo-100 text-indigo-700 flex items-center justify-center text-sm">{qIndex + 1}</span>
Questão
</h4>
<button
onClick={() => handleRemoveQuestion(qIndex)}
className="text-slate-400 hover:text-red-500 transition-colors p-2"
title="Remover Questão"
>
<Trash2 size={20} />
</button>
</div>
<div className="space-y-6">
{/* Enunciado */}
<div>
<label className="block text-sm font-bold text-slate-700 mb-2">Enunciado</label>
<textarea
value={question.text}
onChange={e => handleQuestionChange(qIndex, 'text', e.target.value)}
placeholder="Digite o enunciado da questão..."
className="w-full px-4 py-3 bg-slate-50 border border-slate-200 rounded-xl focus:ring-2 focus:ring-indigo-500 focus:outline-none transition-all font-medium text-slate-800 min-h-[100px] resize-y"
/>
</div>
{/* Imagem da Questão */}
<div>
<label className="block text-sm font-bold text-slate-700 mb-2">Imagem de Apoio (Opcional)</label>
{question.imageUrl ? (
<div className="relative inline-block mt-2 group/img">
<img src={normalizePhotoUrl(question.imageUrl)} alt="Apoio" className="max-w-full md:max-w-md h-auto rounded-xl border border-slate-200 shadow-sm" />
<button
onClick={() => handleQuestionChange(qIndex, 'imageUrl', undefined)}
className="absolute top-2 right-2 p-2 bg-red-500 text-white rounded-lg opacity-0 group-hover/img:opacity-100 transition-opacity flex items-center justify-center hover:bg-red-600 shadow-lg"
>
<Trash2 size={16} />
</button>
</div>
) : (
<label className="flex items-center justify-center gap-2 w-full md:w-auto px-6 py-4 bg-slate-50 border-2 border-dashed border-slate-300 rounded-xl cursor-pointer hover:bg-slate-100 transition-colors">
<input
type="file"
accept="image/*"
className="hidden"
onChange={(e) => handleImageUpload(qIndex, e)}
disabled={isUploading}
/>
{isUploading ? (
<span className="text-slate-500 font-bold text-sm">Enviando...</span>
) : (
<>
<ImageIcon size={20} className="text-slate-400" />
<span className="text-slate-500 font-bold text-sm">Adicionar Imagem</span>
</>
)}
</label>
)}
</div>
{/* Alternativas */}
<div className="pt-4 border-t border-slate-100">
<label className="block text-sm font-bold text-slate-700 mb-4">Alternativas</label>
<div className="space-y-3">
{question.options.map((option, oIndex) => (
<div key={oIndex} className={`flex items-center gap-3 p-2 rounded-xl transition-colors ${question.correctOptionIndex === oIndex ? 'bg-emerald-50 border border-emerald-200' : 'bg-slate-50 border border-transparent'}`}>
<div className="flex items-center justify-center w-10">
<input
type="radio"
name={`correct-${question.id}`}
checked={question.correctOptionIndex === oIndex}
onChange={() => handleQuestionChange(qIndex, 'correctOptionIndex', oIndex)}
className="w-5 h-5 text-emerald-600 focus:ring-emerald-500 cursor-pointer"
title="Marcar como correta"
/>
</div>
<input
type="text"
value={option}
onChange={e => handleOptionChange(qIndex, oIndex, e.target.value)}
placeholder={`Alternativa ${String.fromCharCode(65 + oIndex)}`}
className="flex-1 bg-transparent border-none focus:ring-0 p-2 font-medium text-slate-800 placeholder:text-slate-400"
/>
<button
onClick={() => handleRemoveOption(qIndex, oIndex)}
className="p-2 text-slate-400 hover:text-red-500 transition-colors"
disabled={question.options.length <= 2}
title={question.options.length <= 2 ? "Mínimo de 2 alternativas" : "Remover alternativa"}
>
<X size={18} />
</button>
</div>
))}
</div>
<button
onClick={() => handleAddOption(qIndex)}
className="mt-4 flex items-center gap-2 text-sm font-bold text-indigo-600 hover:text-indigo-800 transition-colors"
>
<Plus size={16} /> Adicionar Alternativa
</button>
</div>
</div>
</div>
))}
{/* Botão Adicionar Questão */}
<button
onClick={handleAddQuestion}
className="w-full flex flex-col items-center justify-center gap-3 p-8 border-2 border-dashed border-indigo-200 rounded-2xl text-indigo-600 hover:bg-indigo-50 hover:border-indigo-400 transition-all font-bold group"
>
<div className="w-12 h-12 bg-indigo-100 rounded-full flex items-center justify-center group-hover:scale-110 transition-transform">
<Plus size={24} className="text-indigo-600" />
</div>
Adicionar Nova Questão
</button>
</div>
{/* Sticky Actions Bar */}
<div className="fixed bottom-0 left-0 md:left-64 right-0 p-4 bg-white/80 backdrop-blur-md border-t border-slate-200 flex justify-end gap-4 shadow-[0_-10px_40px_-15px_rgba(0,0,0,0.1)] z-40">
<button
onClick={() => handleSave('draft')}
className="flex items-center gap-2 px-6 py-3 bg-slate-100 text-slate-700 rounded-xl font-bold hover:bg-slate-200 transition-colors"
>
<Save size={20} /> Salvar como Rascunho
</button>
<button
onClick={() => handleSave('published')}
className="flex items-center gap-2 px-6 py-3 bg-emerald-600 text-white rounded-xl font-black tracking-wide hover:bg-emerald-700 shadow-lg shadow-emerald-200 transition-all"
>
<CheckCircle size={20} /> {(editingExam as any).evaluationType === 'activity' ? 'Publicar Atividade' : 'Publicar Prova'}
</button>
</div>
</div>
);
}
// LIST VIEW
return (
<div className="p-8 max-w-7xl mx-auto animate-in fade-in duration-500">
<div className="flex flex-col md:flex-row md:items-center justify-between gap-6 mb-8">
<div>
<h2 className="text-3xl font-black text-slate-800 tracking-tight flex items-center gap-3">
<BookOpen className="text-indigo-600" size={32} /> Atividades e Provas
</h2>
<p className="text-slate-500 mt-2 font-medium">Gerencie as provas e testes das turmas.</p>
</div>
<div className="flex flex-col md:flex-row gap-4">
<div className="flex bg-slate-100 p-1 rounded-xl shrink-0 self-start md:self-auto">
<button
onClick={() => setActiveTab('ativos')}
className={`px-4 py-2.5 rounded-lg text-sm font-black transition-all ${activeTab === 'ativos' ? 'bg-white text-indigo-600 shadow-sm' : 'text-slate-500 hover:text-slate-700'}`}
>
Ativos
</button>
<button
onClick={() => setActiveTab('lixeira')}
className={`px-4 py-2.5 rounded-lg text-sm font-black transition-all ${activeTab === 'lixeira' ? 'bg-white text-red-600 shadow-sm' : 'text-slate-500 hover:text-slate-700'}`}
>
Lixeira
</button>
</div>
<div className="relative">
<Search className="absolute left-4 top-1/2 -translate-y-1/2 text-slate-400" size={20} />
<input
type="text"
placeholder="Buscar avaliação..."
className="pl-12 pr-4 py-3 bg-white border border-slate-200 rounded-xl focus:ring-2 focus:ring-indigo-500 focus:outline-none shadow-sm w-full md:w-64 transition-all"
value={searchTerm}
onChange={(e) => setSearchTerm(e.target.value)}
/>
</div>
<button
onClick={handleStartCreate}
className="flex items-center justify-center gap-2 px-6 py-3 bg-indigo-600 text-white rounded-xl font-bold hover:bg-indigo-700 transition-all shadow-lg shadow-indigo-200"
>
<Plus size={20} />
Nova Avaliação
</button>
</div>
</div>
{filteredExams.length === 0 ? (
<div className="bg-white rounded-2xl p-12 text-center shadow-sm border border-slate-100 flex flex-col items-center">
<div className="w-20 h-20 bg-indigo-50 rounded-full flex items-center justify-center mb-4">
<FileText size={32} className="text-indigo-300" />
</div>
<h3 className="text-xl font-bold text-slate-700 mb-2">Nenhuma avaliação encontrada</h3>
<p className="text-slate-500 mb-6 max-w-md">Você ainda não criou nenhuma prova ou os filtros não retornaram resultados.</p>
<button
onClick={handleStartCreate}
className="px-6 py-3 bg-indigo-50 text-indigo-700 rounded-xl font-bold hover:bg-indigo-100 transition-colors"
>
Criar Minha Primeira Avaliação
</button>
</div>
) : (
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
{filteredExams.map(exam => {
const classObj = data.classes.find(c => c.id === exam.classId);
return (
<div key={exam.id} className={`rounded-2xl p-6 shadow-sm border transition-shadow relative overflow-hidden group ${exam.isDeleted ? 'bg-slate-50 border-slate-200 opacity-80' : 'bg-white border-slate-100 hover:shadow-md'}`}>
<div className={`absolute top-0 left-0 w-1.5 h-full rounded-l-2xl ${exam.isDeleted ? 'bg-slate-400' : 'bg-indigo-500'}`}></div>
<div className="flex justify-between items-start mb-4">
<div className="flex flex-col gap-1">
<h3 className="font-bold text-lg text-slate-800 line-clamp-2 pr-4">{exam.title}</h3>
<div className="flex items-center gap-2 mt-1">
<span className={`px-2 py-0.5 text-[10px] font-black uppercase tracking-wider rounded-md ${(exam as any).evaluationType === 'activity' ? 'bg-sky-100 text-sky-700' : 'bg-violet-100 text-violet-700'
}`}>
{(exam as any).evaluationType === 'activity' ? 'Atividade' : 'Prova'}
</span>
<span className="text-xs font-bold text-slate-500">
Vale: {(exam as any).maxScore ?? 10} pts
</span>
</div>
</div>
<span className={`px-2.5 py-1 text-[10px] font-black uppercase tracking-wider rounded-lg shrink-0 mt-1 ${exam.isDeleted ? 'bg-slate-200 text-slate-500' : (exam.status === 'published' ? 'bg-emerald-100 text-emerald-700' : 'bg-amber-100 text-amber-700')
}`}>
{exam.isDeleted ? 'Excluída' : (exam.status === 'published' ? 'Publicada' : 'Rascunho')}
</span>
</div>
<div className="space-y-2 mb-6">
<p className="text-sm text-slate-500 flex items-center gap-2">
<span className="font-bold text-slate-700">Turma:</span>
{classObj?.name || 'Turma não encontrada'}
</p>
<p className="text-sm text-slate-500 flex items-center gap-2">
<span className="font-bold text-slate-700">Questões:</span>
{exam.questions?.length || 0}
</p>
<p className="text-sm text-slate-500 flex items-center gap-2">
<span className="font-bold text-slate-700">Duração:</span>
{exam.durationMinutes} min
</p>
{exam.subjectId && (
<p className="text-sm text-slate-500 flex items-center gap-2">
<span className="font-bold text-slate-700">Disciplina:</span>
{(data.subjects || []).find(s => s.id === exam.subjectId)?.name || '—'}
</p>
)}
{exam.periodId && (
<p className="text-sm text-slate-500 flex items-center gap-2">
<span className="font-bold text-slate-700">Período:</span>
{(data.periods || []).find(p => p.id === exam.periodId)?.name || '—'}
</p>
)}
{/* ALERTA DE BOLETIM */}
{exam.status === 'published' && (!exam.subjectId || !exam.periodId) && (
<div className="flex items-start gap-2 bg-amber-50 p-3 rounded-xl border border-amber-200 mt-3">
<AlertTriangle size={16} className="text-amber-500 shrink-0 mt-0.5" />
<p className="text-[11px] font-medium text-amber-700 leading-tight">
<strong>Boletim Desconectado!</strong><br />
As notas desta avaliação não aparecerão no boletim do aluno porque faltou vincular a Disciplina ou o Período. Edite a prova para corrigir.
</p>
</div>
)}
</div>
<div className="border-t border-slate-100 pt-4 flex items-center justify-between">
{exam.isDeleted ? (
<button
onClick={() => handleRestoreExam(exam.id)}
className="w-full flex items-center justify-center gap-2 px-4 py-2 bg-slate-200 text-slate-700 rounded-xl font-bold hover:bg-slate-300 transition-colors"
>
<RefreshCw size={18} /> Reativar
</button>
) : (
<>
<div className="flex items-center gap-2">
<button
onClick={() => handleToggleRetake(exam.id)}
className={`p-2 rounded-lg transition-colors ${exam.allowRetake ? 'bg-emerald-50 text-emerald-600 hover:bg-emerald-100' : 'bg-slate-50 text-slate-400 hover:bg-slate-100'}`}
title={exam.allowRetake ? 'Refação Permitida (Clique para bloquear)' : 'Refação Bloqueada (Clique para permitir)'}
>
{exam.allowRetake ? <Unlock size={18} /> : <Lock size={18} />}
</button>
<button
onClick={() => {
setDuplicatingExam(exam);
setTargetClassId(exam.classId);
}}
className="p-2 bg-indigo-50 text-indigo-600 hover:bg-indigo-100 rounded-lg transition-colors"
title="Duplicar para outra turma"
>
<Copy size={18} />
</button>
<button
onClick={() => handleNotifyStudents(exam)}
className="p-2 bg-indigo-50 text-indigo-600 hover:bg-indigo-100 rounded-lg transition-colors"
title="Notificar Turma"
>
<Bell size={18} />
</button>
<button
onClick={() => handleDeleteExam(exam.id)}
className="p-2 bg-red-50 text-red-500 hover:bg-red-100 rounded-lg transition-colors"
title="Mover para Lixeira"
>
<Trash2 size={18} />
</button>
</div>
<button
onClick={() => handleEditExam(exam)}
className="text-sm font-bold text-indigo-600 hover:text-indigo-800 flex items-center gap-1 group-hover:translate-x-1 transition-transform"
>
Editar <ArrowLeft size={16} className="rotate-180" />
</button>
</>
)}
</div>
</div>
);
})}
</div>
)}
{/* MODAL DUPLICAR */}
{duplicatingExam && (
<div className="fixed inset-0 bg-transparent z-[60] flex items-center justify-center p-4 animate-in fade-in duration-200">
<div className="bg-white rounded-3xl w-full max-w-md p-8 shadow-2xl animate-slide-up">
<div className="flex items-center gap-3 mb-6">
<div className="p-3 bg-indigo-100 text-indigo-600 rounded-xl">
<Copy size={24} />
</div>
<h3 className="text-xl font-black text-slate-800">Duplicar Avaliação</h3>
</div>
<div className="space-y-4">
<p className="text-sm text-slate-500 font-medium">
Escolha a turma que receberá uma cópia de: <br />
<strong className="text-slate-800">{duplicatingExam.title}</strong>
</p>
<div>
<label className="block text-xs font-black text-slate-400 uppercase tracking-widest mb-2">Turma de Destino</label>
<select
value={targetClassId}
onChange={e => setTargetClassId(e.target.value)}
className="w-full px-4 py-3 bg-slate-50 border border-slate-200 rounded-xl focus:ring-2 focus:ring-indigo-500 focus:outline-none transition-all font-bold text-slate-700"
>
{data.classes.map(c => (
<option key={c.id} value={c.id}>{c.name}</option>
))}
</select>
</div>
<div className="flex gap-3 pt-4">
<button
onClick={() => setDuplicatingExam(null)}
className="flex-1 px-6 py-3 bg-slate-100 text-slate-600 rounded-xl font-bold hover:bg-slate-200 transition-all"
>
Cancelar
</button>
<button
onClick={handleDuplicateExam}
className="flex-1 px-6 py-3 bg-indigo-600 text-white rounded-xl font-bold hover:bg-indigo-700 transition-all shadow-lg shadow-indigo-100"
>
Duplicar
</button>
</div>
</div>
</div>
</div>
)}
</div>
);
};
export default Exams;