From a615a390ff731ac4ccfe6aa54cfc4e91b39b9512 Mon Sep 17 00:00:00 2001 From: max-jeronimo Date: Wed, 3 Sep 2025 18:41:00 -0400 Subject: [PATCH 01/10] made a bunch of changes - doesnt necessarily work yet --- public/form.html | 30 +++++++++++++++++++ public/index.html | 2 ++ public/js/main.js | 71 +++++++++++++++++++++++++++++++++++---------- public/results.html | 29 ++++++++++++++++++ server.improved.js | 30 ++++++++++--------- 5 files changed, 133 insertions(+), 29 deletions(-) create mode 100644 public/form.html create mode 100644 public/results.html diff --git a/public/form.html b/public/form.html new file mode 100644 index 0000000..44e61f7 --- /dev/null +++ b/public/form.html @@ -0,0 +1,30 @@ + + + + CS4241 Assignment 2 + + + + + + + + +

Add A New Album

+
+ +
+ + +
+ + +
+ + +
+ + +
+ + diff --git a/public/index.html b/public/index.html index 59d90d3..cbd642c 100644 --- a/public/index.html +++ b/public/index.html @@ -14,5 +14,7 @@ + View All Results + Add a New Album diff --git a/public/js/main.js b/public/js/main.js index cee907b..a08ab73 100644 --- a/public/js/main.js +++ b/public/js/main.js @@ -1,27 +1,68 @@ // FRONT-END (CLIENT) JAVASCRIPT HERE +const displayResults = async function () { + try { + const response = await fetch("/results") + const data = await response.json() + + const tbody = document.querySelector("#results-table tbody") + tbody.innerHTML = "" + + data.forEach((item) => { + const tr = document.createElement("tr"); + tr.innerHTML = ` + ${item.album} + ${item.artist} + ${item.year} + ${item.songs} + ` + tbody.appendChild(tr) + + }) + } catch (err) { + console.error("Error in getting the results from the server:", err) + } +} + const submit = async function( event ) { - // stop form submission from trying to load - // a new .html page for displaying results... - // this was the original browser behavior and still - // remains to this day event.preventDefault() - - const input = document.querySelector( "#yourname" ), - json = { yourname: input.value }, - body = JSON.stringify( json ) - - const response = await fetch( "/submit", { - method:"POST", - body + + + const albumInput = document.querySelector("#album") + const artistInput = document.querySelector("#artist") + const yearInput = document.querySelector("#year") + const songsInput = document.querySelector("#songs") + + const json = { + album: albumInput.value, + artist: artistInput.value, + year: parseInt(yearInput.value), + songs: parseInt(songsInput.value) + } + + const body = JSON.stringify(json) + + const response = await fetch("/submit", { + method: "POST", + headers: {"Content-Type": "application/json"}, + body: JSON.stringify(json) + }) - const text = await response.text() + await response.json() + console.log("Updated dataset:", data) + displayResults() + - console.log( "text:", text ) + albumInput.value = '' + artistInput.value = '' + yearInput.value = '' + songInput.value = '' } + window.onload = function() { - const button = document.querySelector("button"); + const button = document.querySelector("button"); button.onclick = submit; + displayResults() } \ No newline at end of file diff --git a/public/results.html b/public/results.html new file mode 100644 index 0000000..a6c7b76 --- /dev/null +++ b/public/results.html @@ -0,0 +1,29 @@ + + + + CS4241 Assignment 2 + + + + + +

Albums

