f01632e38d
- Integrated language selection and translation functionality in TenderDetails, allowing users to choose display language and translate tender metadata. - Added AI summary section to display overall summary of the tender. - Updated API service to support translation requests and handle responses effectively. - Improved pagination handling in AdminsTable for better user experience. - Refactored various components to ensure consistent data flow and state management.
192 lines
6.6 KiB
TypeScript
192 lines
6.6 KiB
TypeScript
"use client";
|
|
|
|
import EmptyListWrapper from "@/components/HOC/EmptyListWrapper";
|
|
import Status from "@/components/ui/Status";
|
|
import {
|
|
Table,
|
|
TableBody,
|
|
TableCell,
|
|
TableHead,
|
|
TableHeader,
|
|
TableRow,
|
|
} from "@/components/ui/table";
|
|
import { Tooltip } from "react-tooltip";
|
|
import useTenderListPresenter from "./useTenderListPresenter";
|
|
|
|
import { ExclamationIcon, EyeIcon } from "@/assets/icons";
|
|
|
|
import IsVisible from "@/components/ui/IsVisible";
|
|
import ListHeader from "@/components/ui/ListHeader";
|
|
import ListWrapper from "@/components/ui/ListWrapper";
|
|
import Modal from "@/components/ui/modal";
|
|
import Pagination from "@/components/ui/pagination";
|
|
import TableSkeleton from "@/components/ui/TableSkeleton";
|
|
import { _TooltipDefaultParams } from "@/constants/tooltip";
|
|
import { cn } from "@/lib/utils";
|
|
import { getPaginatedRowNumber, unixToDate } from "@/utils/shared";
|
|
import TenderListFilters from "./TenderListFilters";
|
|
const TendersTable = () => {
|
|
const {
|
|
allTenders,
|
|
isPending,
|
|
router,
|
|
pathName,
|
|
setParams,
|
|
params,
|
|
columns,
|
|
isFilterModalOpen,
|
|
setIsFilterModalOpen,
|
|
filterRegister,
|
|
handleFilterSubmit,
|
|
search,
|
|
watch,
|
|
setFilterValue,
|
|
isMutating,
|
|
shouldShowPagination,
|
|
} = useTenderListPresenter();
|
|
|
|
return (
|
|
<ListWrapper>
|
|
<ListHeader
|
|
onFilter={() => setIsFilterModalOpen(true)}
|
|
createButtonText="Create Tender"
|
|
/>
|
|
<Table>
|
|
<TableHeader>
|
|
<TableRow className="border-none uppercase [&>th]:text-start">
|
|
{columns.map((column) => (
|
|
<TableHead key={column} colSpan={100}>
|
|
{column}
|
|
</TableHead>
|
|
))}
|
|
</TableRow>
|
|
</TableHeader>
|
|
|
|
{isPending && <TableSkeleton column={columns.length} />}
|
|
<TableBody>
|
|
<EmptyListWrapper
|
|
list={allTenders?.data.tenders ?? []}
|
|
columns={columns}
|
|
emptyMessage="No tenders were found"
|
|
isLoading={isPending}
|
|
>
|
|
{(allTenders?.data.tenders ?? []).map((item, index) => (
|
|
<TableRow
|
|
key={item.id}
|
|
className="odd:bg-gray-2 dark:odd:bg-gray-7"
|
|
>
|
|
<TableCell className="text-start" colSpan={100}>
|
|
{getPaginatedRowNumber({
|
|
index,
|
|
page: allTenders?.meta?.page,
|
|
limit: allTenders?.meta?.limit,
|
|
})}
|
|
</TableCell>
|
|
<TableCell className="text-start" colSpan={100}>
|
|
{item.title}
|
|
</TableCell>
|
|
<TableCell className="text-start" colSpan={100}>
|
|
{item.country_code}
|
|
</TableCell>
|
|
<TableCell className="text-start" colSpan={100}>
|
|
{unixToDate({
|
|
unix: item.publication_date,
|
|
hasTime: true,
|
|
})}
|
|
</TableCell>
|
|
<TableCell className="text-start" colSpan={100}>
|
|
{unixToDate({
|
|
unix: item.submission_deadline,
|
|
hasTime: true,
|
|
})}
|
|
</TableCell>
|
|
<TableCell className="text-start" colSpan={100}>
|
|
{unixToDate({ unix: item.tender_deadline, hasTime: true })}
|
|
</TableCell>
|
|
<TableCell className="text-start" colSpan={100}>
|
|
{unixToDate({
|
|
unix: item?.created_at ?? 0,
|
|
hasTime: true,
|
|
})}
|
|
</TableCell>
|
|
|
|
<TableCell className={cn(`text capitalize`)} colSpan={100}>
|
|
<Status status={item.status}>{item.status}</Status>
|
|
</TableCell>
|
|
<TableCell className="capitalize" colSpan={100}>
|
|
<div className="flex items-center gap-2">
|
|
<button
|
|
data-tooltip-id="details"
|
|
data-tooltip-content="Details"
|
|
data-tooltip-place="top"
|
|
onClick={() => {
|
|
const queryString = params?.lang
|
|
? `?lang=${encodeURIComponent(params.lang)}`
|
|
: "";
|
|
router.push(`${pathName}/${item.id}${queryString}`);
|
|
}}
|
|
>
|
|
<Tooltip
|
|
{..._TooltipDefaultParams({
|
|
id: "details",
|
|
})}
|
|
/>
|
|
<EyeIcon />
|
|
</button>
|
|
<button
|
|
data-tooltip-id="feedback"
|
|
data-tooltip-content="Feedback"
|
|
data-tooltip-place="top"
|
|
className="text-gray-40 rounded-full bg-gray-dark bg-opacity-5 hover:text-green-dark dark:bg-gray dark:bg-opacity-5"
|
|
onClick={() => {
|
|
const queryString = params?.lang
|
|
? `?lang=${encodeURIComponent(params.lang)}`
|
|
: "";
|
|
router.push(`${pathName}/feedback/${item.id}${queryString}`);
|
|
}}
|
|
>
|
|
<Tooltip {..._TooltipDefaultParams({ id: "feedback" })} />
|
|
<ExclamationIcon />
|
|
</button>
|
|
</div>
|
|
</TableCell>
|
|
</TableRow>
|
|
))}
|
|
</EmptyListWrapper>
|
|
</TableBody>
|
|
</Table>
|
|
<Modal
|
|
isOpen={isFilterModalOpen}
|
|
onClose={() => setIsFilterModalOpen(false)}
|
|
classNames="w-full xl:w-1/2"
|
|
showButtons={false}
|
|
>
|
|
<TenderListFilters
|
|
setValue={setFilterValue}
|
|
filterRegister={filterRegister}
|
|
handleFilterSubmit={handleFilterSubmit}
|
|
isMutating={isMutating as number}
|
|
search={search}
|
|
setIsFilterModalOpen={setIsFilterModalOpen}
|
|
watch={watch}
|
|
/>
|
|
</Modal>
|
|
<IsVisible condition={shouldShowPagination}>
|
|
<Pagination
|
|
currentPage={allTenders?.meta?.page ? allTenders?.meta?.page - 1 : 0}
|
|
totalPages={allTenders?.meta?.pages ?? 1}
|
|
onPageChange={(e) => {
|
|
setParams((currentParams) => ({
|
|
...currentParams,
|
|
offset: e.selected * (allTenders?.meta?.limit ?? 10),
|
|
limit: allTenders?.meta?.limit ?? 10,
|
|
}));
|
|
}}
|
|
/>
|
|
</IsVisible>
|
|
</ListWrapper>
|
|
);
|
|
};
|
|
|
|
export default TendersTable;
|