more code

This commit is contained in:
Mike 2025-01-17 22:45:33 -05:00
parent 17d664eaeb
commit 6fb88b315a
10 changed files with 130 additions and 14 deletions

View file

@ -79,6 +79,79 @@ ul {
margin: 0 auto; 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 { .flex {
display: 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;
}

View file

@ -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 };

View file

@ -1,8 +1,7 @@
import { modal } from "./components/modal.js"; import { modal } from "./components/modal.js";
import { addForm } from "./components/addForm.js";
const newItemLink = document.querySelector("a[href='/add']"); const newItemLink = document.querySelector("a[href='/add']");
//
//if (newItemLink && window.location !== "/item/") {
const modalElement = await modal(); const modalElement = await modal();
let modalToggle = false; let modalToggle = false;
async function handleDelete(e) { async function handleDelete(e) {
@ -25,7 +24,7 @@ document.querySelectorAll(".delete-button").forEach((button) =>
document.querySelectorAll(".edit-button").forEach((button) => { document.querySelectorAll(".edit-button").forEach((button) => {
button.addEventListener("click", async (e) => { 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}`; window.location.href = `/item/${itemId}`;
}); });
@ -37,7 +36,8 @@ document.querySelectorAll(".delete-btn").forEach((button) => {
const data = new URLSearchParams(new FormData()); const data = new URLSearchParams(new FormData());
data.append("id", itemId); data.append("id", itemId);
const res = await fetch("/category", { const path = window.location.pathname;
const res = await fetch(`${path}`, {
method: "DELETE", method: "DELETE",
body: data, body: data,
}); });
@ -46,7 +46,7 @@ document.querySelectorAll(".delete-btn").forEach((button) => {
if (message.includes("error")) { if (message.includes("error")) {
alert("unable to delete as item is using category"); alert("unable to delete as item is using category");
} else { } else {
window.location.href = "/category"; window.location.href = `${path}`;
} }
}); });
}); });
@ -60,4 +60,4 @@ newItemLink.addEventListener("click", (e) => {
}); });
document.body.append(modalElement); document.body.append(modalElement);
//} addForm();

View file

@ -1,3 +1,4 @@
const utils = require("../utils");
const db = require("../db/queries"); const db = require("../db/queries");
const { links } = require("../config"); const { links } = require("../config");
@ -32,6 +33,13 @@ async function storePost(req, res) {
const r = await handlePostRequets({ reqBody: req.body, dbName: "store" }); const r = await handlePostRequets({ reqBody: req.body, dbName: "store" });
res.redirect("/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) { async function categoryGet(req, res) {
const categories = await db.getCategories(); const categories = await db.getCategories();
@ -75,9 +83,10 @@ async function itemPost(req, res) {
const storeId = await db.getStoreId({ name: req.body.store }); const storeId = await db.getStoreId({ name: req.body.store });
let formData = req.body; let formData = req.body;
const data = { const data = {
name: formData.name, name: formData.name,
price: formData.price, price: utils.convertToInteger(formData.price),
qty: formData.qty, qty: formData.qty,
store_id: storeId.store_id, store_id: storeId.store_id,
category_id: categoryId.category_id, category_id: categoryId.category_id,
@ -142,6 +151,7 @@ module.exports = {
itemDelete, itemDelete,
storeGet, storeGet,
storePost, storePost,
storeDelete,
storesGetAll, storesGetAll,
categoryGet, categoryGet,
categoryPost, categoryPost,

View file

@ -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 = { module.exports = {
insertItem, insertItem,
getItemById, getItemById,
@ -113,6 +121,7 @@ module.exports = {
getCategoryId, getCategoryId,
getStores, getStores,
getStoreId, getStoreId,
deleteStore,
insertStore, insertStore,
insertCategory, insertCategory,
deleteCategory, deleteCategory,

View file

@ -8,6 +8,7 @@ indexRouter.get("/", indexController.indexGet);
indexRouter.get("/store", indexController.storeGet); indexRouter.get("/store", indexController.storeGet);
indexRouter.get("/stores", indexController.storesGetAll); indexRouter.get("/stores", indexController.storesGetAll);
indexRouter.post("/store", indexController.storePost); indexRouter.post("/store", indexController.storePost);
indexRouter.delete("/store", indexController.storeDelete);
indexRouter.get("/category", indexController.categoryGet); indexRouter.get("/category", indexController.categoryGet);
indexRouter.get("/categories", indexController.categoryGetAll); indexRouter.get("/categories", indexController.categoryGetAll);
indexRouter.post("/category", indexController.categoryPost); indexRouter.post("/category", indexController.categoryPost);

3
inventory/src/utils.js Normal file
View file

@ -0,0 +1,3 @@
exports.convertToInteger = (num) => {
return num * 100;
};

View file

@ -1,5 +1,8 @@
<h1><%= type %></h1> <h1 class="heading"><%= type %></h1>
<form method="POST" action="/<%= type %>">
<%- include("card", {items: data}) %>
<button class="btn add-btn">New <%= type %></button>
<form method="POST" action="/<%= type %>" class="add-form">
<div class="container"> <div class="container">
<div class="form-item"> <div class="form-item">
<label for="name">Name</label> <label for="name">Name</label>
@ -13,4 +16,3 @@
</form> </form>
<%- include("card", {items: data}) %>

View file

@ -1,5 +1,6 @@
<%- include('header', {links: links}); %> <%- include('header', {links: links}); %>
<main>
<% if (page === "add") { %> <% if (page === "add") { %>
<%- include('addForm', {type: type}); %> <%- include('addForm', {type: type}); %>
<% } else if (page === "edit") { %> <% } else if (page === "edit") { %>
@ -7,4 +8,5 @@
<% } else { %> <% } else { %>
<%- include('itemTable', {items: items}); %> <%- include('itemTable', {items: items}); %>
<% }; %> <% }; %>
</main>
<%- include('footer'); %> <%- include('footer'); %>

View file

@ -1,4 +1,4 @@
<table class="items"> <table class="items-table">
<thead> <thead>
<tr> <tr>
<th scope="col">Name</th> <th scope="col">Name</th>
@ -6,6 +6,8 @@
<th scope="col">QTY</th> <th scope="col">QTY</th>
<th scope="col">Store</th> <th scope="col">Store</th>
<th scope="col">Category</th> <th scope="col">Category</th>
<th></th>
<th></th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
@ -13,12 +15,12 @@
<% items.forEach(item => { %> <% items.forEach(item => { %>
<tr data-item-id="<%=item.id %>"> <tr data-item-id="<%=item.id %>">
<td><%= item.name %></td> <td><%= item.name %></td>
<td><%= item.price %></td> <td>$<%= (item.price/100).toFixed(2) %></td>
<td><%= item.qty %></td> <td><%= item.qty %></td>
<td><%= item.store_name %></td> <td><%= item.store_name %></td>
<td><%= item.category_name %></td> <td><%= item.category_name %></td>
<td class="edit-button">Edit</td> <td><button class="edit-button btn">Edit</button></td>
<td class="delete-button" data-id="<%= item.name %>">Delete</td> <td><button data-id="<%= item.name %>" class="delete-button btn">Delete</button></td>
</tr> </tr>
<% }); %> <% }); %>
</tbody> </tbody>