225 lines
5.6 KiB
JavaScript
225 lines
5.6 KiB
JavaScript
import React from "react";
|
|
import { Box, Typography } from "@mui/material";
|
|
import Card from "@mui/material/Card";
|
|
import Menu from "@mui/material/Menu";
|
|
import MenuItem from "@mui/material/MenuItem";
|
|
import IconButton from "@mui/material/IconButton";
|
|
import MoreHorizIcon from "@mui/icons-material/MoreHoriz";
|
|
import ArrowDownwardIcon from "@mui/icons-material/ArrowDownward";
|
|
import ArrowUpwardIcon from "@mui/icons-material/ArrowUpward";
|
|
import dynamic from "next/dynamic";
|
|
const Chart = dynamic(() => import("react-apexcharts"), {
|
|
ssr: false,
|
|
});
|
|
|
|
const CompletedTasks = () => {
|
|
const [anchorEl, setAnchorEl] = React.useState(null);
|
|
const open = Boolean(anchorEl);
|
|
const handleClick = (event) => {
|
|
setAnchorEl(event.currentTarget);
|
|
};
|
|
const handleClose = () => {
|
|
setAnchorEl(null);
|
|
};
|
|
|
|
// Chart
|
|
const series = [
|
|
{
|
|
name: "Task",
|
|
data: [21, 22, 10, 28, 16, 21, 13, 30],
|
|
},
|
|
];
|
|
const options = {
|
|
chart: {
|
|
toolbar: {
|
|
show: false,
|
|
},
|
|
events: {
|
|
click: function (chart, w, e) {
|
|
// console.log(chart, w, e)
|
|
},
|
|
},
|
|
},
|
|
colors: ["#757FEF"],
|
|
plotOptions: {
|
|
bar: {
|
|
columnWidth: "30%",
|
|
distributed: true,
|
|
borderRadius: 6,
|
|
},
|
|
},
|
|
dataLabels: {
|
|
enabled: false,
|
|
},
|
|
legend: {
|
|
show: false,
|
|
},
|
|
xaxis: {
|
|
categories: [
|
|
["1 Jan"],
|
|
["2 Jan"],
|
|
["3 Jan"],
|
|
["4 Jan"],
|
|
["5 Jan"],
|
|
["6 Jan"],
|
|
["7 Jan"],
|
|
["8 Jan"],
|
|
],
|
|
labels: {
|
|
show: false,
|
|
},
|
|
axisTicks: {
|
|
show: false,
|
|
},
|
|
},
|
|
yaxis: {
|
|
show: false,
|
|
},
|
|
grid: {
|
|
show: false,
|
|
},
|
|
fill: {
|
|
opacity: 1,
|
|
},
|
|
};
|
|
|
|
return (
|
|
<>
|
|
<Card
|
|
sx={{
|
|
boxShadow: "none",
|
|
borderRadius: "10px",
|
|
p: "25px",
|
|
mb: "15px",
|
|
}}
|
|
>
|
|
<Box
|
|
sx={{
|
|
display: "flex",
|
|
justifyContent: "space-between",
|
|
alignItems: "center",
|
|
borderBottom: "1px solid #EEF0F7",
|
|
paddingBottom: "10px",
|
|
mb: "20px",
|
|
}}
|
|
className="for-dark-bottom-border"
|
|
>
|
|
<Typography
|
|
as="h3"
|
|
sx={{
|
|
fontSize: 18,
|
|
fontWeight: 500,
|
|
}}
|
|
>
|
|
Completed Tasks
|
|
</Typography>
|
|
|
|
<Box>
|
|
<IconButton
|
|
onClick={handleClick}
|
|
size="small"
|
|
aria-controls={open ? "account-menu" : undefined}
|
|
aria-haspopup="true"
|
|
aria-expanded={open ? "true" : undefined}
|
|
>
|
|
<MoreHorizIcon />
|
|
</IconButton>
|
|
</Box>
|
|
<Menu
|
|
anchorEl={anchorEl}
|
|
id="account-menu"
|
|
open={open}
|
|
onClose={handleClose}
|
|
onClick={handleClose}
|
|
PaperProps={{
|
|
elevation: 0,
|
|
sx: {
|
|
overflow: "visible",
|
|
filter: "drop-shadow(0px 2px 8px rgba(0,0,0,0.32))",
|
|
mt: 1.5,
|
|
"& .MuiAvatar-root": {
|
|
width: 32,
|
|
height: 32,
|
|
ml: -0.5,
|
|
mr: 1,
|
|
},
|
|
"&:before": {
|
|
content: '""',
|
|
display: "block",
|
|
position: "absolute",
|
|
top: 0,
|
|
right: 14,
|
|
width: 10,
|
|
height: 10,
|
|
bgcolor: "background.paper",
|
|
transform: "translateY(-50%) rotate(45deg)",
|
|
zIndex: 0,
|
|
},
|
|
},
|
|
}}
|
|
transformOrigin={{ horizontal: "right", vertical: "top" }}
|
|
anchorOrigin={{ horizontal: "right", vertical: "bottom" }}
|
|
>
|
|
<MenuItem sx={{ fontSize: "14px" }}>Last 15 Days</MenuItem>
|
|
<MenuItem sx={{ fontSize: "14px" }}>Last Month</MenuItem>
|
|
<MenuItem sx={{ fontSize: "14px" }}>Last Year</MenuItem>
|
|
</Menu>
|
|
</Box>
|
|
|
|
<Chart options={options} series={series} type="bar" height={320} />
|
|
|
|
<Box
|
|
sx={{
|
|
display: "flex",
|
|
alignItems: "center",
|
|
justifyContent: "space-between",
|
|
textAlign: "center",
|
|
mt: "22px",
|
|
}}
|
|
>
|
|
<Box>
|
|
<Typography color="#A9A9C8" mb={1}>
|
|
Target
|
|
</Typography>
|
|
<Typography fontWeight="500" fontSize="20px" as="h4">
|
|
<ArrowDownwardIcon
|
|
color="danger"
|
|
style={{ position: "relative", top: "3px" }}
|
|
/>{" "}
|
|
20k
|
|
</Typography>
|
|
</Box>
|
|
|
|
<Box>
|
|
<Typography color="#A9A9C8" mb={1}>
|
|
Last Week
|
|
</Typography>
|
|
<Typography fontWeight="500" fontSize="20px" as="h4">
|
|
<ArrowUpwardIcon
|
|
color="success"
|
|
style={{ position: "relative", top: "3px" }}
|
|
/>{" "}
|
|
5.50k
|
|
</Typography>
|
|
</Box>
|
|
|
|
<Box>
|
|
<Typography color="#A9A9C8" mb={1}>
|
|
Last Month
|
|
</Typography>
|
|
<Typography fontWeight="500" fontSize="20px" as="h4">
|
|
<ArrowUpwardIcon
|
|
color="success"
|
|
style={{ position: "relative", top: "3px" }}
|
|
/>{" "}
|
|
50k
|
|
</Typography>
|
|
</Box>
|
|
</Box>
|
|
</Card>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default CompletedTasks;
|