import { useRef, useState } from "react"; import AddCompany from "./AddCompanies"; import CompanyTable from "./CompaniesTable"; import { StepForwardOutlined, StepBackwardOutlined, LeftOutlined, RightOutlined, } from "@ant-design/icons"; import { useCompanyPaginated } from "../../Hooks/Companies"; import { Button, Input, Pagination, Space, Typography } from "antd"; import { theme } from "antd"; // @ts-ignore import IconSearch from "../../assets/searchIcon.png"; //@ts-ignore import addicon from "../../assets/addiconpng.png"; import { role } from "../../App"; const Company = () => { const [open, setOpen] = useState(false); const showModal = () => { setOpen(true); }; const [search, setSearch] = useState(); const [page, setPage] = useState(1); const { data, isLoading, refetch } = useCompanyPaginated({ name: search, is_active: undefined, page: page, page_size: 10, }); const timerRef = useRef(null); const handleSearchChange = (e: React.ChangeEvent) => { if (timerRef.current) { clearTimeout(timerRef.current); } const searchText = e.target.value; timerRef.current = setTimeout(() => { setSearch(searchText); }, 1000); }; const Next = () => { const a = Number(page) + 1; setPage(a); }; const Previos = () => { Number(page); if (page > 1) { const a = Number(page) - 1; setPage(a); } }; const { token } = theme.useToken(); const page_size = 15; const handlePageChange = (page: number) => { setPage(page); }; const themes = localStorage.getItem("theme") === "true" ? true : false; return (
{open && }
Companies {role !== "Checker" && ( )}
{ let num = e.target.value; if (Number(num) && num !== "0") { setPage(Number(num)); } }} /> {/* */}
); }; export default Company;