Consolidated-csv

This commit is contained in:
Harshitha Shetty
2025-01-23 11:08:30 +05:30
parent 5b08ff3cd7
commit a28272400e
3 changed files with 162 additions and 45 deletions

View File

@@ -17,6 +17,7 @@
"mongoose": "^8.3.1",
"react": "^18.2.0",
"react-bootstrap": "^2.10.2",
"react-csv": "^2.2.2",
"react-dom": "^18.2.0",
"react-icons": "^5.4.0",
"react-router-dom": "^6.28.0",
@@ -15339,6 +15340,11 @@
}
}
},
"node_modules/react-csv": {
"version": "2.2.2",
"resolved": "https://registry.npmjs.org/react-csv/-/react-csv-2.2.2.tgz",
"integrity": "sha512-RG5hOcZKZFigIGE8LxIEV/OgS1vigFQT4EkaHeKgyuCbUAu9Nbd/1RYq++bJcJJ9VOqO/n9TZRADsXNDR4VEpw=="
},
"node_modules/react-dev-utils": {
"version": "12.0.1",
"resolved": "https://registry.npmjs.org/react-dev-utils/-/react-dev-utils-12.0.1.tgz",

View File

@@ -12,6 +12,7 @@
"mongoose": "^8.3.1",
"react": "^18.2.0",
"react-bootstrap": "^2.10.2",
"react-csv": "^2.2.2",
"react-dom": "^18.2.0",
"react-icons": "^5.4.0",
"react-router-dom": "^6.28.0",

View File

@@ -1,5 +1,87 @@
// import React, { useState, useEffect } from "react";
// import axios from "axios";
// const ConsolidatedTable = () => {
// const [data, setData] = useState([]);
// const [loading, setLoading] = useState(true);
// useEffect(() => {
// const fetchData = async () => {
// try {
// const response = await axios.get("http://localhost:8080/api/table/consolidated-table");
// setData(response.data);
// setLoading(false);
// } catch (error) {
// console.error("Error fetching table data:", error);
// setLoading(false);
// }
// };
// fetchData();
// }, []);
// if (loading) {
// return <div>Loading...</div>;
// }
// return (
// <div>
// <h1>Consolidated Table</h1>
// <table border="1" style={{ width: "100%", textAlign: "left" }}>
// <thead>
// <tr>
// <th>Semester</th>
// <th>Course Code</th>
// <th>Course Name</th>
// <th>Exam Type</th>
// <th>Year</th>
// <th>Marks</th>
// <th>Name</th>
// <th>Affiliation/College</th>
// <th>Highest Qualification</th>
// <th>Career Experience</th>
// <th>Oral/Practical</th>
// <th>Assessment</th>
// <th>Reassessment</th>
// <th>Paper Setting</th>
// <th>Moderation</th>
// <th>PwD Paper Setting</th>
// </tr>
// </thead>
// <tbody>
// {data.map((row, index) => (
// <tr key={index}>
// <td>{row.semester}</td>
// <td>{row.courseCode}</td>
// <td>{row.courseName}</td>
// <td>{row.examType}</td>
// <td>{row.year}</td>
// <td>{row.marks}</td>
// <td>{row.Name}</td>
// <td>{row.affiliation}</td>
// <td>{row.qualification}</td>
// <td>{row.experience}</td>
// <td>{row.oralPractical}</td>
// <td>{row.assessment}</td>
// <td>{row.reassessment}</td>
// <td>{row.paperSetting}</td>
// <td>{row.moderation}</td>
// <td>{row.pwdPaperSetting}</td>
// </tr>
// ))}
// </tbody>
// </table>
// </div>
// );
// };
// export default ConsolidatedTable;
import React, { useState, useEffect } from "react";
import axios from "axios";
import { CSVLink } from "react-csv";
const ConsolidatedTable = () => {
const [data, setData] = useState([]);
@@ -24,10 +106,20 @@ const ConsolidatedTable = () => {
return <div>Loading...</div>;
}
// Extract unique faculty names
const uniqueTeachers = [...new Set(data.map((row) => row.Name))];
return (
<div>
<h1>Consolidated Table</h1>
<table border="1" style={{ width: "100%", textAlign: "left" }}>
<h1>Faculty Tables with Download Option</h1>
{uniqueTeachers.map((teacher, index) => {
// Filter rows for the current teacher
const teacherData = data.filter((row) => row.Name === teacher);
return (
<div key={index} style={{ marginBottom: "20px" }}>
<h2>{teacher}'s Table</h2>
<table border="1" style={{ width: "100%", textAlign: "left", marginBottom: "10px" }}>
<thead>
<tr>
<th>Semester</th>
@@ -49,8 +141,8 @@ const ConsolidatedTable = () => {
</tr>
</thead>
<tbody>
{data.map((row, index) => (
<tr key={index}>
{teacherData.map((row, idx) => (
<tr key={idx}>
<td>{row.semester}</td>
<td>{row.courseCode}</td>
<td>{row.courseName}</td>
@@ -71,6 +163,24 @@ const ConsolidatedTable = () => {
))}
</tbody>
</table>
{/* CSV Download Button */}
<CSVLink
data={teacherData}
filename={`${teacher.replace(/\s+/g, "_")}_table.csv`}
className="btn btn-primary"
style={{
padding: "10px 15px",
backgroundColor: "#007bff",
color: "white",
textDecoration: "none",
borderRadius: "5px",
}}
>
Download CSV
</CSVLink>
</div>
);
})}
</div>
);
};