aboutsummaryrefslogtreecommitdiff
path: root/src/components/BillingPage.js
blob: 1ff8654ca9e54cfcf81bc05bbb3705e4f1bb0642 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
import React, { useState } from "react";
import AddNewItemForm from "./Form/AddNewItemForm";
import ItemsDisplay from "./Display/ItemsDisplay";

const sampleData = [
  {
    "Model": "Kisan Chair",
    "Description": "Very good chair",
    "Price": 10000,
    "Discount": 0
  }, {
    "Model": "Supreme Chair",
    "Description": "Even better chair",
    "Price": "2134983",
    "Discount": 0
  }, {
    "Model": "Action Houseware",
    "Description": "Not a chair",
    "Price": 69,
    "Discount": 0
  }
];


const BillingPage = () => {
  // to be handled by backend
  const defGSTValue = 18;

  /* Note to the dumbass coding this alone
   * Right now only the models are getting passed
   * into ItemsDisplay because I wanted to
   * take screenshots and shit. 
   * Implement a feature such that I can pass in a
   * whole array of objects and ItemsDisplay processes
   * the itemNames, prices and shit. 
   * This file should only handle 
   * getting the items from AddNewItemForm
   * putting it into the list
   * and pass it into ItemsDisplay 
   */
  const [items, setItems] = useState([]);
  const getItems = (item) => {
    setItems(
      [...items, item.Model]
    );
  };

  console.log(items)
  return (
    <div>
      <AddNewItemForm savedItems={sampleData} addItem={getItems} defGSTValue={defGSTValue}/>

      <ItemsDisplay items={items}/>
    </div>
  );
}

export default BillingPage;