aboutsummaryrefslogtreecommitdiff
path: root/src/components/Pages/BillingPage.tsx
blob: 301f39e4b8f795f4695233d08a2fb640d5251b18 (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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
/*
 * OpenBills - Self hosted browser app to generate and keep track of simple invoices
 * Version - 0
 * Licensed under the MIT license - https://opensource.org/licenses/MIT
 *
 * Copyright (c) 2021 Vidhu Kant Sharma
*/

import React, { useState, useEffect } from "react";
import axios from "axios";

import { Item, Person, Transport, Invoice } from "../../interfaces";

import AddNewItemForm from "./../Form/Items/AddNewItemForm";
import RegisterItemForm from "./../Form/Items/RegisterItemForm";

import RegisterPersonForm from "./../Form/People/RegisterPersonForm";

import DocumentInfoForm from "./../Form/Document/DocumentInfoForm";
import InvoiceInfoMenu from "./../Menu/InvoiceInfoMenu";

import ItemsDisplay from "./../Display/ItemsDisplay";
import SummaryDisplay from "./../Display/SummaryDisplay"; 

import TransportForm from "./../Form/Transport/TransportForm";

const BillingPage: React.FC = () => {
  const [savedItems, getSavedItems] = useState<Item[]>([]);
  const [savedPeople, getSavedPeople] = useState<Person[]>([]);
  const [registerItemFormVisibility, setRegisterItemFormVisibility] = useState<boolean>(false);
  const [registerPersonFormVisibility, setRegisterPersonFormVisibility] = useState<boolean>(false);
  const [items, setItems] = useState<Item[]>([]);
  const [invoiceNumber, setInvoiceNumber] = useState<number>(1234); // get data from backend
  const [showTransportForm, setShowTransportForm] = useState<boolean>(false);
  const [transporter, setTransporter] = useState<Transport>({Name: "", VehicleNum: "", Method: "", GSTIN: "", Builty: ""})
  console.log(transporter);

  const getRegisteredItems = () =>
    axios.get(`/api/items/get-all`)
      .then((res) => getSavedItems(res.data))
      .catch((res) => console.log(res));

  const getRegisteredPeople = () => 
    axios.get(`/api/people/get-all`)
      .then((res) => getSavedPeople(res.data))
      .catch((res) => console.log(res));

  // get data from server on startup
  useEffect(() => {
    getRegisteredItems();
    getRegisteredPeople();
  }, []);

  // TODO: to be handled by backend
  const defGSTValue = 18;

  // update the items from AddNewItemForm
  const getItems = (item: Item) => setItems([...items, item]);

  const postInvoice = () => {
    const newInvoice: Invoice = {
      Items: items,
      Transport: transporter
    }
    window.print();

    // just for testing it will not save to DB
    axios.post("/api/invoice/preview", newInvoice)
      .then((res) => {
        alert("OH MY FUCKEN GOD")
        console.log(res)
      })
      .catch((res) => {
        console.log(res)
      })
  }

  return (
    <>
      {registerItemFormVisibility &&
        <RegisterItemForm 
          defGSTValue={defGSTValue}
          updateItemsList={getRegisteredItems} 
          setVisibility={setRegisterItemFormVisibility}
        />
      }

      {registerPersonFormVisibility &&
        <RegisterPersonForm 
          updatePeopleList={getRegisteredPeople} 
          setVisibility={setRegisterPersonFormVisibility}
        />
      }

      {showTransportForm &&
        <TransportForm
          setVisibility={setShowTransportForm}
          setTransporter={setTransporter}
        />
      }

      <DocumentInfoForm 
        savedPeople={savedPeople}
        invoiceNumber={invoiceNumber}
        setInvoiceNumber={setInvoiceNumber}
      />

      <AddNewItemForm 
        savedItems={savedItems} 
        addItem={getItems} 
        defGSTValue={defGSTValue}
        registerItemFormVisibility={setRegisterItemFormVisibility}
        registerPersonFormVisibility={setRegisterPersonFormVisibility}
      />

      <ItemsDisplay 
        items={items} 
        defGSTValue={defGSTValue}
      />

      <div className={"BillingPageFlex"}>
        <InvoiceInfoMenu
          setShowTransportForm={setShowTransportForm}
        />
        <SummaryDisplay items={items}/>
      </div>
      <button onClick={postInvoice}>post (experimental)</button>
    </>
  );
}

export default BillingPage;