EvalueTonSavoir/client/src/pages/Teacher/EditorQuiz/EditorQuiz.tsx

397 lines
14 KiB
TypeScript
Raw Normal View History

2024-03-29 20:08:34 -04:00
// EditorQuiz.tsx
import React, { useState, useEffect, useRef, CSSProperties } from 'react';
2024-03-29 20:08:34 -04:00
import { useParams, useNavigate } from 'react-router-dom';
import { FolderType } from '../../../Types/FolderType';
2025-01-16 12:37:07 -05:00
import Editor from 'src/components/Editor/Editor';
import GiftCheatSheet from 'src/components/GIFTCheatSheet/GiftCheatSheet';
import GIFTTemplatePreview from 'src/components/GiftTemplate/GIFTTemplatePreview';
2024-03-29 20:08:34 -04:00
import { QuizType } from '../../../Types/QuizType';
import './editorQuiz.css';
2025-03-31 22:19:24 -04:00
import {
Button,
TextField,
NativeSelect,
Divider,
Dialog,
DialogTitle,
DialogActions,
DialogContent
} from '@mui/material';
2025-01-16 12:37:07 -05:00
import ReturnButton from 'src/components/ReturnButton/ReturnButton';
2024-03-29 20:08:34 -04:00
import ApiService from '../../../services/ApiService';
import { escapeForGIFT } from '../../../utils/giftUtils';
import { Upload } from '@mui/icons-material';
2025-03-25 03:53:25 -04:00
import SaveIcon from '@mui/icons-material/Save';
2024-03-29 20:08:34 -04:00
interface EditQuizParams {
id: string;
[key: string]: string | undefined;
}
const QuizForm: React.FC = () => {
const [quizTitle, setQuizTitle] = useState('');
const [selectedFolder, setSelectedFolder] = useState<string>('');
const [filteredValue, setFilteredValue] = useState<string[]>([]);
const { id } = useParams<EditQuizParams>();
const [value, setValue] = useState('');
const [isNewQuiz, setNewQuiz] = useState(false);
const [quiz, setQuiz] = useState<QuizType | null>(null);
const navigate = useNavigate();
const [folders, setFolders] = useState<FolderType[]>([]);
const [imageLinks, setImageLinks] = useState<string[]>([]);
const handleSelectFolder = (event: React.ChangeEvent<HTMLSelectElement>) => {
setSelectedFolder(event.target.value);
};
const fileInputRef = useRef<HTMLInputElement>(null);
const [dialogOpen, setDialogOpen] = useState(false);
const [showScrollButton, setShowScrollButton] = useState(false);
const scrollToTop = () => {
window.scrollTo({ top: 0, behavior: 'smooth' });
};
useEffect(() => {
const handleScroll = () => {
if (window.scrollY > 300) {
setShowScrollButton(true);
} else {
setShowScrollButton(false);
}
};
window.addEventListener('scroll', handleScroll);
return () => {
window.removeEventListener('scroll', handleScroll);
};
}, []);
2024-03-29 20:08:34 -04:00
2025-03-31 22:19:24 -04:00
const scrollToImagesSection = (event: { preventDefault: () => void }) => {
2025-01-14 16:21:32 -05:00
event.preventDefault();
const section = document.getElementById('images-section');
if (section) {
section.scrollIntoView({ behavior: 'smooth' });
}
};
2024-03-29 20:08:34 -04:00
useEffect(() => {
const fetchData = async () => {
const userFolders = await ApiService.getUserFolders();
setFolders(userFolders as FolderType[]);
};
fetchData();
}, []);
useEffect(() => {
const fetchData = async () => {
try {
if (!id || id === 'new') {
setNewQuiz(true);
return;
}
2025-03-31 22:19:24 -04:00
const quiz = (await ApiService.getQuiz(id)) as QuizType;
2024-03-29 20:08:34 -04:00
if (!quiz) {
2025-03-31 22:19:24 -04:00
window.alert(
`Une erreur est survenue.\n Le quiz ${id} n'a pas été trouvé\nVeuillez réessayer plus tard`
);
2024-03-29 20:08:34 -04:00
console.error('Quiz not found for id:', id);
navigate('/teacher/dashboard');
return;
}
setQuiz(quiz as QuizType);
const { title, content, folderId } = quiz;
setQuizTitle(title);
setSelectedFolder(folderId);
setFilteredValue(content);
setValue(quiz.content.join('\n\n'));
} catch (error) {
2025-03-31 22:19:24 -04:00
window.alert(`Une erreur est survenue.\n Veuillez réessayer plus tard`);
2024-03-29 20:08:34 -04:00
console.error('Error fetching quiz:', error);
navigate('/teacher/dashboard');
}
};
fetchData();
}, [id]);
function handleUpdatePreview(value: string) {
if (value !== '') {
setValue(value);
}
// split value when there is at least one blank line
2025-03-31 22:19:24 -04:00
const linesArray = value.split(/\n{2,}/);
// if the first item in linesArray is blank, remove it
if (linesArray[0] === '') linesArray.shift();
2024-03-29 20:08:34 -04:00
if (linesArray[linesArray.length - 1] === '') linesArray.pop();
setFilteredValue(linesArray);
}
const handleQuizTitleChange = (event: React.ChangeEvent<HTMLInputElement>) => {
setQuizTitle(event.target.value);
};
const handleQuizSave = async () => {
try {
// check if everything is there
if (quizTitle == '') {
2025-03-31 22:19:24 -04:00
alert('Veuillez choisir un titre');
2024-03-29 20:08:34 -04:00
return;
}
if (selectedFolder == '') {
2025-03-31 22:19:24 -04:00
alert('Veuillez choisir un dossier');
2024-03-29 20:08:34 -04:00
return;
}
if (isNewQuiz) {
await ApiService.createQuiz(quizTitle, filteredValue, selectedFolder);
} else {
if (quiz) {
await ApiService.updateQuiz(quiz._id, quizTitle, filteredValue);
}
}
navigate('/teacher/dashboard');
} catch (error) {
2025-03-31 22:19:24 -04:00
window.alert(`Une erreur est survenue.\n Veuillez réessayer plus tard`);
console.log(error);
2024-03-29 20:08:34 -04:00
}
};
// I do not know what this does but do not remove
if (!isNewQuiz && !quiz) {
return <div>Chargement...</div>;
}
const handleSaveImage = async () => {
try {
const inputElement = document.getElementById('file-input') as HTMLInputElement;
if (!inputElement?.files || inputElement.files.length === 0) {
setDialogOpen(true);
return;
}
2024-03-29 20:08:34 -04:00
if (!inputElement.files || inputElement.files.length === 0) {
2025-03-31 22:19:24 -04:00
window.alert("Veuillez d'abord choisir une image à téléverser.");
2024-03-29 20:08:34 -04:00
return;
}
const imageUrl = await ApiService.uploadImage(inputElement.files[0]);
// Check for errors
2025-03-31 22:19:24 -04:00
if (imageUrl.indexOf('ERROR') >= 0) {
window.alert(`Une erreur est survenue.\n Veuillez réessayer plus tard`);
2024-03-29 20:08:34 -04:00
return;
}
2025-03-31 22:19:24 -04:00
setImageLinks((prevLinks) => [...prevLinks, imageUrl]);
// Reset the file input element
if (fileInputRef.current) {
fileInputRef.current.value = '';
}
} catch (error) {
2025-03-31 22:19:24 -04:00
window.alert(`Une erreur est survenue.\n${error}\nVeuillez réessayer plus tard.`);
2024-03-29 20:08:34 -04:00
}
};
const handleCopyToClipboard = async (link: string) => {
navigator.clipboard.writeText(link);
2025-03-31 22:19:24 -04:00
};
2024-03-29 20:08:34 -04:00
return (
2025-03-31 22:19:24 -04:00
<div className="quizEditor">
<div
className="editHeader"
style={{
display: 'flex',
justifyContent: 'space-between',
alignItems: 'center',
marginBottom: '32px'
}}
>
2024-03-29 20:08:34 -04:00
<ReturnButton
askConfirm
message={`Êtes-vous sûr de vouloir quitter l'éditeur sans sauvegarder le questionnaire?`}
/>
2025-03-31 22:19:24 -04:00
<Button
variant="contained"
onClick={handleQuizSave}
sx={{ display: 'flex', alignItems: 'center' }}
>
<SaveIcon sx={{ fontSize: 20 }} />
Enregistrer
</Button>
2024-03-29 20:08:34 -04:00
</div>
2025-03-31 22:19:24 -04:00
<div style={{ textAlign: 'center', marginTop: '30px' }}>
<div className="title">Éditeur de quiz</div>
</div>
2025-03-31 22:19:24 -04:00
<div style={{ display: 'flex', justifyContent: 'space-between', alignItems: 'center' }}>
<TextField
onChange={handleQuizTitleChange}
value={quizTitle}
placeholder="Titre du quiz"
label="Titre du quiz"
sx={{ width: '200px', marginTop: '50px' }}
/>
2025-03-31 22:19:24 -04:00
<NativeSelect
id="select-folder"
color="primary"
value={selectedFolder}
onChange={handleSelectFolder}
disabled={!isNewQuiz}
style={{ marginBottom: '16px', width: '200px', marginTop: '50px' }}
>
<option disabled value="">
Choisir un dossier...
</option>
{folders.map((folder: FolderType) => (
<option value={folder._id} key={folder._id}>
{folder.title}
</option>
))}
</NativeSelect>
</div>
<Divider style={{ margin: '16px 0' }} />
2025-03-31 22:19:24 -04:00
<div className="editSection">
<div className="edit">
<Editor
label="Contenu GIFT du quiz:"
initialValue={value}
2025-03-31 22:19:24 -04:00
onEditorChange={handleUpdatePreview}
/>
2024-03-29 20:08:34 -04:00
2025-03-31 22:19:24 -04:00
<div className="images">
<div className="upload">
2024-03-29 20:08:34 -04:00
<label className="dropArea">
2025-03-31 22:19:24 -04:00
<input
type="file"
id="file-input"
className="file-input"
accept="image/jpeg, image/png"
multiple
ref={fileInputRef}
/>
<Button
2025-03-31 22:19:24 -04:00
variant="outlined"
aria-label="Téléverser"
onClick={handleSaveImage}
>
Téléverser <Upload />
</Button>
</label>
2025-03-31 22:19:24 -04:00
<Dialog open={dialogOpen} onClose={() => setDialogOpen(false)}>
<DialogTitle>Erreur</DialogTitle>
<DialogContent>
Veuillez d&apos;abord choisir une image à téléverser.
</DialogContent>
<DialogActions>
<Button onClick={() => setDialogOpen(false)} color="primary">
OK
</Button>
</DialogActions>
</Dialog>
2024-03-29 20:08:34 -04:00
</div>
<h4>Mes images :</h4>
2024-03-29 20:08:34 -04:00
<div>
2025-03-31 22:19:24 -04:00
<div>
<div style={{ display: 'inline' }}>(Voir section </div>
<a
href="#images-section"
style={{ textDecoration: 'none' }}
onClick={scrollToImagesSection}
>
<u>
<em>
<h4 style={{ display: 'inline' }}> 9. Images </h4>
</em>
</u>
</a>
<div style={{ display: 'inline' }}> ci-dessous</div>
<div style={{ display: 'inline' }}>)</div>
<br />
<em> - Cliquez sur un lien pour le copier</em>
2025-03-31 22:19:24 -04:00
</div>
<ul>
{imageLinks.map((link, index) => {
2025-03-31 22:19:24 -04:00
const imgTag = `![alt_text](${escapeForGIFT(
link
)} "texte de l'infobulle")`;
return (
<li key={index}>
2025-03-31 22:19:24 -04:00
<code onClick={() => handleCopyToClipboard(imgTag)}>
{imgTag}
</code>
</li>
);
})}
2024-03-29 20:08:34 -04:00
</ul>
</div>
</div>
<GiftCheatSheet />
</div>
2025-03-31 22:19:24 -04:00
<div className="preview">
2024-03-29 20:08:34 -04:00
<div className="preview-column">
<h4>Prévisualisation</h4>
2024-03-29 20:08:34 -04:00
<div>
<GIFTTemplatePreview questions={filteredValue} />
</div>
</div>
</div>
</div>
{showScrollButton && (
<Button
onClick={scrollToTop}
variant="contained"
color="primary"
style={scrollToTopButtonStyle}
title="Scroll to top"
>
</Button>
)}
2024-03-29 20:08:34 -04:00
</div>
);
};
const scrollToTopButtonStyle: CSSProperties = {
position: 'fixed',
bottom: '40px',
right: '50px',
padding: '10px',
fontSize: '16px',
color: 'white',
backgroundColor: '#5271ff',
border: 'none',
cursor: 'pointer',
2025-03-31 22:19:24 -04:00
zIndex: 1000
};
2024-03-29 20:08:34 -04:00
export default QuizForm;