modified assignment page

This commit is contained in:
Jae Young Ahn 2025-04-22 12:05:41 -07:00
parent 88641d24fc
commit ecd11d7c07
2 changed files with 282 additions and 126 deletions

View file

@ -2,6 +2,10 @@ import React, { useState } from "react";
import "../scss/components/_assignment.scss"; import "../scss/components/_assignment.scss";
const AssignmentPage = () => { const AssignmentPage = () => {
const [studentName, setStudentName] = useState("");
const [campID, setCampID] = useState("");
const [programID, setProgramID] = useState("");
const [password, setPassword] = useState("");
const [title, setTitle] = useState(""); const [title, setTitle] = useState("");
const [description, setDescription] = useState(""); const [description, setDescription] = useState("");
const [file, setFile] = useState(null); const [file, setFile] = useState(null);
@ -9,34 +13,54 @@ const AssignmentPage = () => {
const [showModal, setShowModal] = useState(false); const [showModal, setShowModal] = useState(false);
const [editingIndex, setEditingIndex] = useState(null); const [editingIndex, setEditingIndex] = useState(null);
const handleSubmit = async (e) => { const resetForm = () => {
setStudentName("");
setCampID("");
setProgramID("");
setPassword("");
setTitle("");
setDescription("");
setFile(null);
setEditingIndex(null);
};
const handleSubmit = (e) => {
e.preventDefault(); e.preventDefault();
const formData = new FormData(); const newProject = {
formData.append("title", title); studentName,
formData.append("description", description); campID,
formData.append("file", file); programID,
title,
description,
fileName: file ? file.name : null,
};
try { if (editingIndex !== null) {
const res = await fetch("/api/assignments", { // Edit mode: update the project at the index
method: "POST", const updatedProjects = [...projects];
body: formData, updatedProjects[editingIndex] = newProject;
}); setProjects(updatedProjects);
} else {
if (res.ok) { // New submission
alert("Successfully Uploaded!"); setProjects([...projects, newProject]);
setProjects([...projects, { title, description }]);
setTitle("");
setDescription("");
setFile(null);
setShowModal(false);
} else {
alert("Fail Uploading!");
}
} catch (err) {
console.error(err);
alert("Server Error!");
} }
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);
setFile(null); // File can't be set again for editing, usually. You could add note about this.
setEditingIndex(index);
setShowModal(true);
}; };
const handleDelete = (index) => { const handleDelete = (index) => {
@ -47,13 +71,53 @@ const AssignmentPage = () => {
return ( return (
<div className="assignment-page"> <div className="assignment-page">
<h2>📘 Assignments</h2> <h2>📘 Assignments</h2>
<button onClick={() => setShowModal(true)}> Create New</button> <button onClick={() => { resetForm(); setShowModal(true); }}> Add New</button>
{showModal && ( {showModal && (
<div className="modal-overlay"> <div className="modal-overlay">
<div className="modal"> <div className="modal">
<h3>{editingIndex !== null ? "Edit Assignment" : "New Assignment"}</h3> <h3>{editingIndex !== null ? "Edit Assignment" : "New Assignment"}</h3>
<form onSubmit={handleSubmit} encType="multipart/form-data"> <form onSubmit={handleSubmit}>
<div>
<label>Student Name</label>
<input
type="text"
value={studentName}
onChange={(e) => setStudentName(e.target.value)}
required
/>
</div>
<div>
<label>Camp ID</label>
<input
type="text"
value={campID}
onChange={(e) => setCampID(e.target.value)}
required
/>
</div>
<div>
<label>Program ID</label>
<input
type="text"
value={programID}
onChange={(e) => setProgramID(e.target.value)}
required
/>
</div>
<div>
<label>Password</label>
<input
type="password"
value={password}
onChange={(e) => setPassword(e.target.value)}
required
/>
</div>
<div> <div>
<label>Assignment Title</label> <label>Assignment Title</label>
<input <input
@ -74,23 +138,20 @@ const AssignmentPage = () => {
</div> </div>
<div> <div>
<label>File Upload</label> <label>File Upload (optional)</label>
<input <input
type="file" type="file"
onChange={(e) => setFile(e.target.files[0])} onChange={(e) => setFile(e.target.files[0])}
required
/> />
</div> </div>
<div className="modal-buttons"> <div className="modal-buttons">
<button type="submit">Upload</button> <button type="submit">{editingIndex !== null ? "Update" : "Submit"}</button>
<button <button
type="button" type="button"
onClick={() => { onClick={() => {
resetForm();
setShowModal(false); setShowModal(false);
setTitle("");
setDescription("");
setFile(null);
}} }}
> >
Cancel Cancel
@ -102,16 +163,27 @@ const AssignmentPage = () => {
)} )}
<div className="project-list"> <div className="project-list">
<h3>📋 Projects</h3> <h3>📋 Projects</h3>
{projects.map((project, index) => ( {projects.map((project, index) => (
<div key={index} className="project-item"> <div key={index} className="project-item">
<h4>{project.title}</h4> <div className="project-meta">
<p>{project.description}</p> <strong>Student Name: {project.studentName}</strong> | CampID: {project.campID} | ProgramID: {project.programID}
<button onClick={() => alert("Edit not implemented in modal mode")}> Edit</button>
<button onClick={() => handleDelete(index)}>🗑 Delete</button>
</div>
))}
</div> </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>
</div> </div>
); );
}; };

View file

@ -45,106 +45,190 @@
} }
.project-list { .project-list {
margin-top: 30px; margin-top: 2rem;
.project-item { .project-item {
border: 1px solid #ddd; background: #ffffff;
padding: 12px; border: 1px solid #e0e0e0;
margin-bottom: 10px; border-radius: 12px;
border-radius: 6px; padding: 1.5rem;
background-color: #f9f9f9; margin-bottom: 1.5rem;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
h4 { transition: transform 0.2s ease, box-shadow 0.2s ease;
margin: 0 0 5px 0;
} // &:hover {
// transform: translateY(-2px);
button { // box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
margin-right: 10px; // }
padding: 6px 10px;
border: none; .project-meta {
border-radius: 4px; justify-content: space-between;
cursor: pointer; align-items: center;
margin-bottom: 0.75rem;
&:first-of-type { flex-wrap: wrap;
background-color: #ffa500;
color: white; strong {
color: #34495e;
&:hover {
background-color: #e59400;
}
} }
}
&:last-of-type {
background-color: #e74c3c; h4 {
color: white; margin: 0.5rem 0;
font-size: 1.2rem;
color: #2d3436;
}
p {
margin: 0.25rem 0;
color: #555;
line-height: 1.4;
strong {
color: #2d3436;
}
}
.action-buttons {
display: flex;
gap: 0.5rem;
margin-top: 0.75rem;
button {
background-color: #f4f4f4;
border: 1px solid #ddd;
border-radius: 6px;
padding: 0.4rem 0.8rem;
cursor: pointer;
font-size: 0.9rem;
transition: background-color 0.2s ease;
&:hover { &:hover {
background-color: #c0392b; background-color: #e9ecef;
}
&:nth-child(1) {
color: #2c3e50;
}
&:nth-child(2) {
color: #c0392b;
}
&:nth-child(3) {
color: #16a085;
} }
} }
} }
} }
} }
.modal-overlay { .modal-overlay {
position: fixed; position: fixed;
top: 0; top: 0;
left: 0; left: 0;
right: 0; width: 100%;
bottom: 0; height: 100%;
background: rgba(0, 0, 0, 0.5); background: rgba(0, 0, 0, 0.6);
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
z-index: 1000;
.modal { }
background: white;
padding: 20px; .modal {
border-radius: 10px; background: #fff;
width: 300px; padding: 2rem;
border-radius: 12px;
h3 { max-width: 500px;
margin-bottom: 10px; width: 100%;
} box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
animation: fadeIn 0.3s ease;
input, }
textarea {
width: 100%; .modal h3 {
margin-bottom: 10px; margin-bottom: 1rem;
padding: 8px; font-size: 1.5rem;
border: 1px solid #ccc; font-weight: 600;
border-radius: 4px; color: #333;
} }
.modal-buttons { .modal form > div {
display: flex; margin-bottom: 1rem;
justify-content: space-between; }
button { .modal label {
padding: 6px 12px; display: block;
border: none; font-size: 0.9rem;
border-radius: 4px; font-weight: 500;
cursor: pointer; margin-bottom: 0.4rem;
color: #555;
&:first-of-type { }
background-color: #28a745;
color: white; .modal input[type="text"],
.modal input[type="password"],
&:hover { .modal input[type="file"],
background-color: #218838; .modal textarea {
} width: 100%;
} padding: 0.6rem 0.8rem;
border: 1px solid #ccc;
&:last-of-type { border-radius: 6px;
background-color: #6c757d; font-size: 0.95rem;
color: white; transition: border-color 0.2s ease;
&:hover { &:focus {
background-color: #5a6268; border-color: #007bff;
} outline: none;
}
}
}
} }
} }
}
.modal textarea {
resize: vertical;
min-height: 80px;
}
.modal-buttons {
display: flex;
justify-content: flex-end;
gap: 1rem;
margin-top: 1.5rem;
}
.modal-buttons button {
padding: 0.6rem 1.2rem;
font-size: 0.95rem;
border: none;
border-radius: 6px;
cursor: pointer;
transition: background 0.2s ease;
}
.modal-buttons button[type="submit"] {
background-color: #ff4b2b;
color: #fff;
&:hover {
background-color: #FF2600;
}
}
.modal-buttons button[type="button"] {
background-color: #e0e0e0;
color: #333;
&:hover {
background-color: #cfcfcf;
}
}
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(-10px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
}