This commit is contained in:
Skylar Grant 2024-08-13 16:28:07 -04:00
parent da26029330
commit e374ef1677
2 changed files with 70 additions and 59 deletions

View File

@ -1,16 +1,15 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="en">
<head>
<head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CSV Filterer</title> <title>CSV Filterer</title>
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet">
<script src="CSVFilterer.js"></script> <script src="CSVFilterer.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/PapaParse/5.4.1/papaparse.js" integrity="sha512-M0cjXJTonbWEdLI3HJIoJSQBb9980RWmOCk+tvWkhgFrAZqSSIg1+1Db/vDu7Qk9W3L90gBynve17PYvarjfQA==" crossorigin="anonymous" referrerpolicy="no-referrer"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/PapaParse/5.4.1/papaparse.js" integrity="sha512-M0cjXJTonbWEdLI3HJIoJSQBb9980RWmOCk+tvWkhgFrAZqSSIg1+1Db/vDu7Qk9W3L90gBynve17PYvarjfQA==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
</head> </head>
<body class="bg-gray-100 flex items-center justify-center min-h-screen"> <body class="bg-gray-100 flex items-center justify-center min-h-screen">
<div class="bg-white p-8 rounded-lg shadow-lg w-full max-w-2xl"> <div class="bg-white p-8 rounded-lg shadow-lg w-full max-w-2xl">
<h1 class="text-2xl font-semibold text-gray-800 mb-6 text-center">CSV Filterer</h1> <h1 class="text-2xl font-semibold text-gray-800 mb-6 text-center">CSV Filterer</h1>
@ -52,7 +51,10 @@
Enrollments: Not Filtered<br />Users: Not Parsed Enrollments: Not Filtered<br />Users: Not Parsed
</span> </span>
</div> </div>
</div>
</body>
<div class="flex items-center justify-center space-x-4"" id="downloadLinkContainer">
<a href="google.com" id="downloadLink" style="display: none;">Download CSV File</a>
</div>
</div>
</body>
</html> </html>

View File

@ -56,6 +56,7 @@ function filterEnrollments(document) {
states.enrollments = "Filtered"; states.enrollments = "Filtered";
refreshStatus(document); refreshStatus(document);
console.log(JSON.stringify(enrollments));
}, },
error: function(error) { error: function(error) {
console.error(error); console.error(error);
@ -83,6 +84,7 @@ const parseUsers = (usersFileInputs, document) => {
}); });
states.users = "Parsed"; states.users = "Parsed";
refreshStatus(document); refreshStatus(document);
console.log(users);
}, },
error: function(error) { error: function(error) {
console.error(error); console.error(error);
@ -98,21 +100,28 @@ const generateList = (document) => {
enrollments.forEach(e => { enrollments.forEach(e => {
// Get the associated user // Get the associated user
const user = users.get(e.userId); const user = users.get(e.userId);
preCSV.push(`${user.userId},${e.timestamp}.${user.fName},${user.sName},${user.uName}`); preCSV.push(`${user.userId},${e.timestamp},${user.fName},${user.sName},${user.uName}`);
}); });
const postCSV = preCSV.join('\n');
generateCSV(preCSV, document); generateCSV(postCSV, document);
} }
const generateCSV = (input, document) => { const generateCSV = (input, document) => {
const downloadLink = document.getElementById("downloadBtn"); const downloadLink = document.getElementById("downloadLink");
const blob = new Blob([input], { type: 'text/csv' }); const blob = new Blob([input], { type: 'text/csv' });
const url = URL.createObjectURL(blob); const url = URL.createObjectURL(blob);
console.log(url);
downloadLink.style = "display: inline;";
downloadLink.href = url;
downloadLink.download = 'Instructors.CSV';
downloadLink.onclick = `window.location = ${url}` // downloadBtn.onclick = function() {
downloadLink.style.display = 'block'; // const a = document.createElement('a');
downloadLink.textContent = 'Download Filtered CSV'; // a.href = url;
// a.download = 'data.csv';
// document.body.appendChild(a);
// };
} }
function refreshStatus(document) { function refreshStatus(document) {