Files
float-fleet/components/Dashboard/Analytics/SessionsDevice/index.js
T
DESKTOP-GBA0BK8\Admin 97cc85c49d first commit
2023-03-25 20:44:56 -04:00

106 lines
2.5 KiB
JavaScript

import React, { Component } from "react";
import { Box, Typography } from "@mui/material";
import Card from "@mui/material/Card";
import dynamic from "next/dynamic";
const Chart = dynamic(() => import("react-apexcharts"), {
ssr: false,
});
import styles from "@/components/Dashboard/Analytics/SessionsDevice/SessionsDevice.module.css";
class SessionsDevice extends Component {
constructor(props) {
super(props);
this.state = {
series: [70],
options: {
plotOptions: {
radialBar: {
hollow: {
size: "50%",
},
track: {
background: "rgba(255, 138, 84, 0.5)",
},
dataLabels: {
name: {
show: false,
},
value: {
offsetY: 4,
color: "#FF8A54",
fontSize: "16px",
fontWeight: "500",
},
},
},
},
fill: {
colors: ["#FF8A54"],
},
},
};
}
render() {
return (
<>
<Card
sx={{
boxShadow: "none",
borderRadius: "10px",
p: "25px 20px",
mb: "15px",
}}
>
<Box
sx={{
borderBottom: "1px solid #EEF0F7",
paddingBottom: "10px",
}}
className="for-dark-bottom-border"
>
<Typography
as="h3"
sx={{
fontSize: 18,
fontWeight: 500,
}}
>
Sessions Device
</Typography>
</Box>
<Chart
options={this.state.options}
series={this.state.series}
type="radialBar"
/>
<>
<div className={styles.infoList}>
<p>Mobile</p>
<h5>15,684</h5>
<div className={styles.rightContent}>
<p>
<i className="ri-bar-chart-fill"></i> 50%
</p>
</div>
</div>
<div className={styles.infoList}>
<p>Laptop</p>
<h5>36,868</h5>
<div className={styles.rightContent}>
<p>
<i className="ri-bar-chart-fill"></i> 60%
</p>
</div>
</div>
</>
</Card>
</>
);
}
}
export default SessionsDevice;