HTML
xxxxxxxxxx
1
<!DOCTYPE html>
2
<html lang="en">
3
<head>
4
<meta charset="utf-8" />
5
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
6
<meta name="viewport" content="width=device-width, initial-scale=1" />
7
<meta name="theme-color" content="#000000" />
8
<meta
9
name="description"
10
content="Web site created using create-react-app"
11
/>
12
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
13
<link
14
href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap"
15
rel="stylesheet"
16
/>
17
<link
18
href="https://use.fontawesome.com/releases/v5.15.1/css/all.css"
19
rel="stylesheet"
20
/>
21
22
<!--
23
manifest.json provides metadata used when your web app is installed on a
24
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
25
-->
26
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
27
<!--
28
Notice the use of %PUBLIC_URL% in the tags above.
29
It will be replaced with the URL of the `public` folder during the build.
30
Only files inside the `public` folder can be referenced from the HTML.
31
32
Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will
33
work correctly both with client-side routing and a non-root public URL.
34
Learn how to configure a non-root public URL by running `npm run build`.
35
-->
36
<title>MDBReact5 Template App</title>
37
</head>
38
<body>
39
<noscript>You need to enable JavaScript to run this app.</noscript>
40
<div id="root"></div>
41
<!--
42
This HTML file is a template.
43
If you open it directly in the browser, you will see an empty page.
44
45
You can add webfonts, meta tags, or analytics to this file.
46
The build step will place the bundled scripts into the <body> tag.
47
48
To begin the development, run `npm start` or `yarn start`.
49
To create a production bundle, use `npm run build` or `yarn build`.
50
-->
51
</body>
52
</html>
53
SCSS
xxxxxxxxxx
1
body {
2
margin: 0;
3
font-family: Roboto, Helvetica, Arial, sans-serif;
4
-webkit-font-smoothing: antialiased;
5
-moz-osx-font-smoothing: grayscale;
6
}
7
8
code {
9
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
10
monospace;
11
}
12
JS (TypeScript)
xxxxxxxxxx
1
import React from 'react';
2
import {
3
MDBContainer,
4
MDBRow,
5
MDBCard,
6
MDBCardHeader,
7
MDBCol,
8
MDBDatepicker,
9
MDBSelectDeprecated,
10
MDBCardBody,
11
MDBCardFooter,
12
MDBIcon,
13
MDBTable,
14
MDBTableHead,
15
MDBTableBody,
16
MDBChart,
17
MDBBtn,
18
MDBBadge,
19
MDBDatatable
20
} from 'mdb-react-ui-kit';
21
22
function App() {
23
const optionsRevenueSourcesChart = {
24
dataLabelsPlugin: true,
25
options: {
26
scales: {
27
yAxes: [
28
{
29
ticks: {
30
beginAtZero: true,
31
callback: function (value: any) {
32
return '$' + value;
33
},
34
},
35
},
36
],
37
xAxes: [
38
{
39
gridLines: {
40
offsetGridLines: true,
41
},
42
},
43
],
44
},
45
legend: {
46
display: false,
47
},
48
plugins: {
49
datalabels: {
50
formatter: (value: any) => {
51
let sum = 0;
52
const dataArr = [2112, 1343, 545, 324];
53
dataArr.map((data) => {
54
sum += data;
55
});
56
const percentage = ((value * 100) / sum).toFixed(2) + '%';
57
return percentage;
58
},
59
color: '#4f4f4f',
60
labels: {
61
title: {
62
font: {
63
size: '13',
64
},
65
anchor: 'end',
66
align: 'top',
67
},
68
},
69
},
70
},
71
tooltips: {
72
callbacks: {
73
label: function (tooltipItem: any) {
74
return '$ ' + tooltipItem.yLabel;
75
},
76
},
77
},
78
},
79
};
80
81
const chartMarketingSourcesOption = {
82
dataLabelsPlugin: true,
83
options: {
84
legend: {
85
position: 'right',
86
labels: {
87
boxWidth: 10,
88
},
89
},
90
plugins: {
91
datalabels: {
92
formatter: (value: any) => {
93
let sum = 0;
94
const dataArr = dataChartMarketingSources.data.datasets[0].data;
95
dataArr.map((data) => {
96
sum += data;
97
});
98
const percentage = ((value * 100) / sum).toFixed(2) + '%';
99
return percentage;
100
},
101
color: 'white',
102
labels: {
103
title: {
104
font: {
105
size: '13',
106
},
107
},
108
},
109
},
110
},
111
},
112
};
113
114
// Chart devices 1
115
const dataChartMarketingSources = {
116
type: 'pie',
117
data: {
118
labels: ['Organic search', 'Direct', 'Social'],
119
datasets: [
120
{
121
label: 'Traffic',
122
data: [8112, 5343, 3545],
123
backgroundColor: ['rgba(63, 81, 181, 0.5)', 'rgba(77, 182, 172, 0.5)', 'rgba(66, 133, 244, 0.5)'],
124
},
125
],
126
},
127
};
128
129
const basicData = {
130
columns: ['Product ID', 'Quantity', 'Purchases', 'Δ', 'Product revenue', '%Δ', 'Buy-to-details %'],
131
rows: [
132
[123, 21, 9, 2, '$448.29', '112.54%', '17.55%'],
133
[124, 42, 24, 0, '$182.71', '59.32%', '37.62%'],
134
[125, 4, 18, 2, '$41.15', '118.58%', '3.40%'],
135
[126, 37, 30, 0, '$64.67', '65.36%', '10.69%'],
136
[127, 13, 13, 1, '$202.18', '135.11%', '86.85%'],
137
[128, 2, 25, 1, '$22.29', '75.34%', '78.13%'],
138
[129, 38, 5, 3, '$21.42', '34.96%', '3.14%'],
139
[130, 23, 2, 2, '$362.59', '159.01%', '0.88%'],
140
[131, 10, 26, 1, '$223.64', '199.88%', '38.05%'],
141
[132, 43, 34, 2, '$148.31', '36.15%', '13.58%'],
142
[133, 21, 10, 0, '$293.35', '142.13%', '59.93%'],
143
[134, 17, 12, 2, '$325.35', '145.78%', '22.33%'],
144
[135, 18, 26, 1, '$425.38', '86.88%', '8.39%'],
145
[136, 24, 14, 3, '$175.65', '188.03%', '6.04%'],
146
[137, 44, 18, 2, '$492.13', '27.94%', '96.88%'],
147
[138, 40, 34, 2, '$474.20', '165.88%', '75.91%'],
148
[139, 1, 26, 2, '$291.67', '23.56%', '98.18%'],
149
[140, 1, 23, 0, '$409.04', '59.10%', '12.43%'],
150
[141, 41, 26, 2, '$145.37', '60.38%', '16.67%'],
151
[142, 29, 8, 1, '$88.48', '132.66%', '99.17%'],
152
[143, 42, 33, 2, '$153.96', '16.81%', '2.54%'],
153
[144, 25, 24, 3, '$484.25', '199.82%', '6.29%'],
154
[145, 44, 19, 0, '$133.35', '169.73%', '14.36%'],
155
[146, 34, 24, 2, '$345.58', '187.76%', '78.83%'],
156
[147, 26, 28, 1, '$151.04', '192.89%', '55.87%'],
157
[148, 16, 18, 1, '$273.32', '184.14%', '77.91%'],
158
[149, 11, 24, 1, '$186.84', '73.08%', '54.91%'],
159
[150, 45, 25, 0, '$286.30', '164.72%', '25.93%'],
160
[151, 24, 22, 3, '$44.99', '72.07%', '92.68%'],
161
[152, 16, 20, 0, '$434.77', '167.60%', '18.78%'],
162
[153, 44, 33, 0, '$241.04', '38.81%', '39.98%'],
163
[154, 17, 15, 3, '$196.36', '180.25%', '54.47%'],
164
[155, 10, 34, 1, '$441.65', '87.35%', '80.55%'],
165
[156, 22, 2, 3, '$404.08', '159.30%', '55.65%'],
166
[157, 29, 23, 0, '$176.42', '116.25%', '19.23%'],
167
[158, 21, 1, 0, '$256.70', '180.01%', '47.55%'],
168
[159, 27, 20, 0, '$375.41', '30.42%', '23.45%'],
169
[160, 33, 25, 3, '$313.54', '108.37%', '6.57%'],
170
[161, 42, 14, 2, '$328.28', '193.06%', '18.86%'],
171
[162, 13, 23, 3, '$159.28', '75.18%', '11.20%'],
172
[163, 31, 2, 1, '$259.08', '17.79%', '65.96%'],
173
[164, 28, 22, 1, '$426.61', '120.66%', '85.42%'],
174
[165, 19, 16, 2, '$269.72', '191.67%', '56.66%'],
175
[166, 31, 7, 0, '$412.03', '72.91%', '94.83%'],
176
[167, 26, 4, 0, '$279.67', '184.87%', '75.28%'],
177
[168, 38, 31, 0, '$385.86', '24.37%', '12.64%'],
178
[169, 17, 7, 2, '$63.91', '118.32%', '16.15%'],
179
[170, 24, 22, 2, '$418.11', '194.73%', '21.31%'],
180
[171, 25, 30, 1, '$79.84', '175.77%', '80.91%'],
181
[172, 37, 7, 0, '$94.17', '68.17%', '28.84%'],
182
[173, 23, 7, 2, '$51.40', '42.51%', '51.99%'],
183
[174, 44, 8, 0, '$481.79', '42.39%', '21.23%'],
184
[175, 27, 2, 1, '$464.96', '14.03%', '71.42%'],
185
[176, 9, 8, 0, '$456.77', '35.47%', '29.23%'],
186
[177, 13, 10, 2, '$393.63', '135.96%', '27.17%'],
187
[178, 9, 9, 2, '$472.77', '144.47%', '96.86%'],
188
[179, 16, 30, 0, '$398.08', '22.40%', '20.55%'],
189
[180, 25, 34, 0, '$228.47', '128.91%', '49.39%'],
190
[181, 28, 24, 0, '$261.91', '98.72%', '47.21%'],
191
[182, 13, 33, 3, '$252.99', '32.71%', '63.10%'],
192
[183, 14, 30, 2, '$224.74', '137.10%', '41.33%'],
193
[184, 1, 30, 1, '$252.26', '99.49%', '13.51%'],
194
[185, 31, 9, 2, '$223.09', '118.81%', '27.53%'],
195
[186, 43, 22, 0, '$48.90', '26.04%', '51.45%'],
196
[187, 37, 6, 0, '$318.10', '99.73%', '75.86%'],
197
[188, 14, 27, 2, '$209.26', '20.59%', '72.29%'],
198
[189, 43, 9, 0, '$384.09', '8.86%', '27.94%'],
199
[190, 37, 6, 0, '$374.42', '175.92%', '11.88%'],
200
[191, 37, 20, 0, '$361.86', '46.65%', '50.08%'],
201
[192, 3, 24, 2, '$194.17', '145.60%', '51.01%'],
202
[193, 33, 1, 0, '$467.07', '175.79%', '17.64%'],
203
[194, 18, 10, 1, '$475.56', '57.07%', '72.85%'],
204
[195, 7, 22, 1, '$412.53', '174.03%', '42.28%'],
205
[196, 20, 23, 3, '$132.04', '71.93%', '9.82%'],
206
[197, 31, 23, 0, '$89.61', '51.00%', '64.26%'],
207
[198, 11, 4, 1, '$161.92', '31.70%', '51.51%'],
208
[199, 34, 17, 2, '$288.24', '155.64%', '80.52%'],
209
[200, 14, 8, 1, '$492.15', '105.02%', '91.67%'],
210
[201, 19, 13, 0, '$295.88', '147.76%', '51.82%'],
211
[202, 14, 14, 0, '$442.03', '2.37%', '63.23%'],
212
[203, 43, 23, 2, '$91.59', '85.70%', '56.46%'],
213
[204, 6, 31, 1, '$271.90', '52.35%', '34.57%'],
214
[205, 25, 32, 1, '$363.69', '130.85%', '63.04%'],
215
[206, 18, 22, 1, '$296.75', '34.37%', '34.00%'],
216
[207, 35, 11, 2, '$447.56', '192.33%', '70.81%'],
217
[208, 25, 26, 2, '$126.01', '149.90%', '11.23%'],
218
[209, 26, 26, 2, '$81.56', '65.17%', '19.00%'],
219
[210, 36, 17, 3, '$462.68', '173.03%', '57.81%'],
220
[211, 30, 4, 3, '$62.55', '82.38%', '16.23%'],
221
[212, 39, 32, 0, '$152.69', '175.26%', '77.08%'],
222
[213, 26, 32, 3, '$408.57', '80.71%', '68.45%'],
223
[214, 41, 30, 1, '$169.70', '154.79%', '35.07%'],
224
[215, 42, 16, 2, '$99.86', '69.91%', '11.05%'],
225
[216, 35, 31, 1, '$127.80', '7.89%', '98.83%'],
226
[217, 3, 23, 2, '$147.81', '38.74%', '51.48%'],
227
[218, 32, 5, 1, '$201.46', '111.46%', '50.59%'],
228
[219, 38, 34, 1, '$475.83', '126.78%', '40.13%'],
229
[220, 14, 27, 2, '$48.21', '191.19%', '78.24%'],
230
[221, 35, 8, 3, '$342.09', '68.43%', '27.41%'],
231
[222, 16, 10, 1, '$255.18', '101.63%', '78.90%'],
232
],
233
};
234
235
return (
236
<MDBContainer fluid>
237
<MDBRow className='justify-content-center'>
238
<MDBCol md='10'>
239
<section>
240
<MDBCard>
241
<MDBCardHeader background='light' className='border-0 p-3 text-center'>
242
<strong>Revenue sources</strong>
243
</MDBCardHeader>
244
<MDBCardBody>
245
<MDBRow>
246
<MDBCol md='4' className='mb-4'>
247
<MDBChart
248
type='bar'
249
data={{
250
labels: ['Google', 'YouTube', 'Facebook', 'Twitter'],
251
datasets: [
252
{
253
data: [2112, 1343, 545, 324],
254
},
255
],
256
}}
257
options={optionsRevenueSourcesChart}
258
/>
259
<MDBChart
260
type='pie'
261
data={{
262
labels: ['Organic search', 'Direct', 'Social'],
263
datasets: [
264
{
265
label: 'Traffic',
266
data: [8112, 5343, 3545],
267
backgroundColor: [
268
'rgba(63, 81, 181, 0.5)',
269
'rgba(77, 182, 172, 0.5)',
270
'rgba(66, 133, 244, 0.5)',
271
],
272
},
273
],
274
}}
275
options={{ chartMarketingSourcesOption }}
276
/>
277
</MDBCol>
278
279
<MDBCol md='8' className=' mb-4'>
280
<MDBDatatable data={basicData} hover sm />
281
</MDBCol>
282
</MDBRow>
283
</MDBCardBody>
284
</MDBCard>
285
</section>
286
</MDBCol>
287
</MDBRow>
288
</MDBContainer>
289
);
290
}
291
292
export default App;
293
Console errors: 0