Dashboard.jsx
5.59 KB
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
/*!
=========================================================
* Light Bootstrap Dashboard React - v1.3.0
=========================================================
* Product Page: https://www.creative-tim.com/product/light-bootstrap-dashboard-react
* Copyright 2019 Creative Tim (https://www.creative-tim.com)
* Licensed under MIT (https://github.com/creativetimofficial/light-bootstrap-dashboard-react/blob/master/LICENSE.md)
* Coded by Creative Tim
=========================================================
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
*/
import React, { Component } from "react";
import ChartistGraph from "react-chartist";
import { Grid, Row, Col } from "react-bootstrap";
import { Card } from "components/Card/Card.jsx";
import { StatsCard } from "components/StatsCard/StatsCard.jsx";
import { Tasks } from "components/Tasks/Tasks.jsx";
import {
dataPie,
legendPie,
dataSales,
optionsSales,
responsiveSales,
legendSales,
dataBar,
optionsBar,
responsiveBar,
legendBar
} from "variables/Variables.jsx";
class Dashboard extends Component {
createLegend(json) {
var legend = [];
for (var i = 0; i < json["names"].length; i++) {
var type = "fa fa-circle text-" + json["types"][i];
legend.push(<i className={type} key={i} />);
legend.push(" ");
legend.push(json["names"][i]);
}
return legend;
}
render() {
return (
<div className="content">
<Grid fluid>
<Row>
<Col lg={3} sm={6}>
<StatsCard
bigIcon={<i className="pe-7s-server text-warning" />}
statsText="Capacity"
statsValue="105GB"
statsIcon={<i className="fa fa-refresh" />}
statsIconText="Updated now"
/>
</Col>
<Col lg={3} sm={6}>
<StatsCard
bigIcon={<i className="pe-7s-wallet text-success" />}
statsText="Revenue"
statsValue="$1,345"
statsIcon={<i className="fa fa-calendar-o" />}
statsIconText="Last day"
/>
</Col>
<Col lg={3} sm={6}>
<StatsCard
bigIcon={<i className="pe-7s-graph1 text-danger" />}
statsText="Errors"
statsValue="23"
statsIcon={<i className="fa fa-clock-o" />}
statsIconText="In the last hour"
/>
</Col>
<Col lg={3} sm={6}>
<StatsCard
bigIcon={<i className="fa fa-twitter text-info" />}
statsText="Followers"
statsValue="+45"
statsIcon={<i className="fa fa-refresh" />}
statsIconText="Updated now"
/>
</Col>
</Row>
<Row>
<Col md={8}>
<Card
statsIcon="fa fa-history"
id="chartHours"
title="Users Behavior"
category="24 Hours performance"
stats="Updated 3 minutes ago"
content={
<div className="ct-chart">
<ChartistGraph
data={dataSales}
type="Line"
options={optionsSales}
responsiveOptions={responsiveSales}
/>
</div>
}
legend={
<div className="legend">{this.createLegend(legendSales)}</div>
}
/>
</Col>
<Col md={4}>
<Card
statsIcon="fa fa-clock-o"
title="Email Statistics"
category="Last Campaign Performance"
stats="Campaign sent 2 days ago"
content={
<div
id="chartPreferences"
className="ct-chart ct-perfect-fourth"
>
<ChartistGraph data={dataPie} type="Pie" />
</div>
}
legend={
<div className="legend">{this.createLegend(legendPie)}</div>
}
/>
</Col>
</Row>
<Row>
<Col md={6}>
<Card
id="chartActivity"
title="2014 Sales"
category="All products including Taxes"
stats="Data information certified"
statsIcon="fa fa-check"
content={
<div className="ct-chart">
<ChartistGraph
data={dataBar}
type="Bar"
options={optionsBar}
responsiveOptions={responsiveBar}
/>
</div>
}
legend={
<div className="legend">{this.createLegend(legendBar)}</div>
}
/>
</Col>
<Col md={6}>
<Card
title="Tasks"
category="Backend development"
stats="Updated 3 minutes ago"
statsIcon="fa fa-history"
content={
<div className="table-full-width">
<table className="table">
<Tasks />
</table>
</div>
}
/>
</Col>
</Row>
</Grid>
</div>
);
}
}
export default Dashboard;