-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(admin): refactor CaducitesPage to use GraphQL candidacy_getCandi…
…dacyCaducites - Replaced feature flag logic with GraphQL query to retrieve candidacies based on caducity status (CADUQUE, CONTESTATION). - Implemented pagination and search filtering for candidacies. - Enhanced the UI to display candidacy details and feasibility information. - Updated routing logic to handle category and page parameters in the URL.
- Loading branch information
Showing
1 changed file
with
145 additions
and
15 deletions.
There are no files selected for viewing
160 changes: 145 additions & 15 deletions
160
packages/reva-admin-react/src/app/(certificateur)/candidacies/caducites/page.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,150 @@ | ||
"use client"; | ||
import { useFeatureflipping } from "@/components/feature-flipping/featureFlipping"; | ||
import { useRouter } from "next/navigation"; | ||
import { useEffect } from "react"; | ||
|
||
export default function CaducitesPage() { | ||
const { isFeatureActive } = useFeatureflipping(); | ||
const router = useRouter(); | ||
const isCandidacyActualisationActive = isFeatureActive( | ||
"candidacy_actualisation", | ||
); | ||
import { useGraphQlClient } from "@/components/graphql/graphql-client/GraphqlClient"; | ||
import { graphql } from "@/graphql/generated"; | ||
import { CandidacyCaduciteStatus } from "@/graphql/generated/graphql"; | ||
import { useQuery } from "@tanstack/react-query"; | ||
import { format } from "date-fns"; | ||
import { usePathname, useRouter, useSearchParams } from "next/navigation"; | ||
import { useEffect, useMemo } from "react"; | ||
import { CandidacySearchList } from "../(components)/CandidacySearchList"; | ||
|
||
const RECORDS_PER_PAGE = 10; | ||
|
||
const getCandidacyCaducitesQuery = graphql(` | ||
query getCandidacyCaducites( | ||
$offset: Int | ||
$limit: Int | ||
$searchFilter: String | ||
$status: CandidacyCaduciteStatus! | ||
) { | ||
candidacy_getCandidacyCaducites( | ||
limit: $limit | ||
offset: $offset | ||
searchFilter: $searchFilter | ||
status: $status | ||
) { | ||
rows { | ||
id | ||
feasibility { | ||
feasibilityFileSentAt | ||
} | ||
candidate { | ||
firstname | ||
lastname | ||
} | ||
department { | ||
code | ||
label | ||
} | ||
certification { | ||
label | ||
} | ||
lastActivityDate | ||
} | ||
info { | ||
totalRows | ||
totalPages | ||
currentPage | ||
} | ||
} | ||
} | ||
`); | ||
|
||
const CaducitesPage = () => { | ||
const { graphqlClient } = useGraphQlClient(); | ||
|
||
const currentPathname = usePathname(); | ||
const searchParams = useSearchParams(); | ||
const page = searchParams.get("page"); | ||
const currentPage = page ? Number.parseInt(page) : 1; | ||
const searchFilter = searchParams.get("search") || ""; | ||
|
||
const status = searchParams.get("CATEGORY"); | ||
|
||
const { replace } = useRouter(); | ||
|
||
useEffect(() => { | ||
if (!isCandidacyActualisationActive) { | ||
router.push("/candidacies/feasibilities/?page=1&CATEGORY=ALL"); | ||
if (!status) { | ||
return; | ||
} | ||
}, [isCandidacyActualisationActive, router]); | ||
const params = new URLSearchParams(); | ||
const validStatus = ["CADUQUE", "CONTESTATION"].includes(status) | ||
? status | ||
: "CADUQUE"; | ||
params.set("CATEGORY", validStatus); | ||
params.set("page", page || "1"); | ||
|
||
if (!page || status !== validStatus) { | ||
replace(`${currentPathname}?${params.toString()}`); | ||
} | ||
}, [replace, page, status, currentPathname]); | ||
|
||
const { data: getCandidacyCaducitesResponse } = useQuery({ | ||
queryKey: ["getCandidacyCaducites", searchFilter, currentPage, status], | ||
queryFn: () => | ||
graphqlClient.request(getCandidacyCaducitesQuery, { | ||
offset: (currentPage - 1) * RECORDS_PER_PAGE, | ||
limit: RECORDS_PER_PAGE, | ||
searchFilter, | ||
status: status as CandidacyCaduciteStatus, | ||
}), | ||
enabled: !!status, | ||
}); | ||
|
||
const caducitesPage = | ||
getCandidacyCaducitesResponse?.candidacy_getCandidacyCaducites; | ||
|
||
const statusLabel = useMemo(() => { | ||
switch (status) { | ||
case "CADUQUE": | ||
return "Candidatures caduques"; | ||
case "CONTESTATION": | ||
return "Candidatures en contestation"; | ||
default: | ||
return "Toutes les candidatures"; | ||
} | ||
}, [status]); | ||
|
||
return ( | ||
caducitesPage && ( | ||
<div className="flex flex-col"> | ||
<h1>Espace certificateur</h1> | ||
|
||
<CandidacySearchList | ||
title={statusLabel} | ||
searchFilter={searchFilter} | ||
searchResultsPage={{ | ||
...caducitesPage, | ||
rows: caducitesPage.rows.map((row) => ({ | ||
id: row.id, | ||
candidacy: { | ||
id: row.id, | ||
certification: row.certification, | ||
candidate: row.candidate, | ||
department: row.department, | ||
feasibility: row.feasibility, | ||
}, | ||
})), | ||
}} | ||
searchResultLink={(candidacyId) => | ||
`/candidacies/${candidacyId}/feasibility` | ||
} | ||
> | ||
{(r) => | ||
r.candidacy.feasibility?.feasibilityFileSentAt && ( | ||
<p className="text-lg col-span-2 mb-0"> | ||
Dossier envoyé le{" "} | ||
{format( | ||
r.candidacy.feasibility.feasibilityFileSentAt, | ||
"dd/MM/yyyy", | ||
)} | ||
</p> | ||
) | ||
} | ||
</CandidacySearchList> | ||
</div> | ||
) | ||
); | ||
}; | ||
|
||
return <div>CaducitesPage</div>; | ||
} | ||
export default CaducitesPage; |