blob: 0f7ddf9324c98734ab620309246685c375e2c4be (
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
|
/*
* 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 AddNewItemForm from "./Form/AddNewItemForm";
import RegisterItemForm from "./Form/RegisterItemForm";
import MetaInfoForm from "./Form/MetaInfoForm";
import ItemsDisplay from "./Display/ItemsDisplay";
import SummaryDisplay from "./Display/SummaryDisplay"; const BillingPage = () => {
const [savedItems, getSavedItems] = useState([]);
const [registerFormVisibility, setRegisterFormVisibility] = useState(false);
const getRegisteredItems = () => {
axios.get(`/api/items`)
.then((res) => {
getSavedItems(res.data);
})
.catch((res) => {
alert("The promise returned an error idk what to do");
console.log(res);
})
}
// get data from server on startup
useEffect(() => {
getRegisteredItems();
}, []);
// TODO: to be handled by backend
const defGSTValue = 18;
// update the items from AddNewItemForm
const [items, setItems] = useState([]);
const getItems = (item) => {
setItems(
[...items, item]
);
};
return (
<>
<AddNewItemForm savedItems={savedItems}
addItem={getItems}
defGSTValue={defGSTValue}
registerFormVisibility={setRegisterFormVisibility}
/>
{registerFormVisibility &&
<RegisterItemForm
defGSTValue={defGSTValue}
updateItemsList={getRegisteredItems}
setVisibility={setRegisterFormVisibility}
/>
}
<ItemsDisplay items={items} defGSTValue={defGSTValue}/>
<div className={"BillingPageFlex"}>
<MetaInfoForm/>
<SummaryDisplay items={items}/>
</div>
</>
);
}
export default BillingPage;
|