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
|
/* OpenBills-web - Web based libre billing software
* Copyright (C) 2022 Vidhu Kant Sharma <vidhukant@vidhukant.xyz>
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
import './scss/client-table.scss';
import { deleteClient } from './../../classes/client';
const ClientTable = (props) => {
const handleEdit = (i) => {
alert("editing coming soon")
}
const handleDelete = (i) => {
// TODO: add confirmation prompt
deleteClient(i.Id, handleDelSuccess, handleDelFail);
}
const handleDelSuccess = () => {
props.refresh();
}
const handleDelFail = () => {
alert("fail")
}
return (
<div className={"client-table"}>
{props.clients && props.clients.map((i, id) => (
<div key={id} className={"client"}>
<p className={"client-title"}>
<span className={"client-name"}>{i.Name}</span>
<span className={"client-gstin"}> {i.GSTIN}</span>
</p>
<div className={"paragraph-wrapper"}>
<div className={"contact-details"}>
<p className={"heading"}><strong>Contact: </strong>{i.Contact.Name}</p>
<p>
Phone Number{i.Contact.Phones.length === 1 ? '' : 's'}:
{i.Contact.Phones.map((j, id) => ` ${j}${id + 1 === i.Contact.Phones.length ? '' : ','}`)}
<br/>
Email Address{i.Contact.Emails.length === 1 ? '' : 'es'}:
{i.Contact.Emails.map((j, id) => ` ${j}${id + 1 === i.Contact.Emails.length ? '' : ','}`)}
<br/>
{i.Contact.Website.length > 0 && <a href={
`${(i.Contact.Website.startsWith("https://")
|| i.Contact.Website.startsWith("http://"))
? i.Contact.Website : 'https://' + i.Contact.Website}`}>{i.Contact.Website}</a>
}
</p>
</div>
<div className={"billing-address"}>
<p className={"heading"}><strong>Billing Address: </strong></p>
<p className={"multiline"}>{i.BillingAddress.Text}</p>
<p>{i.BillingAddress.City}, {i.BillingAddress.State} - {i.BillingAddress.PostalCode} ({i.BillingAddress.Country})</p>
</div>
{i.ShippingAddresses.length > 0 && // if billing address != shipping address
JSON.stringify(i.ShippingAddresses[0]) !== JSON.stringify(i.BillingAddress) &&
<div className={"shipping-addresses"}>
{i.ShippingAddresses.map((j, id) =>
<div key={id} className={"shipping-address"}>
<p><strong>{`Shipping Address ${i.ShippingAddresses.length === 1 ? '' : id + 1}`}</strong></p>
<p className={"multiline"}>{j.Text}</p>
<p>{j.City}, {j.State} - {j.PostalCode} ({j.Country})</p>
</div>
)}
</div>
}
</div>
<div className={"buttons"}>
<input type="button" value="Edit" onClick={() => handleEdit(i)}/>
<input type="button" value="Delete" onClick={() => handleDelete(i)}/>
</div>
<hr/>
</div>
))}
</div>
);
}
export default ClientTable;
|