2024-07-15 12:27:23 +05:30
|
|
|
import {
|
2024-07-30 13:30:34 +05:30
|
|
|
Box,
|
|
|
|
|
Button,
|
|
|
|
|
FormControl,
|
|
|
|
|
FormLabel,
|
|
|
|
|
HStack,
|
|
|
|
|
Input,
|
|
|
|
|
Modal,
|
|
|
|
|
ModalBody,
|
|
|
|
|
ModalCloseButton,
|
|
|
|
|
ModalContent,
|
|
|
|
|
ModalFooter,
|
|
|
|
|
ModalHeader,
|
|
|
|
|
ModalOverlay,
|
|
|
|
|
Switch,
|
|
|
|
|
Table,
|
|
|
|
|
Tbody,
|
|
|
|
|
Text,
|
|
|
|
|
Textarea,
|
|
|
|
|
Th,
|
|
|
|
|
Tr,
|
|
|
|
|
} from "@chakra-ui/react";
|
|
|
|
|
import DataTable from "../../../../Components/DataTable/DataTable";
|
|
|
|
|
import { useState } from "react";
|
|
|
|
|
import { AddIcon } from "@chakra-ui/icons";
|
|
|
|
|
|
|
|
|
|
const Cancle = ({ isOpen, onClose }) => {
|
|
|
|
|
// ====================================================[Table Setup]================================================================
|
|
|
|
|
const tableHeadRow = [
|
|
|
|
|
"Sr No.",
|
|
|
|
|
"Client Id",
|
|
|
|
|
"First name",
|
|
|
|
|
"Last Name",
|
|
|
|
|
"Invested Amount",
|
|
|
|
|
"Distribution %",
|
|
|
|
|
"Exit Amount",
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
const filteredData = [
|
|
|
|
|
{
|
|
|
|
|
id: 1,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: 1,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: 1,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: 1,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: 1,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: 1,
|
|
|
|
|
},
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
const [extractedArray, setExtractedArray] = useState(
|
|
|
|
|
filteredData?.map((item, index) => ({
|
|
|
|
|
id: item?.id,
|
|
|
|
|
"Sr No.": (
|
|
|
|
|
<Box
|
|
|
|
|
w={9}
|
|
|
|
|
display={"flex"}
|
|
|
|
|
alignItems={"center"}
|
|
|
|
|
isTruncated={true}
|
|
|
|
|
h={25}
|
|
|
|
|
>
|
|
|
|
|
<Text as={"span"} color={"teal.900"} fontWeight={"500"}>
|
|
|
|
|
{index + 1}
|
|
|
|
|
</Text>
|
|
|
|
|
</Box>
|
|
|
|
|
),
|
|
|
|
|
"Client Id": (
|
|
|
|
|
<Box w={100} isTruncated={true}>
|
|
|
|
|
<Text as={"span"} color={"teal.900"} fontWeight={"500"}>
|
|
|
|
|
BH0000000
|
|
|
|
|
</Text>
|
|
|
|
|
</Box>
|
|
|
|
|
),
|
|
|
|
|
"First name": (
|
|
|
|
|
<Box minW={24} isTruncated={true}>
|
|
|
|
|
<Text as={"span"} color={"teal.900"} fontWeight={"500"}>
|
|
|
|
|
Faisal
|
|
|
|
|
</Text>
|
|
|
|
|
</Box>
|
|
|
|
|
),
|
|
|
|
|
"Last Name": (
|
|
|
|
|
<Box minW={24} isTruncated={true}>
|
|
|
|
|
<Text as={"span"} color={"teal.900"} fontWeight={"500"}>
|
|
|
|
|
Aljalahma
|
|
|
|
|
</Text>
|
|
|
|
|
</Box>
|
|
|
|
|
),
|
|
|
|
|
"Invested Amount": (
|
|
|
|
|
<Box minW={24} isTruncated={true}>
|
|
|
|
|
<Text as={"span"} color={"teal.900"} fontWeight={"500"}>
|
|
|
|
|
$100,000
|
|
|
|
|
</Text>
|
|
|
|
|
</Box>
|
|
|
|
|
),
|
|
|
|
|
"Distribution %": (
|
|
|
|
|
<Box minW={19} isTruncated={true}>
|
|
|
|
|
<Text
|
|
|
|
|
textAlign={"right"}
|
|
|
|
|
as={"span"}
|
|
|
|
|
color={"teal.900"}
|
|
|
|
|
fontWeight={"500"}
|
|
|
|
|
>
|
|
|
|
|
26.0 %
|
|
|
|
|
</Text>
|
|
|
|
|
</Box>
|
|
|
|
|
),
|
|
|
|
|
"Exit Amount": (
|
|
|
|
|
<Box minW={24} isTruncated={true}>
|
|
|
|
|
<Text as={"span"} color={"teal.900"} fontWeight={"500"}>
|
|
|
|
|
$100,000
|
|
|
|
|
</Text>
|
|
|
|
|
</Box>
|
|
|
|
|
),
|
|
|
|
|
}))
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
const Total = () => {
|
2024-07-15 12:27:23 +05:30
|
|
|
return (
|
2024-07-30 13:30:34 +05:30
|
|
|
<Table size="sm">
|
|
|
|
|
<Tbody backgroundColor="gray.50">
|
|
|
|
|
<Tr>
|
|
|
|
|
<Th
|
|
|
|
|
textAlign={"left"}
|
|
|
|
|
p={3}
|
|
|
|
|
width="90px"
|
|
|
|
|
color={"#004118"}
|
|
|
|
|
whiteSpace="normal"
|
|
|
|
|
wordBreak="normal"
|
|
|
|
|
overflowWrap="normal"
|
|
|
|
|
>
|
|
|
|
|
Total
|
|
|
|
|
</Th>
|
|
|
|
|
<Th
|
|
|
|
|
textAlign={"center"}
|
|
|
|
|
p={3}
|
|
|
|
|
width="100px"
|
|
|
|
|
color={"#004118"}
|
|
|
|
|
whiteSpace="normal"
|
|
|
|
|
wordBreak="normal"
|
|
|
|
|
overflowWrap="normal"
|
|
|
|
|
>
|
|
|
|
|
{" "}
|
|
|
|
|
</Th>
|
|
|
|
|
<Th
|
|
|
|
|
textAlign={"center"}
|
|
|
|
|
p={3}
|
|
|
|
|
width="90px"
|
|
|
|
|
color={"#004118"}
|
|
|
|
|
whiteSpace="normal"
|
|
|
|
|
wordBreak="normal"
|
|
|
|
|
overflowWrap="normal"
|
|
|
|
|
>
|
|
|
|
|
{" "}
|
|
|
|
|
</Th>
|
|
|
|
|
<Th
|
|
|
|
|
textAlign={"center"}
|
|
|
|
|
p={3}
|
|
|
|
|
width="90px"
|
|
|
|
|
color={"#004118"}
|
|
|
|
|
whiteSpace="normal"
|
|
|
|
|
wordBreak="normal"
|
|
|
|
|
overflowWrap="normal"
|
|
|
|
|
>
|
|
|
|
|
{" "}
|
|
|
|
|
</Th>
|
|
|
|
|
<Th
|
|
|
|
|
textAlign={"left"}
|
|
|
|
|
p={3}
|
|
|
|
|
width="100px"
|
|
|
|
|
color={"#004118"}
|
|
|
|
|
whiteSpace="normal"
|
|
|
|
|
wordBreak="normal"
|
|
|
|
|
overflowWrap="normal"
|
|
|
|
|
>
|
|
|
|
|
$1,000,000
|
|
|
|
|
</Th>
|
|
|
|
|
<Th
|
|
|
|
|
textAlign={"left"}
|
|
|
|
|
p={3}
|
|
|
|
|
width="90px"
|
|
|
|
|
color={"#004118"}
|
|
|
|
|
whiteSpace="normal"
|
|
|
|
|
wordBreak="normal"
|
|
|
|
|
overflowWrap="normal"
|
|
|
|
|
>
|
|
|
|
|
100.0%
|
|
|
|
|
</Th>
|
|
|
|
|
<Th
|
|
|
|
|
textAlign={"center"}
|
|
|
|
|
p={3}
|
|
|
|
|
width="100px"
|
|
|
|
|
color={"#004118"}
|
|
|
|
|
whiteSpace="normal"
|
|
|
|
|
wordBreak="normal"
|
|
|
|
|
overflowWrap="normal"
|
|
|
|
|
>
|
|
|
|
|
$1,229,750
|
|
|
|
|
</Th>
|
|
|
|
|
</Tr>
|
|
|
|
|
</Tbody>
|
|
|
|
|
</Table>
|
|
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<Modal size={"xl"} isOpen={isOpen} onClose={onClose}>
|
|
|
|
|
<ModalOverlay />
|
|
|
|
|
<ModalContent maxW={1000}>
|
|
|
|
|
<ModalHeader fontSize={"md"}>Cancel Transaction</ModalHeader>
|
|
|
|
|
<ModalCloseButton />
|
|
|
|
|
<ModalBody>
|
|
|
|
|
<Text as="label" mb='5px' fontSize='sm' fontWeight={500}>Enter Cancellation Amount</Text>
|
|
|
|
|
<HStack mb={4}>
|
|
|
|
|
<Input focusBorderColor="forestGreen.400" placeholder="$00.00" size={"sm"} className="col" />
|
2024-07-15 12:27:23 +05:30
|
|
|
<Button
|
2024-07-30 13:30:34 +05:30
|
|
|
size={"sm"}
|
2024-07-15 12:27:23 +05:30
|
|
|
rounded={"sm"}
|
2024-07-30 13:30:34 +05:30
|
|
|
colorScheme="forestGreen"
|
2024-07-15 12:27:23 +05:30
|
|
|
>
|
2024-07-30 13:30:34 +05:30
|
|
|
Calculate
|
2024-07-15 12:27:23 +05:30
|
|
|
</Button>
|
2024-07-30 13:30:34 +05:30
|
|
|
</HStack>
|
|
|
|
|
|
|
|
|
|
<DataTable
|
|
|
|
|
emptyMessage={`We don't have any Sponers `}
|
|
|
|
|
tableHeadRow={tableHeadRow}
|
|
|
|
|
data={extractedArray}
|
|
|
|
|
setData={setExtractedArray}
|
|
|
|
|
caption={<Total />}
|
|
|
|
|
// isLoading={isLoading}
|
|
|
|
|
/>
|
|
|
|
|
</ModalBody>
|
|
|
|
|
<ModalFooter pt={0}>
|
|
|
|
|
<Button
|
|
|
|
|
bg={"hsla(139, 100%, 14%, 1)"}
|
|
|
|
|
mr={3}
|
|
|
|
|
color={"#fff"}
|
|
|
|
|
_hover={{
|
|
|
|
|
bg: "hsl(139deg 98.99% 26.59%)",
|
|
|
|
|
}}
|
|
|
|
|
size={'sm'}
|
|
|
|
|
rounded={"sm"}
|
|
|
|
|
>
|
|
|
|
|
Save
|
|
|
|
|
</Button>
|
|
|
|
|
<Button
|
|
|
|
|
size={'sm'}
|
|
|
|
|
rounded={"sm"} mr={3} onClick={onClose}>
|
|
|
|
|
Close
|
|
|
|
|
</Button>
|
|
|
|
|
</ModalFooter>
|
|
|
|
|
</ModalContent>
|
|
|
|
|
</Modal>
|
|
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default Cancle;
|