diff --git a/inventory/public/css/style.css b/inventory/public/css/style.css index d860dbe..eacad4e 100644 --- a/inventory/public/css/style.css +++ b/inventory/public/css/style.css @@ -79,6 +79,79 @@ ul { margin: 0 auto; } +td { + text-align: center; +} + +th, +td { + border-bottom: 1px solid #ddd; +} + +tr:nth-child(even) { + background-color: #f2f2f2; +} + +thead { + text-transform: uppercase; +} + +main { + display: flex; + flex-direction: column; + align-items: center; +} + +nav { + font-size: 1.5rem; +} + +.container { + width: 100%; + max-width: 800px; + margin: 0.25em 1em; +} + .flex { display: flex; } + +.btn { + padding: 0.5em 1em; + margin: 1em; +} + +.container.flex { + width: 100%; +} + +.container.flex p { + align-self: center; +} + +.container.flex p, +.container.flex button { + flex: 1; +} + +.items-table { + width: 80%; + border-collapse: collapse; +} + +.form-item { + display: flex; +} + +.form-item.btn-row { + justify-content: center; + width: 100%; +} + +.btn-row button { + flex: 1; +} + +.add-form { + display: none; +} diff --git a/inventory/public/js/components/addForm.js b/inventory/public/js/components/addForm.js new file mode 100644 index 0000000..13103ff --- /dev/null +++ b/inventory/public/js/components/addForm.js @@ -0,0 +1,14 @@ +function addForm() { + let buttonClicked = true; + const addForm = document.querySelector(".add-form"); + const button = document.querySelector(".add-btn"); + + button.addEventListener("click", () => { + buttonClicked + ? (addForm.style.display = " block") + : (addForm.style.display = "none"); + buttonClicked = !buttonClicked; + }); +} + +export { addForm }; diff --git a/inventory/public/js/script.js b/inventory/public/js/script.js index 2a43cb9..426a929 100644 --- a/inventory/public/js/script.js +++ b/inventory/public/js/script.js @@ -1,8 +1,7 @@ import { modal } from "./components/modal.js"; +import { addForm } from "./components/addForm.js"; const newItemLink = document.querySelector("a[href='/add']"); -// -//if (newItemLink && window.location !== "/item/") { const modalElement = await modal(); let modalToggle = false; async function handleDelete(e) { @@ -25,7 +24,7 @@ document.querySelectorAll(".delete-button").forEach((button) => document.querySelectorAll(".edit-button").forEach((button) => { button.addEventListener("click", async (e) => { - const itemId = e.target.parentNode.dataset.itemId; + const itemId = e.target.parentNode.parentNode.dataset.itemId; window.location.href = `/item/${itemId}`; }); @@ -37,7 +36,8 @@ document.querySelectorAll(".delete-btn").forEach((button) => { const data = new URLSearchParams(new FormData()); data.append("id", itemId); - const res = await fetch("/category", { + const path = window.location.pathname; + const res = await fetch(`${path}`, { method: "DELETE", body: data, }); @@ -46,7 +46,7 @@ document.querySelectorAll(".delete-btn").forEach((button) => { if (message.includes("error")) { alert("unable to delete as item is using category"); } else { - window.location.href = "/category"; + window.location.href = `${path}`; } }); }); @@ -60,4 +60,4 @@ newItemLink.addEventListener("click", (e) => { }); document.body.append(modalElement); -//} +addForm(); diff --git a/inventory/src/controllers/indexController.js b/inventory/src/controllers/indexController.js index 7a652e0..868bf25 100644 --- a/inventory/src/controllers/indexController.js +++ b/inventory/src/controllers/indexController.js @@ -1,3 +1,4 @@ +const utils = require("../utils"); const db = require("../db/queries"); const { links } = require("../config"); @@ -32,6 +33,13 @@ async function storePost(req, res) { const r = await handlePostRequets({ reqBody: req.body, dbName: "store" }); res.redirect("/store"); } +async function storeDelete(req, res) { + const query = await db.deleteStore(req.body.id); + if (query) { + res.send(`${query}`); + } + res.send("store deleted"); +} async function categoryGet(req, res) { const categories = await db.getCategories(); @@ -75,9 +83,10 @@ async function itemPost(req, res) { const storeId = await db.getStoreId({ name: req.body.store }); let formData = req.body; + const data = { name: formData.name, - price: formData.price, + price: utils.convertToInteger(formData.price), qty: formData.qty, store_id: storeId.store_id, category_id: categoryId.category_id, @@ -142,6 +151,7 @@ module.exports = { itemDelete, storeGet, storePost, + storeDelete, storesGetAll, categoryGet, categoryPost, diff --git a/inventory/src/db/queries.js b/inventory/src/db/queries.js index d38ccd2..30d55f1 100644 --- a/inventory/src/db/queries.js +++ b/inventory/src/db/queries.js @@ -103,6 +103,14 @@ async function insertStore(data) { } } +async function deleteStore(itemId) { + try { + await pool.query("DELETE FROM store where store_id = $1", [itemId]); + } catch (e) { + return e; + } +} + module.exports = { insertItem, getItemById, @@ -113,6 +121,7 @@ module.exports = { getCategoryId, getStores, getStoreId, + deleteStore, insertStore, insertCategory, deleteCategory, diff --git a/inventory/src/routes/indexRouter.js b/inventory/src/routes/indexRouter.js index f6cbc4e..f82d4db 100644 --- a/inventory/src/routes/indexRouter.js +++ b/inventory/src/routes/indexRouter.js @@ -8,6 +8,7 @@ indexRouter.get("/", indexController.indexGet); indexRouter.get("/store", indexController.storeGet); indexRouter.get("/stores", indexController.storesGetAll); indexRouter.post("/store", indexController.storePost); +indexRouter.delete("/store", indexController.storeDelete); indexRouter.get("/category", indexController.categoryGet); indexRouter.get("/categories", indexController.categoryGetAll); indexRouter.post("/category", indexController.categoryPost); diff --git a/inventory/src/utils.js b/inventory/src/utils.js new file mode 100644 index 0000000..7cd3d58 --- /dev/null +++ b/inventory/src/utils.js @@ -0,0 +1,3 @@ +exports.convertToInteger = (num) => { + return num * 100; +}; diff --git a/inventory/src/views/addForm.ejs b/inventory/src/views/addForm.ejs index 2019356..8fab349 100644 --- a/inventory/src/views/addForm.ejs +++ b/inventory/src/views/addForm.ejs @@ -1,5 +1,8 @@ -