From 034a41ad44144e79c1c58a3b4f8741ddf8d56f8c Mon Sep 17 00:00:00 2001 From: MikunoNaka Date: Fri, 16 Apr 2021 18:40:50 +0530 Subject: implemented a way for AddNewItemForm and BillingPage to talk to each other and share data --- src/components/Form/AddNewItemForm.js | 24 +++++++++++++++++------- 1 file changed, 17 insertions(+), 7 deletions(-) (limited to 'src/components/Form') diff --git a/src/components/Form/AddNewItemForm.js b/src/components/Form/AddNewItemForm.js index 5d0b224..52a5db7 100644 --- a/src/components/Form/AddNewItemForm.js +++ b/src/components/Form/AddNewItemForm.js @@ -7,7 +7,7 @@ const AddNewItemForm = (props) => { const [itemDescValue, setItemDescValue] = useState(""); const [itemPriceValue, setItemPriceValue] = useState(0.00); const [itemDiscountValue, setItemDiscountValue] = useState(0.00); - const [itemGSTValue, setItemGSTValue] = useState(18); + const [itemGSTValue, setItemGSTValue] = useState(props.defGSTValue); const [itemQtyValue, setItemQtyValue] = useState(1); const enterItemNamePrompt = "Start typing here"; @@ -38,6 +38,15 @@ const AddNewItemForm = (props) => { } } + const resetAllValues = () => { + setItemNameValue(""); + setItemDescValue(""); + setItemQtyValue(0); + setItemPriceValue(0); + setItemDiscountValue(0); + setItemGSTValue(props.defGSTValue); + } + return (
{ const newInvoiceItem = { "Model": itemNameValue, "Description": itemDescValue, - "Quantity": itemQtyValue, - "Price": itemPriceValue, - "Discount": itemDiscountValue, - "GST": itemGSTValue + "Quantity": parseInt(itemQtyValue), + "Price": parseInt(itemPriceValue), + "Discount": parseInt(itemDiscountValue), + "GST": parseInt(itemGSTValue) }; - console.log(newInvoiceItem); + props.addItem(newInvoiceItem); + resetAllValues(); } }>
@@ -64,7 +74,7 @@ const AddNewItemForm = (props) => { setItemNameValue(event.target.value); setItemInfo(event.target.value.toLowerCase()); } - } > + }> {savedItemNames.map( (i) => { -- cgit v1.2.3