-
Notifications
You must be signed in to change notification settings - Fork 0
/
ConsumeCard.tsx
136 lines (125 loc) · 3.85 KB
/
ConsumeCard.tsx
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
133
134
135
136
import { Col, Row, Tabs, TabsProps } from "antd";
import moment from "moment";
import { useState } from "react";
import { useEffect } from "react";
import ReactApexChart from "react-apexcharts";
import api from "../../api";
import { ApexOptions } from "apexcharts";
import { useAppSelector } from "../../hooks";
import { sortDate } from "../../Consumer/utils";
import { commonProps } from "../../globalUtils";
const ConsumeCard = () => {
const organization = useAppSelector((state) => state.organization.organization)
const [electric, setElectric] = useState({})
const [gas, setGas] = useState({})
const [water, setWater] = useState({})
const fetchBills = (aggId: string) => {
api.bills.getBillsByOrganizationIdAggregated(aggId).then((res) => {
let electric: any = []
let gas: any = []
let water: any = []
Object.values(res.aggregated).map((el: any) => {
if (el.date !== null){
electric.push({
x: new Date(el.date).getTime(),
y: el.electric === undefined ? null : el.electric
})
gas.push({
x: new Date(el.date).getTime(),
y: el.gas === undefined ? null : el.gas
})
water.push({
x: new Date(el.date).getTime(),
y: el.water === undefined ? null : el.water
})
}
})
sortDate(water)
sortDate(gas)
sortDate(electric)
electric = {
type: 'line',
name: "Electric",
data: electric
}
gas = {
type: 'line',
name: "Gas",
data: gas
}
water = {
type: 'line',
name: "Water",
data: water
}
setWater(water)
setGas(gas)
setElectric(electric)
}).catch(e => { return })
}
useEffect(() => {
if (organization === null || organization === undefined)
return
fetchBills(organization._id)
}, [organization])
const electricOption: ApexOptions = {
...commonProps,
chart: {
type: 'line',
height: 160
},
colors: ['#00E396'],
}
const gasOption: ApexOptions = {
...commonProps,
chart: {
type: 'line',
height: 160
},
colors: ['#546E7A'],
}
const waterOption: ApexOptions = {
...commonProps,
chart: {
type: 'area',
height: 160
},
colors: ['#008FFB'],
}
const items: TabsProps['items'] = [
{
key: "1",
label: "Electric Usage",
children: <Col span={24}>
<ReactApexChart options={electricOption} series={[electric]} type="line" height={460} />
</Col>
},
{
key: "2",
label: "Gas Usage",
children: <Col span={24}>
<ReactApexChart options={gasOption} series={[gas]} type="line" height={460} />
</Col>
},
{
key: "3",
label: "Water Usage",
children: <Col span={24}>
<ReactApexChart options={waterOption} series={[water]} type="line" height={460} />
</Col>
},
]
return (
<Row justify="space-between" align="middle" >
<Tabs
size="small"
tabPosition="top"
type="card"
items={items}
defaultActiveKey="1"
style={{ width: "100%" }}
/>
</Row>
)
}
export default ConsumeCard