+ + + + + + + + + + + + +
AlbumArtistRelease YearNumber of Songs
+ + + + \ No newline at end of file diff --git a/server.improved.js b/server.improved.js index 0f63012..58fefbd 100644 --- a/server.improved.js +++ b/server.improved.js @@ -9,9 +9,9 @@ const http = require( "http" ), port = 3000 const appdata = [ - { "model": "toyota", "year": 1999, "mpg": 23 }, - { "model": "honda", "year": 2004, "mpg": 30 }, - { "model": "ford", "year": 1987, "mpg": 14} + { "album": "Call Me If You Get Lost: The Estate Sale", "artist": "Tyler, the Creator", "year": 2021, "songs": 24 }, + { "album": "Igor", "artist": "Tyler, the Creator", "year": 2019, "songs": 12 }, + { "album": "Chromakopia", "artist": "Tyler, the Creator", "year": 2024, "songs": 14} ] const server = http.createServer( function( request,response ) { @@ -25,9 +25,14 @@ const server = http.createServer( function( request,response ) { const handleGet = function( request, response ) { const filename = dir + request.url.slice( 1 ) - if( request.url === "/" ) { + if (request.url === "/results") { + response.writeHead(200, { "Content-Type": "application/json" }) + response.end(JSON.stringify(appdata)) + } + else if( request.url === "/" ) { sendFile( response, "public/index.html" ) - }else{ + } + else{ sendFile( response, filename ) } } @@ -35,17 +40,14 @@ const handleGet = function( request, response ) { const handlePost = function( request, response ) { let dataString = "" - request.on( "data", function( data ) { - dataString += data - }) - - request.on( "end", function() { - console.log( JSON.parse( dataString ) ) + request.on( "data", chunk => dataString += chunk ) - // ... do something with the data here!!! + request.on( "end", () => { + const newAlbum = JSON.parse(dataString) + appdata.push(newAlbum) - response.writeHead( 200, "OK", {"Content-Type": "text/plain" }) - response.end("test") + response.writeHead( 200, {"Content-Type": "application/json" }) + response.end(JSON.stringify(appdata)) }) } From 59a41bb84bae6a2c5666d1c646ac7028edb801a7 Mon Sep 17 00:00:00 2001 From: max-jeronimo Date: Sun, 7 Sep 2025 15:26:14 -0400 Subject: [PATCH 02/10] made more changes (dynamic updating for the albums, editting each entry is a wip) --- public/js/main.js | 63 ++++++++++++++++++++++++++++++++++++++------- public/results.html | 4 --- server.improved.js | 30 +++++++++++++++++++-- 3 files changed, 82 insertions(+), 15 deletions(-) diff --git a/public/js/main.js b/public/js/main.js index a08ab73..f63027c 100644 --- a/public/js/main.js +++ b/public/js/main.js @@ -6,6 +6,8 @@ const displayResults = async function () { const data = await response.json() const tbody = document.querySelector("#results-table tbody") + if (!tbody) return + tbody.innerHTML = "" data.forEach((item) => { @@ -15,7 +17,7 @@ const displayResults = async function () { ${item.artist} ${item.year} ${item.songs} - ` + ` tbody.appendChild(tr) }) @@ -24,6 +26,45 @@ const displayResults = async function () { } } +document.querySelectorAll(".edit-btn").forEach(button => { + button.onclick = async function () { + const albumName = this.dataset.album + const record = data.find(r => r.album === albumName) + + const newAlbum = prompt("Enter new album name:", record.album) + const newArtist = prompt("Enter new artist:", record.artist) + const newYear = prompt("Enter new year:", record.year) + const newSongs = prompt("Enter new number of songs:", record.songs) + + const updated = { + oldAlbum: albumName, + album: newAlbum !== null && newAlbum.trim() !== "" ? newAlbum : record.album, + artist: newArtist !== null && newArtist.trim() !== "" ? newArtist : record.artist, + year: newYear !== null && newYear.trim() !== "" ? parseInt(newYear) : record.year, + songs: newSongs !== null && newSongs.trim() !== "" ? parseInt(newSongs) : record.songs + } + + if (!newAlbum || !newArtist || !newYear || !newSongs) return + + const json = { + oldAlbum: albumName, + album: newAlbum, + artist: newArtist, + year: parseInt(newYear), + songs: parseInt(newSongs) + } + + const response = await fetch("/update", { + method: "POST", + headers: { "Content-Type": "application/json" }, + body: JSON.stringify(json) + }) + + await response.json() + displayResults() + } +}) + const submit = async function( event ) { event.preventDefault() @@ -40,8 +81,6 @@ const submit = async function( event ) { songs: parseInt(songsInput.value) } - const body = JSON.stringify(json) - const response = await fetch("/submit", { method: "POST", headers: {"Content-Type": "application/json"}, @@ -49,20 +88,26 @@ const submit = async function( event ) { }) - await response.json() - console.log("Updated dataset:", data) + const updatedData = await response.json() + console.log("Updated data:", updatedData) + displayResults() albumInput.value = '' artistInput.value = '' yearInput.value = '' - songInput.value = '' + songsInput.value = '' } window.onload = function() { - const button = document.querySelector("button"); - button.onclick = submit; - displayResults() + const form = document.querySelector("#albumForm"); + if (form) { + form.onsubmit = submit + } + const resultsTable = document.querySelector("#results-table") + if (resultsTable) { + displayResults() + } } \ No newline at end of file diff --git a/public/results.html b/public/results.html index a6c7b76..ba36940 100644 --- a/public/results.html +++ b/public/results.html @@ -3,7 +3,6 @@ CS4241 Assignment 2 - @@ -22,8 +21,5 @@

Albums

- \ No newline at end of file diff --git a/server.improved.js b/server.improved.js index 58fefbd..4a8ace3 100644 --- a/server.improved.js +++ b/server.improved.js @@ -17,8 +17,13 @@ const appdata = [ const server = http.createServer( function( request,response ) { if( request.method === "GET" ) { handleGet( request, response ) - }else if( request.method === "POST" ){ - handlePost( request, response ) + }else if( request.method === "POST" && request.url === "/submit" ){ + handlePost( request, response ) + } else if (request.method === "POST" && request.url === "/update") { + handleUpdate(request, response) + } else { + response.writeHead(404) + response.end("404 Error: Not Found") } }) @@ -51,6 +56,27 @@ const handlePost = function( request, response ) { }) } +const handleUpdate = function( request, response ) { + let dataString = "" + + request.on("data", chunk => dataString += chunk) + + request.on("end", () => { + const updatedAlbum = JSON.parse(dataString) + const index = appdata.findIndex(a => a.album === updatedAlbum.oldAlbum) + + if (index !== -1) { + appdata[index].album = updatedAlbum.album + appdata[index].artist = updatedAlbum.artist + appdata[index].year = updatedAlbum.year + appdata[index].songs = updatedAlbum.songs + } + + response.writeHead (200, {"Content-Type": "application/json"}) + response.end(JSON.stringify(appdata)) + }) +} + const sendFile = function( response, filename ) { const type = mime.getType( filename ) From 7853f10811b49f6dbb08454f4fa337c88c40e269 Mon Sep 17 00:00:00 2001 From: max-jeronimo Date: Tue, 9 Sep 2025 16:44:43 -0400 Subject: [PATCH 03/10] started adding the delete button!! --- public/js/main.js | 80 +++++++++++++++++++++------------------------- server.improved.js | 20 ++++++++++++ 2 files changed, 57 insertions(+), 43 deletions(-) diff --git a/public/js/main.js b/public/js/main.js index f63027c..aac3bc4 100644 --- a/public/js/main.js +++ b/public/js/main.js @@ -13,57 +13,51 @@ const displayResults = async function () { data.forEach((item) => { const tr = document.createElement("tr"); tr.innerHTML = ` - ${item.album} - ${item.artist} - ${item.year} - ${item.songs} - ` + ${item.album} + ${item.artist} + ${item.year} + ${item.songs} + + + + + ` tbody.appendChild(tr) + }) + document.querySelectorAll(".editButton").forEach(button => { + button.onclick = async function () { + const albumName = this.dataset.album + const record = data.find(r => r.album === albumName) + + const newAlbum = prompt("Enter new album name:", record.album) + const newArtist = prompt("Enter new artist:", record.artist) + const newYear = prompt("Enter new year:", record.year) + const newSongs = prompt("Enter new number of songs:", record.songs) + + const updated = { + oldAlbum: albumName, + album: newAlbum !== null && newAlbum.trim() !== "" ? newAlbum : record.album, + artist: newArtist !== null && newArtist.trim() !== "" ? newArtist : record.artist, + year: newYear !== null && newYear.trim() !== "" ? parseInt(newYear) : record.year, + songs: newSongs !== null && newSongs.trim() !== "" ? parseInt(newSongs) : record.songs + } + + const response = await fetch("/update", { + method: "POST", + headers: { "Content-Type": "application/json" }, + body: JSON.stringify(updated) + }) + + await response.json() + displayResults() + } }) } catch (err) { console.error("Error in getting the results from the server:", err) } } -document.querySelectorAll(".edit-btn").forEach(button => { - button.onclick = async function () { - const albumName = this.dataset.album - const record = data.find(r => r.album === albumName) - - const newAlbum = prompt("Enter new album name:", record.album) - const newArtist = prompt("Enter new artist:", record.artist) - const newYear = prompt("Enter new year:", record.year) - const newSongs = prompt("Enter new number of songs:", record.songs) - - const updated = { - oldAlbum: albumName, - album: newAlbum !== null && newAlbum.trim() !== "" ? newAlbum : record.album, - artist: newArtist !== null && newArtist.trim() !== "" ? newArtist : record.artist, - year: newYear !== null && newYear.trim() !== "" ? parseInt(newYear) : record.year, - songs: newSongs !== null && newSongs.trim() !== "" ? parseInt(newSongs) : record.songs - } - - if (!newAlbum || !newArtist || !newYear || !newSongs) return - - const json = { - oldAlbum: albumName, - album: newAlbum, - artist: newArtist, - year: parseInt(newYear), - songs: parseInt(newSongs) - } - - const response = await fetch("/update", { - method: "POST", - headers: { "Content-Type": "application/json" }, - body: JSON.stringify(json) - }) - - await response.json() - displayResults() - } -}) const submit = async function( event ) { event.preventDefault() diff --git a/server.improved.js b/server.improved.js index 4a8ace3..17acda8 100644 --- a/server.improved.js +++ b/server.improved.js @@ -21,6 +21,8 @@ const server = http.createServer( function( request,response ) { handlePost( request, response ) } else if (request.method === "POST" && request.url === "/update") { handleUpdate(request, response) + } else if (request.method === "POST" && request.url === "/delete") { + handleDelete(request, response) } else { response.writeHead(404) response.end("404 Error: Not Found") @@ -77,6 +79,24 @@ const handleUpdate = function( request, response ) { }) } +const handleDelete = function ( request, response ) { + let dataString = "" + + request.on("data", chunk => dataString += chunk) + + request.on("end", () => { + const { album } = JSON.parse(dataString) + const index = appdata.findIndex (a => a.album === album) + + if (index !== -1) { + appdata.splice(index, 1) + } + + response.writeHead(200, { "Content-Type": "application/json" }) + response.end(JSON.stringify(appdata)) + }) +} + const sendFile = function( response, filename ) { const type = mime.getType( filename ) From c20d3565ed50e70f624bb0cffe2a09325a7452ff Mon Sep 17 00:00:00 2001 From: max-jeronimo Date: Wed, 10 Sep 2025 14:09:37 -0400 Subject: [PATCH 04/10] started additional features (finish renderHTMLRow) --- public/js/main.js | 35 +++++++++++++++++++++++++++++++++-- 1 file changed, 33 insertions(+), 2 deletions(-) diff --git a/public/js/main.js b/public/js/main.js index aac3bc4..7abe746 100644 --- a/public/js/main.js +++ b/public/js/main.js @@ -25,6 +25,20 @@ const displayResults = async function () { tbody.appendChild(tr) }) + function renderHTMLRow(item) { + return ` + ${escapeHtml(item.album)} + ${escapeHtml(item.album)} + + button class="editButton" data-album="$(escapeAttr(item.album))">Edit + button class="deleteButton" data-album="$(escapeAttr(item.album))">Delete + ` + + + } + document.querySelectorAll(".editButton").forEach(button => { button.onclick = async function () { const albumName = this.dataset.album @@ -39,8 +53,10 @@ const displayResults = async function () { oldAlbum: albumName, album: newAlbum !== null && newAlbum.trim() !== "" ? newAlbum : record.album, artist: newArtist !== null && newArtist.trim() !== "" ? newArtist : record.artist, - year: newYear !== null && newYear.trim() !== "" ? parseInt(newYear) : record.year, - songs: newSongs !== null && newSongs.trim() !== "" ? parseInt(newSongs) : record.songs + year: (newYear !== null && newYear.trim() !== "" && !isNaN(parseInt(newYear))) + ? parseInt(newYear) : record.year, + songs: (newSongs !== null && newSongs.trim() !== "" && !isNaN(parseInt(newSongs))) + ? parseInt(newSongs) : record.songs } const response = await fetch("/update", { @@ -53,6 +69,21 @@ const displayResults = async function () { displayResults() } }) + + document.querySelectorAll(".deleteButton").forEach(button => { + button.onclick = async function () { + const albumName = this.dataset.album + if (!confirm(`Are you sure you want to delete "${albumName}"?`)) return + + const response = await fetch("/delete", { + method: "POST", + headers: {"Content-Type": "application/json"}, + body: JSON.stringify({album: albumName}) + }) + await response.json() + displayResults() + } + }) } catch (err) { console.error("Error in getting the results from the server:", err) } From c7c2ff275a5739ad46a1b579659bf9b50e3a0532 Mon Sep 17 00:00:00 2001 From: max-jeronimo Date: Wed, 10 Sep 2025 21:09:11 -0400 Subject: [PATCH 05/10] off the rails (finished delete, editing, saving, started adding data.json (stores all the entries into a continuous database --- public/js/main.js | 195 +++++++++++++++++++++++++++++++--------------- 1 file changed, 132 insertions(+), 63 deletions(-) diff --git a/public/js/main.js b/public/js/main.js index 7abe746..9916ea7 100644 --- a/public/js/main.js +++ b/public/js/main.js @@ -1,5 +1,37 @@ // FRONT-END (CLIENT) JAVASCRIPT HERE +function renderHTMLRow(item) { + return ` + ${escapeHtml(item.vinyl)} + ${escapeHtml(item.artist)} + ${item.owned ? "✅" : "❌"} + ${item.link ? `Buy` : ""} + + + + + ` +} + + +function escapeHtml(s) { + return String(s) + .replaceAll('&','&') + .replaceAll('<','<') + .replaceAll('>','>') +} + +function escapeAttr(s) { + return String(s) + .replaceAll('&','&') + .replaceAll('"','"') + .replaceAll("'","'") + .replaceAll('<','<') + .replaceAll('>','>') +} + +let currentlyEditing = null + const displayResults = async function () { try { const response = await fetch("/results") @@ -9,81 +41,118 @@ const displayResults = async function () { if (!tbody) return tbody.innerHTML = "" - - data.forEach((item) => { - const tr = document.createElement("tr"); - tr.innerHTML = ` - ${item.album} - ${item.artist} - ${item.year} - ${item.songs} - - - - - ` + data.forEach(item => { + const tr = document.createElement("tr") + tr.dataset.slug = item.slug + tr.innerHTML = renderHTMLRow(item) + tr.dataset.original = JSON.stringify(item) tbody.appendChild(tr) }) - function renderHTMLRow(item) { - return ` - ${escapeHtml(item.album)} - ${escapeHtml(item.album)} - - button class="editButton" data-album="$(escapeAttr(item.album))">Edit - button class="deleteButton" data-album="$(escapeAttr(item.album))">Delete - ` - - - } - document.querySelectorAll(".editButton").forEach(button => { - button.onclick = async function () { - const albumName = this.dataset.album - const record = data.find(r => r.album === albumName) + tbody.onclick = async function(e) { + const btn = e.target + const tr = btn.closest("tr") + if (!tr) return + + + if (btn.matches(".editButton")) { + if (currentlyEditing && currentlyEditing !== tr) { + alert("Finish or cancel the other edit first.") + return + } + currentlyEditing = tr + + const item = JSON.parse(tr.dataset.original) + tr.innerHTML = ` + + + + + + + + + ` + tr.querySelector(".input-vinyl").focus() + + const ownedInput = tr.querySelector(".input-owned") + const linkInput = tr.querySelector(".input-link") + + ownedInput.addEventListener("change", () =>{ + linkInput.disabled = ownedInput.checked + if (ownedInput.checked) linkInput.value = "" + }) + + return + } + + + if (btn.matches(".saveButton")) { + const slug = btn.dataset.slug + const vinylVal = tr.querySelector(".input-vinyl").value.trim() + const artistVal = tr.querySelector(".input-artist").value.trim() + const ownedChecked = tr.querySelector(".input-owned").checked + const linkVal = tr.querySelector(".input-link").value.trim() - const newAlbum = prompt("Enter new album name:", record.album) - const newArtist = prompt("Enter new artist:", record.artist) - const newYear = prompt("Enter new year:", record.year) - const newSongs = prompt("Enter new number of songs:", record.songs) + const original = JSON.parse(tr.dataset.original) const updated = { - oldAlbum: albumName, - album: newAlbum !== null && newAlbum.trim() !== "" ? newAlbum : record.album, - artist: newArtist !== null && newArtist.trim() !== "" ? newArtist : record.artist, - year: (newYear !== null && newYear.trim() !== "" && !isNaN(parseInt(newYear))) - ? parseInt(newYear) : record.year, - songs: (newSongs !== null && newSongs.trim() !== "" && !isNaN(parseInt(newSongs))) - ? parseInt(newSongs) : record.songs + slug: slug, + vinyl: vinylVal !== "" ? vinylVal : original.vinyl, + artist: artistVal !== "" ? artistVal : original.artist, + owned: ownedChecked, + link: linkVal !== "" ? linkVal : original.link } - const response = await fetch("/update", { + await fetch("/update", { method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify(updated) }) - await response.json() + currentlyEditing = null displayResults() + return + } + + if (btn.matches(".cancelButton")) { + const original = JSON.parse(tr.dataset.original) + tr.innerHTML = renderHTMLRow(original) + tr.dataset.original = JSON.stringify(original) + currentlyEditing = null + return } - }) - document.querySelectorAll(".deleteButton").forEach(button => { - button.onclick = async function () { - const albumName = this.dataset.album - if (!confirm(`Are you sure you want to delete "${albumName}"?`)) return + if (btn.matches(".deleteButton")) { + const slug = btn.dataset.slug + const actionCell = tr.querySelector(".cellActions") + actionCell.innerHTML = ` + Delete "${escapeHtml(tr.querySelector(".cellVinyl").textContent)}"? + + + ` + return + } - const response = await fetch("/delete", { + if (btn.matches(".confirmDelete")) { + const slug = btn.dataset.slug + await fetch("/delete", { method: "POST", - headers: {"Content-Type": "application/json"}, - body: JSON.stringify({album: albumName}) + headers: { "Content-Type": "application/json" }, + body: JSON.stringify({ slug }) }) - await response.json() displayResults() + return } - }) + + if (btn.matches(".cancelDelete")) { + const original = JSON.parse(tr.dataset.original) + tr.innerHTML = renderHTMLRow(original) + tr.dataset.original = JSON.stringify(original) + } + } + } catch (err) { console.error("Error in getting the results from the server:", err) } @@ -94,16 +163,16 @@ const submit = async function( event ) { event.preventDefault() - const albumInput = document.querySelector("#album") + const vinylInput = document.querySelector("#vinyl") const artistInput = document.querySelector("#artist") - const yearInput = document.querySelector("#year") - const songsInput = document.querySelector("#songs") + const ownedInput = document.querySelector("#owned") + const linkInput = document.querySelector("#link") const json = { - album: albumInput.value, + vinyl: vinylInput.value, artist: artistInput.value, - year: parseInt(yearInput.value), - songs: parseInt(songsInput.value) + owned: ownedInput.checked, + link: ownedInput.checked ? "" : linkInput.value } const response = await fetch("/submit", { @@ -119,15 +188,15 @@ const submit = async function( event ) { displayResults() - albumInput.value = '' + vinylInput.value = '' artistInput.value = '' - yearInput.value = '' - songsInput.value = '' + ownedInput.checked = false + linkInput.value = '' } window.onload = function() { - const form = document.querySelector("#albumForm"); + const form = document.querySelector("#vinylForm"); if (form) { form.onsubmit = submit } From 12fb65da74fea8662060fa0472aee4110bfe0110 Mon Sep 17 00:00:00 2001 From: max-jeronimo Date: Wed, 10 Sep 2025 21:20:36 -0400 Subject: [PATCH 06/10] forgot to add data.json --- data.json | 1 + server.improved.js | 79 +++++++++++++++++++++++++++++++++------------- 2 files changed, 58 insertions(+), 22 deletions(-) create mode 100644 data.json diff --git a/data.json b/data.json new file mode 100644 index 0000000..0637a08 --- /dev/null +++ b/data.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/server.improved.js b/server.improved.js index 17acda8..765d2f8 100644 --- a/server.improved.js +++ b/server.improved.js @@ -1,18 +1,37 @@ const http = require( "http" ), fs = require( "fs" ), + path = require( "path") + +const DATA_FILE = path.join(__dirname, "data.json") // IMPORTANT: you must run `npm install` in the directory for this assignment // to install the mime library if you"re testing this on your local machine. // However, Glitch will install it automatically by looking in your package.json // file. - mime = require( "mime" ), - dir = "public/", + mime = require( "mime" ) + dir = "public/" port = 3000 -const appdata = [ - { "album": "Call Me If You Get Lost: The Estate Sale", "artist": "Tyler, the Creator", "year": 2021, "songs": 24 }, - { "album": "Igor", "artist": "Tyler, the Creator", "year": 2019, "songs": 12 }, - { "album": "Chromakopia", "artist": "Tyler, the Creator", "year": 2024, "songs": 14} -] +let appdata = [] +try { + if (fs.existsSync(DATA_FILE)) { + appdata = JSON.parse(fs.readFileSync(DATA_FILE, "utf-8")) + } +} catch (err) { + console.error("Error loading data file:", err) + appdata = [] +} + +function saveData() { + try { + fs.writeFileSync(DATA_FILE, JSON.stringify(appdata, null, 2)) + } catch (err) { + console.error("Error saving data file:", err) + } +} + +function makeSlug(vinyl, artist) { + return `${vinyl.toLowerCase().replace(/\s+/g, "-")}-${artist.toLowerCase().replace(/\s+/g, "-")}` +} const server = http.createServer( function( request,response ) { if( request.method === "GET" ) { @@ -49,9 +68,26 @@ const handlePost = function( request, response ) { request.on( "data", chunk => dataString += chunk ) - request.on( "end", () => { - const newAlbum = JSON.parse(dataString) - appdata.push(newAlbum) + request.on("end", () => { + const newVinyl = JSON.parse(dataString) + const slug = makeSlug(newVinyl.vinyl, newVinyl.artist) + + if (appdata.find (v => v.slug === slug)) { + response.writeHead(400, {"Content-Type": "application/json"}) + response.end(JSON.stringify({error: "This Vinyl already exists"})) + return + } + + const record = { + vinyl: newVinyl.vinyl, + artist: newVinyl.artist, + owned: Boolean(newVinyl.owned), + link: newVinyl.owned ? "": (newVinyl.link || ""), + slug, + dateAdded: new Date().toISOString() + } + appdata.push(record) + saveData() response.writeHead( 200, {"Content-Type": "application/json" }) response.end(JSON.stringify(appdata)) @@ -64,14 +100,16 @@ const handleUpdate = function( request, response ) { request.on("data", chunk => dataString += chunk) request.on("end", () => { - const updatedAlbum = JSON.parse(dataString) - const index = appdata.findIndex(a => a.album === updatedAlbum.oldAlbum) + const updated = JSON.parse(dataString) + const index = appdata.findIndex(v => v.slug === updated.slug) if (index !== -1) { - appdata[index].album = updatedAlbum.album - appdata[index].artist = updatedAlbum.artist - appdata[index].year = updatedAlbum.year - appdata[index].songs = updatedAlbum.songs + appdata[index].vinyl = updated.vinyl + appdata[index].artist = updated.artist + appdata[index].owned = updated.owned + appdata[index].link = updated.owned ? "" : updated.link + appdata[index].slug = makeSlug(updated.vinyl, updated.artist) + saveData() } response.writeHead (200, {"Content-Type": "application/json"}) @@ -85,12 +123,9 @@ const handleDelete = function ( request, response ) { request.on("data", chunk => dataString += chunk) request.on("end", () => { - const { album } = JSON.parse(dataString) - const index = appdata.findIndex (a => a.album === album) - - if (index !== -1) { - appdata.splice(index, 1) - } + const { slug } = JSON.parse(dataString) + appdata = appdata.filter (v => v.slug !== slug) + saveData() response.writeHead(200, { "Content-Type": "application/json" }) response.end(JSON.stringify(appdata)) From 13c7c848bf4d1ba8f0761ffe325622c1869e3b23 Mon Sep 17 00:00:00 2001 From: max-jeronimo Date: Wed, 10 Sep 2025 22:42:17 -0400 Subject: [PATCH 07/10] dynamic updating is done --- public/form.html | 20 +++++++++++--------- public/index.html | 9 ++++----- public/js/main.js | 35 +++++++++++++++++++++++++++++++---- public/results.html | 9 +++++---- 4 files changed, 51 insertions(+), 22 deletions(-) diff --git a/public/form.html b/public/form.html index 44e61f7..af6ee31 100644 --- a/public/form.html +++ b/public/form.html @@ -3,7 +3,6 @@ CS4241 Assignment 2 - @@ -11,20 +10,23 @@

Add A New Album

-
- -
+ + +

- -
+ +
- -
+ - +
+ diff --git a/public/index.html b/public/index.html index cbd642c..1d9b835 100644 --- a/public/index.html +++ b/public/index.html @@ -10,11 +10,10 @@ -
- - -
+

Vinyl Checklist

+ diff --git a/public/js/main.js b/public/js/main.js index 9916ea7..2984c99 100644 --- a/public/js/main.js +++ b/public/js/main.js @@ -68,7 +68,12 @@ const displayResults = async function () { - + + + + @@ -77,13 +82,19 @@ const displayResults = async function () { tr.querySelector(".input-vinyl").focus() const ownedInput = tr.querySelector(".input-owned") + const linkField = tr.querySelector(".link-edit-field") const linkInput = tr.querySelector(".input-link") - ownedInput.addEventListener("change", () =>{ - linkInput.disabled = ownedInput.checked - if (ownedInput.checked) linkInput.value = "" + ownedInput.addEventListener("change", () => { + if (ownedInput.checked) { + linkField.style.display = "none" + linkInput.value = "" + } else { + linkField.style.display = "block" + } }) + return } @@ -195,6 +206,22 @@ const submit = async function( event ) { } +const ownedCheckbox = document.getElementById("owned"); +const linkField = document.getElementById("link-field"); +const linkInput = document.getElementById("link"); + +if (ownedCheckbox && linkField && linkInput) { + ownedCheckbox.addEventListener("change", () => { + if (ownedCheckbox.checked) { + linkField.style.display = "none"; + linkInput.value = ""; + } else { + linkField.style.display = "block"; + } + }); +} + + window.onload = function() { const form = document.querySelector("#vinylForm"); if (form) { diff --git a/public/results.html b/public/results.html index ba36940..32fbb64 100644 --- a/public/results.html +++ b/public/results.html @@ -6,14 +6,15 @@ -

Albums

+

Vinyl Collection

- + - - + + + From a562ea88d9e6c559216ad2e8c9304a97ab0710ea Mon Sep 17 00:00:00 2001 From: max-jeronimo Date: Thu, 11 Sep 2025 00:32:53 -0400 Subject: [PATCH 08/10] finished project for the assignment --- README.md | 130 +++++++------------------------------------- data.json | 19 ++++++- public/css/main.css | 116 ++++++++++++++++++++++++++++++++++++++- public/form.html | 10 +++- public/index.html | 26 +++++++-- public/results.html | 10 +++- 6 files changed, 192 insertions(+), 119 deletions(-) diff --git a/README.md b/README.md index 3248143..9250c51 100644 --- a/README.md +++ b/README.md @@ -1,116 +1,28 @@ -Assignment 2 - Short Stack: Basic Two-tier Web Application using HTML/CSS/JS and Node.js -=== +## Vinyl Collection System +This project is a Two-Tier Node.js and a HTML/JS web app that keeps track of a collection of vinyls. A user can add +vinyls that they currently own, or ones that they are looking to get, as well as view their current collection +of both owned or wanted vinyls, as well as see purchase links if they do not own them. I used Flexbot positioning +and card-styled forms, tables, and textboxes, utilized by a css file. -Due: Monday, September 8, 2025, by 11:59 PM. +In order to use the application, you would navigate throught the two links in the nav bar, one being the Add Vinyl tab, +and the other being the View Collection tab. All data is stored dynamically through the data.json file. -This assignment aims to introduce you to creating a prototype two-tiered web application. -Your application will include the use of HTML, CSS, JavaScript, and Node.js functionality, with active communication between the client and the server over the life of a user session. -Baseline Requirements ---- - -There is a large range of application areas and possibilities that meet these baseline requirements. -Try to make your application do something useful! A todo list, storing / retrieving high scores for a very simple game... have a little fun with it. - -Your application is required to implement the following functionalities (4 pts each, total 20 pts): - -- a `Server` which not only serves files, but also maintains a tabular dataset with 3 or more fields related to your application -- a `Results` functionality which shows the entire dataset residing in the server's memory -- a `Form/Entry` functionality which allows a user to add or delete data items residing in the server's memory -- a `Server Logic` which, upon receiving new or modified "incoming" data, includes and uses a function that adds at least one additional derived field to this incoming data before integrating it with the existing dataset -- the `Derived field` for a new row of data must be computed based on fields already existing in the row. -For example, a `todo` dataset with `task`, `priority`, and `creation_date` may generate a new field `deadline` by looking at `creation_date` and `priority` - -Your application is required to demonstrate the use of the following concepts: - -HTML (4 pts each, total 16 pts): -- One or more [HTML Forms](https://developer.mozilla.org/en-US/docs/Learn/HTML/Forms), with any combination of form tags appropriate for the user input portion of the application -- A results page displaying all data currently available on the server. You will most likely use a `
AlbumVinyl ArtistRelease YearNumber of SongsOwned?LinksActions
` tag for this, but `
    ` or `
      ` could also work and might be simpler to work with. Alternatively, you can create a single-page app (see Technical Acheivements) but this is not a requirement. -- All pages should [validate](https://validator.w3.org) -- If your app contains multple pages, they should all be accessible from the homepage (index.html) - -CSS (4 pts each, total 16 pts): -- CSS styling of the primary visual elements in the application -- Various CSS Selector functionality must be demonstrated: - - Element selectors - - ID selectors - - Class selectors -- CSS positioning and styling of the primary visual elements in the application: - - Use of either a CSS grid or flexbox for layout - - Rules defining fonts for all text used; no default fonts! Be sure to use a web safe font or a font from a web service like [Google Fonts](http://fonts.google.com/) -- CSS defined in a maintainable, readable form, in external stylesheets - -JavaScript (4 pts): -- At minimum, a small amount of front-end JavaScript to get / fetch data from the server; a sample is provided in this repository. - -Node.js (4 pts): -- An HTTP Server that delivers all necessary files and data for the application, and also creates the required `Derived Fields` in your data. -A starting point is provided in this repository. - -Deliverables ---- - -1. (5 pts) Fork the starting project code repo. The starter code in the repo may be used or discarded as needed. -2. (60 pts, detailed above) Implement your project with the above requirements. -3. Test your project to make sure that when someone goes to your main page, it displays correctly. -4. (5 pts) Deploy your project to Render (or your hosting service of choice), and fill in the appropriate fields in your package.json file. -5. (5 pts) Ensure that your project at least starts with the proper naming scheme `a2-FirstnameLastname` so we can find it. -6. (5 pts) Modify the README to the specifications below, and delete all of the instructions originally found in this README. -7. (5 pts) Create and submit a Pull Request to the original repo. Be sure to include your name in the pull request. - -Acheivements ---- - -Below are suggested technical and design achievements. You can use these to help customize the assignment to your personal interests. These are recommended acheivements, but feel free to create/implement your own... just make sure you thoroughly describe what you did in your README and why it was challenging. ALL ACHIEVEMENTS MUST BE DESCRIBED IN YOUR README IN ORDER TO GET CREDIT FOR THEM. Remember, the highest grade you can get on any individual assignment is a 100%. - -*Technical* -- (5 points) Create a single-page app that both provides a form for users to submit data and always shows the current state of the server-side data. To put it another way, when the user submits data, the server should respond sending back the updated data (including the derived field calculated on the server) and the client should then update its data display. - -- (5 points) In addition to a form enabling adding and deleting data on the server, also add the ability to modify existing data. - -*Design/UX* -- (5 points per person, with a max of 10 points) Test your user interface with other students in the class. Define a specific task for them to complete (ideally something short that takes <10 minutes), and then use the [think-aloud protocol](https://en.wikipedia.org/wiki/Think_aloud_protocol) to obtain feedback on your design (talk-aloud is also fine). Important considerations when designing your study: - -1. Make sure you start the study by clearly stating the task that you expect your user to accomplish. -2. You shouldn't provide any verbal instructions on how to use your interface / accomplish the task you give them. Make sure that your interface is clear enough that users can figure it out without any instruction, or provide text instructions from within the interface itself. -3. If users get stuck to the point where they give up, you can then provde instruction so that the study can continue, but make sure to discuss this in your README. You won't lose any points for this... all feedback is good feedback! - -You'll need to use sometype of collaborative software that will enable you both to see the test subject's screen and listen to their voice as they describe their thoughts, or conduct the studies in person. After completing each study, briefly (one to two sentences for each question) address the following in your README: - -1. Provide the last name of each student you conduct the evaluation with. -2. What problems did the user have with your design? -3. What comments did they make that surprised you? -4. What would you change about the interface based on their feedback? - -*You do not need to actually make changes based on their feedback*. This acheivement is designed to help gain experience testing user interfaces. If you run two user studies, you should answer two sets of questions. - -FAQ ---- -**Q: Can I use frameworks for this assignment?** - -A: No. We'll discuss them later this term, but for right now, we want to see that you can implement these features yourself instead of outsourcing them to an existing framework or library. - -**Q: After I delete some data server-side, the data persists on the client side until I refresh the page.** - -A: Make sure the client-side copy of the data also reflects the deletion. The server-side and client-side copies of the data should remain in sync at all times. - -**Q: Do I have to implement the specific achievements above?** - -A: No. As discussed in the instructions, you are free to implement your own. If you're not sure if they'll qualify, check with the instructor. - -**Q: If I do a single page for the technical achievement, will I still get credit for the last two criteria in the base requirements?** - -Yes. - - -Sample Readme (delete the above when you're ready to submit, and modify the below so with your links and descriptions) ---- +## Technical Achievements +- **Tech Achievement 1**: I implemented all inline editing any of the result table fields, without having to refresh +- the page. -## Your Web Application Title -Include a very brief summary of your project here. Be sure to include the CSS positioning technique you used, and any required instructions to use your application. +- **Tech Achievement 2**: I utilized server generated derived fields, one being slug, which is a unique identifier which +- takes the combonation of both the vinyl name and artist's name, and the second field being dateAdded, which just logs +- when the vinyl was inputted to the application. -## Technical Achievements -- **Tech Achievement 1**: Using a combination of... +- **Tech Achievement3**: I implemented dynamic form logic to the Add Vinyl form, where if you were to select the option: +- Owned?, the purchase link field hides instantly, and reverts back when you unclick it as well. ### Design/Evaluation Achievements -- **Design Achievement 1**: +- **Design Achievement 1**: I made the entire UI uniform, which keeps a very consistent and visually pleasing application. +- +- **Design Achievement 2**: The delete actions require two steps to verify that is the action you want to take, which +- helps with any accidental data loss. + +- **Design Achievement 3**: The navigation is fairly simple to follow, allowing for easy user interaction. diff --git a/data.json b/data.json index 0637a08..d3eca9f 100644 --- a/data.json +++ b/data.json @@ -1 +1,18 @@ -[] \ No newline at end of file +[ + { + "vinyl": "Chromakopia", + "artist": "Tyler, the Creator", + "owned": false, + "link": "https://www.ebay.com/itm/317255401531?_skw=tyler+chromakopai+vinyl&itmmeta=01K4V6CMJTGJF73ARW7K2HRT4Y&hash=item49dde5403b:g:RhgAAeSwOElovs3b&itmprp=enc%3AAQAKAAAA0FkggFvd1GGDu0w3yXCmi1ekbSqesTr%2F5e%2B7lzqkFRkGlpDXdkpd4ybeaXdWCGS5bVS5dwh1F1hZUaURNK2iBVmzX5B%2BwR5n2KWUt1NOjiQ6njY6MjdsX%2F7VxZ%2BF1rTXOVEw2bPCuJVxjqpAP6nMAlQk40E7a01rNP2TIWIfznZewSd9UGn91lJB93T04EcIO0yh7x6ivJU8RT69TRmA1CrZRCYCwLPTBQ0XXpEjHATJpVdHDgfB%2BIDjAUMCKJ7u1s2FnX8AlWcmwBXf8zaSxLc%3D%7Ctkp%3ABk9SR8zJsuamZg&pfm=0", + "slug": "chromakopia-tyler,-the-creator", + "dateAdded": "2025-09-11T03:17:50.133Z" + }, + { + "vinyl": "Favorite Worst Nightmare", + "artist": "Arctic Monkeys", + "owned": true, + "link": "", + "slug": "favorite-worst-nightmare-arctic-monkeys", + "dateAdded": "2025-09-11T03:43:07.777Z" + } +] \ No newline at end of file diff --git a/public/css/main.css b/public/css/main.css index 7cf6207..1fd7ea3 100644 --- a/public/css/main.css +++ b/public/css/main.css @@ -1,4 +1,116 @@ +@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap'); + body { - background:black; - color:white; + margin: 0; + font-family: 'Roboto', sans-serif; + background: #f7f7f7; + color: #333; + display: flex; + flex-direction: column; + min-height: 100vh; +} + +h1, h2 { + text-align: center; + margin-top: 20px; + font-weight: 700; +} + +nav { + display: flex; + justify-content: center; + gap: 20px; + background: #222; + padding: 10px; +} + +nav a { + color: white; + text-decoration: none; + font-weight: bold; +} + +nav a:hover { + text-decoration: underline; +} + +form, table { + max-width: 600px; + margin: 20px auto; + background: white; + padding: 20px; + border-radius: 6px; + box-shadow: 0 2px 6px rgba(0,0,0,0.1); +} + +form label { + display: block; + margin-top: 10px; + font-weight: bold; +} + +form input[type="text"], +form input[type="url"], +form input[type="checkbox"] { + margin-top: 5px; + padding: 6px; + font-size: 14px; +} + +form button { + margin-top: 15px; + padding: 8px 16px; + background: #2d89ef; + color: white; + border: none; + border-radius: 4px; + cursor: pointer; +} + +form button:hover { + background: #1e5fbb; +} + +table { + border-collapse: collapse; + width: 90%; +} + +th, td { + border: 1px solid #ddd; + padding: 10px; + text-align: center; +} + +th { + background: #2d89ef; + color: white; +} + +tr:nth-child(even) { + background: #f2f2f2; +} + +.cellActions button { + margin: 0 2px; + padding: 4px 8px; + font-size: 12px; + border: none; + border-radius: 3px; + cursor: pointer; +} + +.editButton { background: #ffb74d; } +.deleteButton { background: #e57373; } +.saveButton { background: #81c784; } +.cancelButton, .cancelDelete { background: #b0bec5; } +.confirmDelete { background: #e53935; color: white; } + +.card, form, table { + max-width: 600px; + margin: 20px auto; + background: white; + padding: 20px; + border-radius: 8px; + box-shadow: 0 2px 6px rgba(0,0,0,0.1); } \ No newline at end of file diff --git a/public/form.html b/public/form.html index af6ee31..30f307a 100644 --- a/public/form.html +++ b/public/form.html @@ -4,13 +4,21 @@ CS4241 Assignment 2 + + + + +

      Add A New Album

      -
      +
      diff --git a/public/index.html b/public/index.html index 1d9b835..690da38 100644 --- a/public/index.html +++ b/public/index.html @@ -3,17 +3,33 @@ CS4241 Assignment 2 - - + + + + + -

      Vinyl Checklist

      + + +
      +

      🎵 Vinyl Checklist

      +
      + +
      +

      Welcome!

      +

      This app keeps track of all the vinyls I currently own, or some that I'm looking to get! + To use this app, navigate to one of the two links, where you can add albums + or view ones that I currently own or looking to get!

      +
      + + diff --git a/public/results.html b/public/results.html index 32fbb64..b3a31b6 100644 --- a/public/results.html +++ b/public/results.html @@ -4,10 +4,18 @@ CS4241 Assignment 2 + + + + +

      Vinyl Collection

      -
+
From 33cbeb002b78092fe0ed4e353a8f5735751686ce Mon Sep 17 00:00:00 2001 From: max-jeronimo Date: Thu, 11 Sep 2025 00:33:42 -0400 Subject: [PATCH 09/10] finished project for the assignment (fixed readme) --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 9250c51..7955b05 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,6 @@ +## Maxwell Jeronimo +## Link: https://a2-maxwelljeronimo-a25-2.onrender.com + ## Vinyl Collection System This project is a Two-Tier Node.js and a HTML/JS web app that keeps track of a collection of vinyls. A user can add vinyls that they currently own, or ones that they are looking to get, as well as view their current collection From 39cbf8351cfc4a7883422126e55c7ab20a446a1f Mon Sep 17 00:00:00 2001 From: max-jeronimo Date: Thu, 11 Sep 2025 00:40:27 -0400 Subject: [PATCH 10/10] Update README.md --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 7955b05..aa9549f 100644 --- a/README.md +++ b/README.md @@ -13,19 +13,19 @@ and the other being the View Collection tab. All data is stored dynamically thr ## Technical Achievements - **Tech Achievement 1**: I implemented all inline editing any of the result table fields, without having to refresh -- the page. + the page. - **Tech Achievement 2**: I utilized server generated derived fields, one being slug, which is a unique identifier which -- takes the combonation of both the vinyl name and artist's name, and the second field being dateAdded, which just logs -- when the vinyl was inputted to the application. + takes the combonation of both the vinyl name and artist's name, and the second field being dateAdded, which just logs + when the vinyl was inputted to the application. - **Tech Achievement3**: I implemented dynamic form logic to the Add Vinyl form, where if you were to select the option: -- Owned?, the purchase link field hides instantly, and reverts back when you unclick it as well. + Owned?, the purchase link field hides instantly, and reverts back when you unclick it as well. ### Design/Evaluation Achievements - **Design Achievement 1**: I made the entire UI uniform, which keeps a very consistent and visually pleasing application. -- + - **Design Achievement 2**: The delete actions require two steps to verify that is the action you want to take, which -- helps with any accidental data loss. + helps with any accidental data loss. - **Design Achievement 3**: The navigation is fairly simple to follow, allowing for easy user interaction.
Vinyl