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
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
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 devicesChartOptions = {
24
plugins: {
25
legend: {
26
position: 'right',
27
labels: {
28
boxWidth: 10,
29
},
30
},
31
datalabels: {
32
formatter: (value: any) => {
33
let sum = 0;
34
const dataArr = devices1ChartData.datasets[0].data;
35
dataArr.map((data: any) => {
36
sum += data;
37
});
38
const percentage = ((value * 100) / sum).toFixed(2) + '%';
39
return percentage;
40
},
41
color: 'white',
42
labels: {
43
title: {
44
font: {
45
size: '9',
46
},
47
},
48
},
49
},
50
},
51
};
52
const devices1ChartData = {
53
labels: ['Desktop', 'Mobile', 'Tablet'],
54
datasets: [
55
{
56
label: 'Traffic',
57
data: [2112, 2343, 2545],
58
backgroundColor: ['rgba(63, 81, 181, 0.5)', 'rgba(77, 182, 172, 0.5)', 'rgba(66, 133, 244, 0.5)'],
59
},
60
],
61
};
62
const devices2ChartData = {
63
labels: ['Desktop', 'Mobile', 'Tablet'],
64
datasets: [
65
{
66
label: 'Traffic',
67
data: [2112, 2943, 1545],
68
backgroundColor: ['rgba(63, 81, 181, 0.5)', 'rgba(77, 182, 172, 0.5)', 'rgba(66, 133, 244, 0.5)'],
69
},
70
],
71
};
72
73
return (
74
<MDBContainer fluid>
75
<MDBRow className='justify-content-center'>
76
<MDBCol md='10'>
77
<section className='text-center'>
78
<MDBRow>
79
<MDBCol lg='6' className='mb-4 mb-lg-0'>
80
<MDBRow>
81
<MDBCol lg='6' className='mb-4'>
82
<MDBCard className='text-center'>
83
<MDBCardHeader background='light' className='border-0'>
84
<strong>Indexed Pages on Google</strong>
85
</MDBCardHeader>
86
<MDBCardBody>
87
<p className='mb-2'>Unique pages</p>
88
<h5>34</h5>
89
90
<hr />
91
92
<div className='d-flex justify-content-between'>
93
<div>
94
<p className='mb-2'>
95
<small>Percentage change</small>
96
</p>
97
<p className='mb-2 text-success' style={{ fontSize: '.875rem', fontWeight: '500' }}>
98
<MDBIcon icon='caret-up' className='me-1' />
99
<span>3.0%</span>
100
</p>
101
</div>
102
<div>
103
<p className='mb-2'>
104
<small>Absolute change</small>
105
</p>
106
<p className='mb-2 text-success' style={{ fontSize: '.875rem', fontWeight: '500' }}>
107
<MDBIcon icon='caret-up' className='me-1' />
108
<span>1</span>
109
</p>
110
</div>
111
</div>
112
</MDBCardBody>
113
</MDBCard>
114
</MDBCol>
115
116
<MDBCol lg='6' className='mb-4'>
117
<MDBCard className='text-center'>
118
<MDBCardHeader background='light' className='border-0'>
119
<strong>Indexed Queries on Google</strong>
120
</MDBCardHeader>
121
<MDBCardBody>
122
<p className='mb-2'>Unique keywords</p>
123
<h5>860</h5>
124
125
<hr />
126
127
<div className='d-flex justify-content-between'>
128
<div>
129
<p className='mb-2'>
130
<small>Percentage change</small>
131
</p>
132
<p className='mb-2 text-danger' style={{ fontSize: '.875rem', fontWeight: '500' }}>
133
<MDBIcon icon='caret-down' className='me-1' />
134
<span>-12.7%</span>
135
</p>
136
</div>
137
<div>
138
<p className='mb-2'>
139
<small>Absolute change</small>
140
</p>
141
<p className='mb-2 text-danger' style={{ fontSize: '.875rem', fontWeight: '500' }}>
142
<MDBIcon icon='caret-down' className='me-1' />
143
<span>-125</span>
144
</p>
145
</div>
146
</div>
147
</MDBCardBody>
148
</MDBCard>
149
</MDBCol>
150
</MDBRow>
151
152
<MDBRow>
153
<MDBCol lg='6' className='mb-4 mb-lg-0'>
154
<MDBCard>
155
<MDBCardBody>
156
<MDBChart type='doughnut' options={devicesChartOptions} data={devices1ChartData} />
157
</MDBCardBody>
158
</MDBCard>
159
</MDBCol>
160
161
<MDBCol lg='6'>
162
<MDBCard>
163
<MDBCardBody>
164
<MDBChart type='doughnut' options={devicesChartOptions} data={devices2ChartData} />
165
</MDBCardBody>
166
</MDBCard>
167
</MDBCol>
168
</MDBRow>
169
</MDBCol>
170
<MDBCol lg='6' className='mb-4 mb-lg-0'>
171
<MDBCard>
172
<MDBCardBody>
173
<MDBChart
174
height={390}
175
type='line'
176
options={{
177
maintainAspectRatio: false,
178
scales: {
179
y: {
180
stacked: false,
181
},
182
},
183
}}
184
data={{
185
labels: [
186
'06.08.2020',
187
'07.08.2020',
188
'08.08.2020',
189
'09.08.2020',
190
'10.08.2020',
191
'11.08.2020',
192
'12.08.2020',
193
],
194
datasets: [
195
{
196
label: 'Unique pages',
197
data: [25, 49, 40, 21, 56, 75, 30],
198
},
199
{
200
label: 'Unique queries',
201
data: [58, 18, 30, 59, 46, 77, 90],
202
backgroundColor: 'rgba(66, 133, 244, 0.0)',
203
borderColor: '#33b5e5',
204
pointBorderColor: '#33b5e5',
205
pointBackgroundColor: '#33b5e5',
206
},
207
],
208
}}
209
/>
210
</MDBCardBody>
211
</MDBCard>
212
</MDBCol>
213
</MDBRow>
214
</section>
215
</MDBCol>
216
</MDBRow>
217
</MDBContainer>
218
);
219
}
220
221
export default App;
222
Console errors: 0