297 lines
7.8 KiB
React
297 lines
7.8 KiB
React
|
|
import {
|
||
|
|
Avatar,
|
||
|
|
Badge,
|
||
|
|
Box,
|
||
|
|
Button,
|
||
|
|
HStack,
|
||
|
|
Input,
|
||
|
|
Menu,
|
||
|
|
MenuButton,
|
||
|
|
MenuItem,
|
||
|
|
MenuList,
|
||
|
|
Portal,
|
||
|
|
Select,
|
||
|
|
Switch,
|
||
|
|
Tag,
|
||
|
|
Text,
|
||
|
|
Tooltip,
|
||
|
|
useToast,
|
||
|
|
} from "@chakra-ui/react";
|
||
|
|
import React, { useContext, useEffect, useState } from "react";
|
||
|
|
import { OPACITY_ON_LOAD } from "../../Layout/animations";
|
||
|
|
import DataTable from "../../Components/DataTable/DataTable";
|
||
|
|
import { HiDotsVertical } from "react-icons/hi";
|
||
|
|
import { Link, Link as RouterLink, useNavigate } from "react-router-dom";
|
||
|
|
import {
|
||
|
|
AddIcon,
|
||
|
|
CheckIcon,
|
||
|
|
CloseIcon,
|
||
|
|
DeleteIcon,
|
||
|
|
EditIcon,
|
||
|
|
EmailIcon,
|
||
|
|
ViewIcon,
|
||
|
|
} from "@chakra-ui/icons";
|
||
|
|
import Pagination from "../../Components/Pagination";
|
||
|
|
import GlobalStateContext from "../../Contexts/GlobalStateContext";
|
||
|
|
import CustomAlertDialog from "../../Components/CustomAlertDialog";
|
||
|
|
import ToastBox from "../../Components/ToastBox";
|
||
|
|
// import { debounce } from "./AddIOCharges";
|
||
|
|
|
||
|
|
const formatDate = (date) => new Date(date).toLocaleDateString(); // Simple date formatter
|
||
|
|
|
||
|
|
const ViewIOTable = () => {
|
||
|
|
const navigate = useNavigate();
|
||
|
|
const toast = useToast();
|
||
|
|
const { viewIO, setViewIO, slideFromRight } = useContext(GlobalStateContext);
|
||
|
|
const [searchTerm, setSearchTerm] = useState("");
|
||
|
|
const [isLoading, setIsLoading] = useState(true);
|
||
|
|
const [deleteAlert, setDeleteAlert] = useState(false);
|
||
|
|
const [actionId, setActionId] = useState(false);
|
||
|
|
const [mouseEntered, setMouseEntered] = useState(false);
|
||
|
|
const [mouseEnteredId, setMouseEnteredId] = useState("");
|
||
|
|
|
||
|
|
useEffect(() => {
|
||
|
|
// Simulate loading
|
||
|
|
const timer = setTimeout(() => {
|
||
|
|
setIsLoading(false);
|
||
|
|
}, 1500);
|
||
|
|
|
||
|
|
// Cleanup the timer on component unmount
|
||
|
|
return () => clearTimeout(timer);
|
||
|
|
}, []);
|
||
|
|
|
||
|
|
// ====================================================[Table Setup]================================================================
|
||
|
|
const tableHeadRow = [
|
||
|
|
"Sr.no",
|
||
|
|
"Deal ID",
|
||
|
|
"Deal Name",
|
||
|
|
"Sponsor Name",
|
||
|
|
"IO status",
|
||
|
|
"Action",
|
||
|
|
];
|
||
|
|
|
||
|
|
// const handleUpdateStatus = debounce((id) => {
|
||
|
|
// setInvestmentType((prevInvestmentType) =>
|
||
|
|
// prevInvestmentType.map((investmentType) =>
|
||
|
|
// investmentType.id === id
|
||
|
|
// ? { ...investmentType, status: !investmentType.status }
|
||
|
|
// : investmentType
|
||
|
|
// )
|
||
|
|
// );
|
||
|
|
// toast({
|
||
|
|
// render: () => <ToastBox message={"Status changed succesfully.!"} />,
|
||
|
|
// });
|
||
|
|
// }, 300);
|
||
|
|
|
||
|
|
// ====================================================[Table Filter]================================================================
|
||
|
|
const filteredData = viewIO.filter((item) => {
|
||
|
|
// Filter by name (case insensitive)
|
||
|
|
const name = item.DealName;
|
||
|
|
const searchLower = searchTerm.toLowerCase();
|
||
|
|
const nameMatches = name.toLowerCase().includes(searchLower);
|
||
|
|
|
||
|
|
// Filter by status
|
||
|
|
// const status = item.status;
|
||
|
|
// const statusLower = status ? "active" : "inactive";
|
||
|
|
|
||
|
|
// const statusMatches =
|
||
|
|
// statusFilter === "all" ||
|
||
|
|
// (statusFilter === "active" && status === true) ||
|
||
|
|
// (statusFilter === "inactive" && status === false);
|
||
|
|
|
||
|
|
return nameMatches;
|
||
|
|
});
|
||
|
|
|
||
|
|
const extractedArray = filteredData?.map((item, index) => ({
|
||
|
|
"Sr.no": (
|
||
|
|
<Text
|
||
|
|
justifyContent={slideFromRight ? "right" : "left"}
|
||
|
|
as={"span"}
|
||
|
|
color={"teal.900"}
|
||
|
|
fontWeight={"500"}
|
||
|
|
className="d-flex align-items-center web-text-small"
|
||
|
|
>
|
||
|
|
{index + 1}
|
||
|
|
</Text>
|
||
|
|
),
|
||
|
|
"Deal ID": (
|
||
|
|
<Text
|
||
|
|
justifyContent={slideFromRight ? "right" : "left"}
|
||
|
|
as={"span"}
|
||
|
|
color={"teal.900"}
|
||
|
|
fontWeight={"500"}
|
||
|
|
className="d-flex align-items-center web-text-small"
|
||
|
|
>
|
||
|
|
{item.DealID}
|
||
|
|
</Text>
|
||
|
|
),
|
||
|
|
"Deal Name": (
|
||
|
|
<Box w={"auto"} isTruncated={true}>
|
||
|
|
<Text as={"span"} color={"teal.900"} fontWeight={"500"}>
|
||
|
|
{item.DealName}
|
||
|
|
</Text>
|
||
|
|
</Box>
|
||
|
|
),
|
||
|
|
"Sponsor Name": (
|
||
|
|
<Box w={"auto"} isTruncated={true}>
|
||
|
|
<Text as={"span"} color={"teal.900"} fontWeight={"500"}>
|
||
|
|
{item.SponsorName}
|
||
|
|
</Text>
|
||
|
|
</Box>
|
||
|
|
),
|
||
|
|
"IO status": (
|
||
|
|
<Box w={"auto"} isTruncated={true}>
|
||
|
|
<Badge
|
||
|
|
as={"span"}
|
||
|
|
color={
|
||
|
|
item.IOstatus === "Open"
|
||
|
|
? "#00B69B"
|
||
|
|
: item.IOstatus === "Pending"
|
||
|
|
? "#6226EF"
|
||
|
|
: "#EF3826"
|
||
|
|
}
|
||
|
|
colorScheme={
|
||
|
|
item.IOstatus === "Open"
|
||
|
|
? "green"
|
||
|
|
: item.IOstatus === "Pending"
|
||
|
|
? "purple"
|
||
|
|
: "red"
|
||
|
|
}
|
||
|
|
fontWeight={"500"}
|
||
|
|
padding={"5px 15px"}
|
||
|
|
rounded={"10px"}
|
||
|
|
width={"100px"}
|
||
|
|
marginRight={"25px"}
|
||
|
|
>
|
||
|
|
{item.IOstatus}
|
||
|
|
</Badge>
|
||
|
|
</Box>
|
||
|
|
),
|
||
|
|
|
||
|
|
Action: (
|
||
|
|
<Box display={"flex"} justifyContent={"space-evenly"}>
|
||
|
|
<Tooltip
|
||
|
|
rounded={"sm"}
|
||
|
|
fontSize={"xs"}
|
||
|
|
label="View"
|
||
|
|
bg="#fff"
|
||
|
|
color={"green.500"}
|
||
|
|
placement="top"
|
||
|
|
>
|
||
|
|
<Button
|
||
|
|
_hover={{ color: "green.500" }}
|
||
|
|
// transition={"0.5s all"}
|
||
|
|
onClick={() => {
|
||
|
|
navigate(`/view-io/${item.id}`);
|
||
|
|
}}
|
||
|
|
color="green.300"
|
||
|
|
rounded={"sm"}
|
||
|
|
size={"xs"}
|
||
|
|
>
|
||
|
|
<ViewIcon />
|
||
|
|
</Button>
|
||
|
|
</Tooltip>
|
||
|
|
|
||
|
|
<Tooltip
|
||
|
|
rounded={"sm"}
|
||
|
|
fontSize={"xs"}
|
||
|
|
label="Delete"
|
||
|
|
bg="#fff"
|
||
|
|
color={"red.500"}
|
||
|
|
placement="top"
|
||
|
|
>
|
||
|
|
<Button
|
||
|
|
onClick={() => {
|
||
|
|
setActionId(item?.id);
|
||
|
|
setDeleteAlert(true);
|
||
|
|
}}
|
||
|
|
_hover={{ color: "red.500" }}
|
||
|
|
// transition={"0.5s all"}
|
||
|
|
color="red.300"
|
||
|
|
rounded={"sm"}
|
||
|
|
size={"xs"}
|
||
|
|
>
|
||
|
|
<DeleteIcon />
|
||
|
|
</Button>
|
||
|
|
</Tooltip>
|
||
|
|
</Box>
|
||
|
|
),
|
||
|
|
}));
|
||
|
|
|
||
|
|
const handleDelete = () => {
|
||
|
|
const viewIO = viewIO.filter((viewIO) => viewIO.id !== actionId);
|
||
|
|
|
||
|
|
setTimeout(() => {
|
||
|
|
setViewIO(viewIO);
|
||
|
|
setDeleteAlert(false);
|
||
|
|
setIsLoading(false);
|
||
|
|
}, 100);
|
||
|
|
setIsLoading(true);
|
||
|
|
};
|
||
|
|
|
||
|
|
return (
|
||
|
|
<Box {...OPACITY_ON_LOAD} overflowY={"scroll"} height={"100vh"} pb={38}>
|
||
|
|
<Box bg="white.500">
|
||
|
|
<HStack
|
||
|
|
display={"flex"}
|
||
|
|
justifyContent={"space-between"}
|
||
|
|
ps={1}
|
||
|
|
pe={1}
|
||
|
|
pb={4}
|
||
|
|
pt={4}
|
||
|
|
spacing="24px"
|
||
|
|
>
|
||
|
|
<Input
|
||
|
|
type="search"
|
||
|
|
width={300}
|
||
|
|
placeholder="Search..."
|
||
|
|
size="sm"
|
||
|
|
rounded="sm"
|
||
|
|
focusBorderColor="green.500"
|
||
|
|
value={searchTerm}
|
||
|
|
onChange={(e) => setSearchTerm(e.target.value)}
|
||
|
|
/>
|
||
|
|
|
||
|
|
<HStack display={"flex"} alignItems={"center"}>
|
||
|
|
<Pagination totalItems={10} />
|
||
|
|
|
||
|
|
{/* <Link to={"/investment-type/add-investment"}>
|
||
|
|
<Button
|
||
|
|
leftIcon={<AddIcon />}
|
||
|
|
colorScheme={"green"}
|
||
|
|
rounded={"sm"}
|
||
|
|
size={"sm"}
|
||
|
|
>
|
||
|
|
Add Investment
|
||
|
|
</Button>
|
||
|
|
</Link> */}
|
||
|
|
</HStack>
|
||
|
|
</HStack>
|
||
|
|
</Box>
|
||
|
|
|
||
|
|
<DataTable
|
||
|
|
emptyMessage={`We don't have any Sponers `}
|
||
|
|
tableHeadRow={tableHeadRow}
|
||
|
|
data={extractedArray}
|
||
|
|
isLoading={isLoading}
|
||
|
|
viewActionId={actionId}
|
||
|
|
setViewActionId={setActionId}
|
||
|
|
// totalPages={10}
|
||
|
|
|
||
|
|
setMouseEnteredId={setMouseEnteredId}
|
||
|
|
setMouseEntered={setMouseEntered}
|
||
|
|
/>
|
||
|
|
|
||
|
|
<CustomAlertDialog
|
||
|
|
onClose={() => setDeleteAlert(false)}
|
||
|
|
isOpen={deleteAlert}
|
||
|
|
message={"Are you sure you want to delete sponers?"}
|
||
|
|
alertHandler={handleDelete}
|
||
|
|
isLoading={isLoading}
|
||
|
|
/>
|
||
|
|
</Box>
|
||
|
|
);
|
||
|
|
};
|
||
|
|
|
||
|
|
export default ViewIOTable;
|