2025-04-22 09:33:55 -07:00
|
|
|
|
import React, { useState } from "react";
|
|
|
|
|
|
import "../scss/components/_assignment.scss";
|
2025-04-30 12:22:48 -07:00
|
|
|
|
import { useEffect } from "react";
|
|
|
|
|
|
|
2025-04-22 09:33:55 -07:00
|
|
|
|
|
|
|
|
|
|
const AssignmentPage = () => {
|
2025-04-22 12:05:41 -07:00
|
|
|
|
const [studentName, setStudentName] = useState("");
|
|
|
|
|
|
const [campID, setCampID] = useState("");
|
|
|
|
|
|
const [programID, setProgramID] = useState("");
|
|
|
|
|
|
const [password, setPassword] = useState("");
|
2025-04-22 09:33:55 -07:00
|
|
|
|
const [title, setTitle] = useState("");
|
|
|
|
|
|
const [description, setDescription] = useState("");
|
|
|
|
|
|
const [file, setFile] = useState(null);
|
|
|
|
|
|
const [projects, setProjects] = useState([]);
|
|
|
|
|
|
const [showModal, setShowModal] = useState(false);
|
|
|
|
|
|
const [editingIndex, setEditingIndex] = useState(null);
|
|
|
|
|
|
|
2025-04-30 12:22:48 -07:00
|
|
|
|
useEffect(() => {
|
|
|
|
|
|
document.title = "Assignment";
|
|
|
|
|
|
}, []);
|
|
|
|
|
|
|
|
|
|
|
|
|
2025-04-22 12:05:41 -07:00
|
|
|
|
const resetForm = () => {
|
|
|
|
|
|
setStudentName("");
|
|
|
|
|
|
setCampID("");
|
|
|
|
|
|
setProgramID("");
|
|
|
|
|
|
setPassword("");
|
|
|
|
|
|
setTitle("");
|
|
|
|
|
|
setDescription("");
|
|
|
|
|
|
setFile(null);
|
|
|
|
|
|
setEditingIndex(null);
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
const handleSubmit = (e) => {
|
2025-04-22 09:33:55 -07:00
|
|
|
|
e.preventDefault();
|
|
|
|
|
|
|
2025-04-22 12:05:41 -07:00
|
|
|
|
const newProject = {
|
|
|
|
|
|
studentName,
|
|
|
|
|
|
campID,
|
|
|
|
|
|
programID,
|
|
|
|
|
|
title,
|
|
|
|
|
|
description,
|
|
|
|
|
|
fileName: file ? file.name : null,
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
if (editingIndex !== null) {
|
|
|
|
|
|
const updatedProjects = [...projects];
|
|
|
|
|
|
updatedProjects[editingIndex] = newProject;
|
|
|
|
|
|
setProjects(updatedProjects);
|
|
|
|
|
|
} else {
|
|
|
|
|
|
setProjects([...projects, newProject]);
|
2025-04-22 09:33:55 -07:00
|
|
|
|
}
|
2025-04-22 12:05:41 -07:00
|
|
|
|
|
|
|
|
|
|
alert(editingIndex !== null ? "Assignment updated!" : "Assignment submitted!");
|
|
|
|
|
|
resetForm();
|
|
|
|
|
|
setShowModal(false);
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
const handleEdit = (index) => {
|
|
|
|
|
|
const project = projects[index];
|
|
|
|
|
|
setStudentName(project.studentName);
|
|
|
|
|
|
setCampID(project.campID);
|
|
|
|
|
|
setProgramID(project.programID);
|
|
|
|
|
|
setTitle(project.title);
|
|
|
|
|
|
setDescription(project.description);
|
2025-04-30 12:22:48 -07:00
|
|
|
|
setFile(null);
|
2025-04-22 12:05:41 -07:00
|
|
|
|
setEditingIndex(index);
|
|
|
|
|
|
setShowModal(true);
|
2025-04-22 09:33:55 -07:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
const handleDelete = (index) => {
|
|
|
|
|
|
const updated = projects.filter((_, i) => i !== index);
|
|
|
|
|
|
setProjects(updated);
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
|
<div className="assignment-page">
|
2025-04-30 12:22:48 -07:00
|
|
|
|
<div className="assignment-header-box">
|
2025-05-02 11:27:34 -07:00
|
|
|
|
<h2>Assignments</h2>
|
2025-04-30 12:22:48 -07:00
|
|
|
|
<button onClick={() => { resetForm(); setShowModal(true); }}>➕ Add New</button>
|
|
|
|
|
|
</div>
|
2025-04-22 09:33:55 -07:00
|
|
|
|
|
|
|
|
|
|
{showModal && (
|
|
|
|
|
|
<div className="modal-overlay">
|
|
|
|
|
|
<div className="modal">
|
|
|
|
|
|
<h3>{editingIndex !== null ? "Edit Assignment" : "New Assignment"}</h3>
|
2025-04-22 12:05:41 -07:00
|
|
|
|
<form onSubmit={handleSubmit}>
|
|
|
|
|
|
<div>
|
|
|
|
|
|
<label>Student Name</label>
|
2025-04-30 12:22:48 -07:00
|
|
|
|
<input type="text" value={studentName} onChange={(e) => setStudentName(e.target.value)} required />
|
2025-04-22 12:05:41 -07:00
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div>
|
|
|
|
|
|
<label>Camp ID</label>
|
2025-04-30 12:22:48 -07:00
|
|
|
|
<input type="text" value={campID} onChange={(e) => setCampID(e.target.value)} required />
|
2025-04-22 12:05:41 -07:00
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div>
|
|
|
|
|
|
<label>Program ID</label>
|
2025-04-30 12:22:48 -07:00
|
|
|
|
<input type="text" value={programID} onChange={(e) => setProgramID(e.target.value)} required />
|
2025-04-22 12:05:41 -07:00
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div>
|
|
|
|
|
|
<label>Password</label>
|
2025-04-30 12:22:48 -07:00
|
|
|
|
<input type="password" value={password} onChange={(e) => setPassword(e.target.value)} required />
|
2025-04-22 12:05:41 -07:00
|
|
|
|
</div>
|
|
|
|
|
|
|
2025-04-22 09:33:55 -07:00
|
|
|
|
<div>
|
|
|
|
|
|
<label>Assignment Title</label>
|
2025-04-30 12:22:48 -07:00
|
|
|
|
<input type="text" value={title} onChange={(e) => setTitle(e.target.value)} required />
|
2025-04-22 09:33:55 -07:00
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div>
|
|
|
|
|
|
<label>Description</label>
|
2025-04-30 12:22:48 -07:00
|
|
|
|
<textarea value={description} onChange={(e) => setDescription(e.target.value)} required></textarea>
|
2025-04-22 09:33:55 -07:00
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div>
|
2025-04-22 12:05:41 -07:00
|
|
|
|
<label>File Upload (optional)</label>
|
2025-04-30 12:22:48 -07:00
|
|
|
|
<input type="file" onChange={(e) => setFile(e.target.files[0])} />
|
2025-04-22 09:33:55 -07:00
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div className="modal-buttons">
|
2025-04-22 12:05:41 -07:00
|
|
|
|
<button type="submit">{editingIndex !== null ? "Update" : "Submit"}</button>
|
2025-04-30 12:22:48 -07:00
|
|
|
|
<button type="button" onClick={() => { resetForm(); setShowModal(false); }}>Cancel</button>
|
2025-04-22 09:33:55 -07:00
|
|
|
|
</div>
|
|
|
|
|
|
</form>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
)}
|
|
|
|
|
|
|
2025-04-30 12:22:48 -07:00
|
|
|
|
{projects.length > 0 && (
|
|
|
|
|
|
<div className="project-list">
|
|
|
|
|
|
{/* <h3>📋 Projects</h3> */}
|
|
|
|
|
|
{projects.map((project, index) => (
|
|
|
|
|
|
<div key={index} className="project-item">
|
|
|
|
|
|
<div className="project-meta">
|
|
|
|
|
|
<strong>Student Name: {project.studentName}</strong> | CampID: {project.campID} | ProgramID: {project.programID}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<h4>{project.title}</h4>
|
|
|
|
|
|
<p>{project.description}</p>
|
|
|
|
|
|
{project.fileName && <p><strong>Uploaded File:</strong> {project.fileName}</p>}
|
|
|
|
|
|
|
|
|
|
|
|
<div className="action-buttons">
|
|
|
|
|
|
<button onClick={() => handleEdit(index)}>✏️ Edit</button>
|
|
|
|
|
|
<button onClick={() => handleDelete(index)}>🗑️ Delete</button>
|
|
|
|
|
|
<button onClick={() => alert("QR feature coming soon!")}>📎 QR</button>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
))}
|
|
|
|
|
|
</div>
|
2025-04-22 12:05:41 -07:00
|
|
|
|
)}
|
2025-04-22 09:33:55 -07:00
|
|
|
|
</div>
|
|
|
|
|
|
);
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
export default AssignmentPage;
|