project list display status wise

This commit is contained in:
Pramod Mahajan 2025-04-15 17:23:33 +05:30
parent 30a9908499
commit ab1754aa49

View File

@ -85,7 +85,20 @@ const ProjectList = () =>
? Math.ceil(projectList.length / itemsPerPage) ? Math.ceil(projectList.length / itemsPerPage)
: 0; : 0;
const statusMap = {
1: { label: 'active', priority: 1 },
2: { label: 'hold', priority: 2 },
3: { label: 'inactive', priority: 3 },
4: { label: 'complete', priority: 4 }
};
const sortedProjects = [...currentItems].sort((a, b) => {
const aPriority = statusMap[+a.projectStatusId]?.priority ?? 99;
const bPriority = statusMap[+b.projectStatusId]?.priority ?? 99;
return aPriority - bPriority;
});
return ( return (
<> <>
<div <div
@ -119,7 +132,7 @@ const ProjectList = () =>
{" "} {" "}
<button <button
type="button" type="button"
className={`btn btn-sm btn-primary ${!HasManageProject && 'd-none' }`} className={`btn btn-xs btn-primary ${!HasManageProject && 'd-none' }`}
data-bs-toggle="modal" data-bs-toggle="modal"
data-bs-target="#create-project-model" data-bs-target="#create-project-model"
onClick={handleShow} onClick={handleShow}
@ -151,8 +164,10 @@ const ProjectList = () =>
<div className="row"> <div className="row">
{loading && <p className="text-center">Loading...</p>} {loading && <p className="text-center">Loading...</p>}
{currentItems && {currentItems &&
currentItems.sort((a, b) => b.id - a.id).map((item) => ( sortedProjects.map((item) => (
<ProjectCard projectData={item} key={item.id}></ProjectCard> <ProjectCard projectData={item} key={item.id}></ProjectCard>
))} ))}
</div> </div>