fetching assignment with API
This commit is contained in:
parent
55a9e8170d
commit
cbc2d631fb
2 changed files with 89 additions and 16 deletions
|
|
@ -1,7 +1,5 @@
|
||||||
import React, { useState } from "react";
|
import React, { useState, useEffect } from "react";
|
||||||
import "../scss/components/_assignment.scss";
|
import "../scss/components/_assignment.scss";
|
||||||
import { useEffect } from "react";
|
|
||||||
|
|
||||||
|
|
||||||
const AssignmentPage = () => {
|
const AssignmentPage = () => {
|
||||||
const [studentName, setStudentName] = useState("");
|
const [studentName, setStudentName] = useState("");
|
||||||
|
|
@ -17,8 +15,30 @@ const AssignmentPage = () => {
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
document.title = "Assignment";
|
document.title = "Assignment";
|
||||||
|
fetchAssignments();
|
||||||
}, []);
|
}, []);
|
||||||
|
|
||||||
|
const fetchAssignments = async () => {
|
||||||
|
try {
|
||||||
|
const res = await fetch("http://localhost:8082/assignments/instructor/9", {
|
||||||
|
// credentials: "include",
|
||||||
|
});
|
||||||
|
if (!res.ok) throw new Error("Failed to fetch");
|
||||||
|
|
||||||
|
const data = await res.json();
|
||||||
|
console.log("Fetched assignments:", data); // ✅ This line shows what’s coming from the API
|
||||||
|
setProjects(data);
|
||||||
|
|
||||||
|
// Optional: Remove duplicate assignment IDs if needed
|
||||||
|
const unique = Array.from(
|
||||||
|
new Map(data.map((item) => [item.assignmentid, item])).values()
|
||||||
|
);
|
||||||
|
|
||||||
|
setProjects(unique);
|
||||||
|
} catch (error) {
|
||||||
|
console.error("Error fetching assignments:", error);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
const resetForm = () => {
|
const resetForm = () => {
|
||||||
setStudentName("");
|
setStudentName("");
|
||||||
|
|
@ -35,9 +55,9 @@ const AssignmentPage = () => {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
|
|
||||||
const newProject = {
|
const newProject = {
|
||||||
studentName,
|
studentname: studentName,
|
||||||
campID,
|
campid: campID,
|
||||||
programID,
|
programid: programID,
|
||||||
title,
|
title,
|
||||||
description,
|
description,
|
||||||
fileName: file ? file.name : null,
|
fileName: file ? file.name : null,
|
||||||
|
|
@ -58,11 +78,11 @@ const AssignmentPage = () => {
|
||||||
|
|
||||||
const handleEdit = (index) => {
|
const handleEdit = (index) => {
|
||||||
const project = projects[index];
|
const project = projects[index];
|
||||||
setStudentName(project.studentName);
|
setStudentName(project.studentname || project.studentName || "");
|
||||||
setCampID(project.campID);
|
setCampID(project.campid || project.campID || "");
|
||||||
setProgramID(project.programID);
|
setProgramID(project.programid || project.programID || "");
|
||||||
setTitle(project.title);
|
setTitle(project.title || "");
|
||||||
setDescription(project.description);
|
setDescription(project.description || "");
|
||||||
setFile(null);
|
setFile(null);
|
||||||
setEditingIndex(index);
|
setEditingIndex(index);
|
||||||
setShowModal(true);
|
setShowModal(true);
|
||||||
|
|
@ -131,16 +151,30 @@ const AssignmentPage = () => {
|
||||||
|
|
||||||
{projects.length > 0 && (
|
{projects.length > 0 && (
|
||||||
<div className="project-list">
|
<div className="project-list">
|
||||||
{/* <h3>📋 Projects</h3> */}
|
|
||||||
{projects.map((project, index) => (
|
{projects.map((project, index) => (
|
||||||
<div key={index} className="project-item">
|
<div key={index} className="project-item">
|
||||||
<div className="project-meta">
|
<div className="project-meta">
|
||||||
<strong>Student Name: {project.studentName}</strong> | CampID: {project.campID} | ProgramID: {project.programID}
|
<strong>Student Name:</strong> {project.studentname || project.studentName} |{" "}
|
||||||
|
<strong>CampID:</strong> {project.campid || project.campID} |{" "}
|
||||||
|
<strong>ProgramID:</strong> {project.programid || project.programID}
|
||||||
</div>
|
</div>
|
||||||
<h4>{project.title}</h4>
|
|
||||||
<p>{project.description}</p>
|
{project.title && <h4>{project.title}</h4>}
|
||||||
|
{project.description && <p>{project.description}</p>}
|
||||||
{project.fileName && <p><strong>Uploaded File:</strong> {project.fileName}</p>}
|
{project.fileName && <p><strong>Uploaded File:</strong> {project.fileName}</p>}
|
||||||
|
|
||||||
|
{project.assignmenturl && (
|
||||||
|
<p>
|
||||||
|
<a href={project.assignmenturl} target="_blank" rel="noopener noreferrer">View Assignment</a>
|
||||||
|
</p>
|
||||||
|
)}
|
||||||
|
{project.originalfile && (
|
||||||
|
<p>
|
||||||
|
<a href={project.originalfile} target="_blank" rel="noopener noreferrer">Original File</a> |{" "}
|
||||||
|
<a href={project.editablefile} target="_blank" rel="noopener noreferrer">Editable File</a>
|
||||||
|
</p>
|
||||||
|
)}
|
||||||
|
|
||||||
<div className="action-buttons">
|
<div className="action-buttons">
|
||||||
<button onClick={() => handleEdit(index)}>✏️ Edit</button>
|
<button onClick={() => handleEdit(index)}>✏️ Edit</button>
|
||||||
<button onClick={() => handleDelete(index)}>🗑️ Delete</button>
|
<button onClick={() => handleDelete(index)}>🗑️ Delete</button>
|
||||||
|
|
|
||||||
|
|
@ -297,3 +297,42 @@
|
||||||
0 0 30px rgba(0, 191, 255, 0.9);
|
0 0 30px rgba(0, 191, 255, 0.9);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.assignment-list-box {
|
||||||
|
margin-top: 40px;
|
||||||
|
|
||||||
|
h3 {
|
||||||
|
font-size: 1.5rem;
|
||||||
|
margin-bottom: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.assignment-cards {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
|
||||||
|
gap: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.assignment-card {
|
||||||
|
background: #f5f5f5;
|
||||||
|
padding: 20px;
|
||||||
|
border-radius: 12px;
|
||||||
|
box-shadow: 0 2px 6px rgba(0,0,0,0.1);
|
||||||
|
transition: all 0.3s ease;
|
||||||
|
|
||||||
|
p {
|
||||||
|
margin: 6px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: #2c7be5;
|
||||||
|
text-decoration: underline;
|
||||||
|
word-break: break-word;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
transform: translateY(-4px);
|
||||||
|
box-shadow: 0 4px 12px rgba(0,0,0,0.15);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue