import React from "react";
import { Box, Typography } from "@mui/material";
import Card from "@mui/material/Card";
import IconButton from "@mui/material/IconButton";
import PropTypes from "prop-types";
import { useTheme } from "@mui/material/styles";
import Table from "@mui/material/Table";
import TableHead from "@mui/material/TableHead";
import TableBody from "@mui/material/TableBody";
import TableCell from "@mui/material/TableCell";
import TableContainer from "@mui/material/TableContainer";
import TableFooter from "@mui/material/TableFooter";
import TablePagination from "@mui/material/TablePagination";
import TableRow from "@mui/material/TableRow";
import Paper from "@mui/material/Paper";
import FirstPageIcon from "@mui/icons-material/FirstPage";
import KeyboardArrowLeft from "@mui/icons-material/KeyboardArrowLeft";
import KeyboardArrowRight from "@mui/icons-material/KeyboardArrowRight";
import LastPageIcon from "@mui/icons-material/LastPage";
import Tooltip from "@mui/material/Tooltip";
import Grid from "@mui/material/Grid";
import DeleteIcon from "@mui/icons-material/Delete";
import DriveFileRenameOutlineIcon from "@mui/icons-material/DriveFileRenameOutline";
import Button from "@mui/material/Button";
import TextField from "@mui/material/TextField";
import AddIcon from "@mui/icons-material/Add";
import ClearIcon from "@mui/icons-material/Clear";
import Avatar from "@mui/material/Avatar";
import Checkbox from "@mui/material/Checkbox";
const label = { inputProps: { "aria-label": "Checkbox demo" } };
import { styled } from "@mui/material/styles";
import Dialog from "@mui/material/Dialog";
import DialogTitle from "@mui/material/DialogTitle";
import CloseIcon from "@mui/icons-material/Close";
// Add Task Modal
const BootstrapDialog = styled(Dialog)(({ theme }) => ({
"& .MuiDialogContent-root": {
padding: theme.spacing(2),
},
"& .MuiDialogActions-root": {
padding: theme.spacing(1),
},
}));
function BootstrapDialogTitle(props) {
const { children, onClose, ...other } = props;
return (
{children}
{onClose ? (
theme.palette.grey[500],
}}
>
) : null}
);
}
BootstrapDialogTitle.propTypes = {
children: PropTypes.node,
onClose: PropTypes.func.isRequired,
};
// End Add Task Modal
function ToDoList(props) {
const theme = useTheme();
const { count, page, rowsPerPage, onPageChange } = props;
const handleFirstPageButtonClick = (event) => {
onPageChange(event, 0);
};
const handleBackButtonClick = (event) => {
onPageChange(event, page - 1);
};
const handleNextButtonClick = (event) => {
onPageChange(event, page + 1);
};
const handleLastPageButtonClick = (event) => {
onPageChange(event, Math.max(0, Math.ceil(count / rowsPerPage) - 1));
};
return (
{theme.direction === "rtl" ? : }
{theme.direction === "rtl" ? (
) : (
)}
= Math.ceil(count / rowsPerPage) - 1}
aria-label="next page"
>
{theme.direction === "rtl" ? (
) : (
)}
= Math.ceil(count / rowsPerPage) - 1}
aria-label="last page"
>
{theme.direction === "rtl" ? : }
);
}
ToDoList.propTypes = {
count: PropTypes.number.isRequired,
onPageChange: PropTypes.func.isRequired,
page: PropTypes.number.isRequired,
rowsPerPage: PropTypes.number.isRequired,
};
function createData(
name,
url,
startDate,
endDate,
status,
badgeClass,
completion,
priority
) {
return {
name,
url,
startDate,
endDate,
status,
badgeClass,
completion,
priority,
};
}
const rows = [
createData(
"Public Beta Release",
"/images/user1.png",
"1 Jan 2022",
"1 Apr 2022",
"Completed",
"successBadge",
"10/10",
"High"
),
createData(
"Fix Platform Errors",
"/images/user2.png",
"1 Mar 2022",
"1 May 2022",
"Completed",
"successBadge",
"10/10",
"High"
),
createData(
"Launch our Mobile App",
"/images/user3.png",
"15 Apr 2022",
"15 Jun 2022",
"On Going",
"primaryBadge",
"7/10",
"Medium"
),
createData(
"Add the New Pricing Page",
"/images/user4.png",
"15 May 2022",
"15 Jun 2022",
"Pending",
"dangerBadge",
"1/10",
"Low"
),
createData(
"Redesign New Online Shop",
"/images/user5.png",
"15 Jun 2022",
"15 Aug 2022",
"On Going",
"primaryBadge",
"0/10",
"Low"
),
createData(
"Material Ui Design",
"/images/user6.png",
"15 Jul 2022",
"15 Sep 2022",
"On Going",
"primaryBadge",
"7/10",
"Medium"
),
createData(
"Add Progress Track",
"/images/user7.png",
"15 Mar 2022",
"15 May 2022",
"Completed",
"successBadge",
"10/10",
"High"
),
createData(
"Web Design",
"/images/user8.png",
"15 Aug 2022",
"15 Dec 2022",
"On Going",
"primaryBadge",
"9/10",
"High"
),
createData(
"Web Development",
"/images/user9.png",
"15 Nov 2022",
"15 Jan 2023",
"On Going",
"primaryBadge",
"8/10",
"High"
),
createData(
"React App Development",
"/images/user10.png",
"15 Jan 2022",
"15 Mar 2022",
"Completed",
"successBadge",
"10/10",
"High"
),
createData(
"eCommerce Development",
"/images/user11.png",
"15 Mar 2022",
"15 May 2022",
"On Going",
"primaryBadge",
"8/10",
"Medium"
),
createData(
"App Development",
"/images/user12.png",
"15 May 2022",
"15 Jul 2022",
"On Going",
"primaryBadge",
"5/10",
"Medium"
),
].sort((a, b) => (a.name < b.name ? -1 : 1));
const ToDoLists = () => {
const [page, setPage] = React.useState(0);
const [rowsPerPage, setRowsPerPage] = React.useState(8);
// Avoid a layout jump when reaching the last page with empty rows.
const emptyRows =
page > 0 ? Math.max(0, (1 + page) * rowsPerPage - rows.length) : 0;
const handleChangePage = (event, newPage) => {
setPage(newPage);
};
const handleChangeRowsPerPage = (event) => {
setRowsPerPage(parseInt(event.target.value, 10));
setPage(0);
};
// Add task modal
const [open, setOpen] = React.useState(false);
const handleClickOpen = () => {
setOpen(true);
};
const handleClose = () => {
setOpen(false);
};
const handleSubmit = (event) => {
event.preventDefault();
const data = new FormData(event.currentTarget);
console.log({
email: data.get("email"),
password: data.get("password"),
});
};
// End Add Task Modal
return (
<>
My Tasks
Name
Assigned
Start Date
End Date
Status
Completion
Priority
Action
{(rowsPerPage > 0
? rows.slice(
page * rowsPerPage,
page * rowsPerPage + rowsPerPage
)
: rows
).map((row) => (
{row.name}
{row.startDate}
{row.endDate}
{row.status}
{row.completion}
{row.priority}
))}
{emptyRows > 0 && (
)}
{/* Add task modal */}
Add Task
Task
Member
Start Date
End Date
Status
Completion
Priority
>
);
};
export default ToDoLists;