Issues_July_2W: Project overview widgets #256

Merged
vikas.nale merged 17 commits from Issues_July_2W into main 2025-07-15 12:28:46 +00:00
3 changed files with 145 additions and 147 deletions
Showing only changes of commit 1718638a4b - Show all commits

View File

@ -2553,7 +2553,7 @@ progress {
} }
.table-responsive { .table-responsive {
/* overflow-x: auto; */ overflow-x: auto;
-webkit-overflow-scrolling: touch; -webkit-overflow-scrolling: touch;
} }

View File

@ -260,7 +260,7 @@ const Directory = ({ IsPage = true, prefernceContacts }) => {
}, [prefernceContacts]); }, [prefernceContacts]);
return ( return (
<div className="container-fluid"> <div className={IsPage ? "container-fluid":""}>
{IsPage && ( {IsPage && (
<Breadcrumb <Breadcrumb
data={[ data={[

View File

@ -265,8 +265,8 @@ const ProjectList = () => {
{listView ? ( {listView ? (
<div className="card cursor-pointer"> <div className="card cursor-pointer">
<div className="card-body p-2" style={{ minHeight: "200px" }}> <div className="card-body p-2">
<div className="table-responsive text-nowrap py-2"> <div className="table-responsive text-nowrap py-2 " style={{minHeight:"400px"}}>
<table className="table m-3"> <table className="table m-3">
<thead> <thead>
<tr> <tr>
@ -293,6 +293,10 @@ const ProjectList = () => {
id: "b74da4c2-d07e-46f2-9919-e75e49b12731", id: "b74da4c2-d07e-46f2-9919-e75e49b12731",
label: "Active", label: "Active",
}, },
{
id: "cdad86aa-8a56-4ff4-b633-9c629057dfef",
label:"In Progress"
},
{ {
id: "603e994b-a27f-4e5d-a251-f3d69b0498ba", id: "603e994b-a27f-4e5d-a251-f3d69b0498ba",
label: "On Hold", label: "On Hold",
@ -314,7 +318,9 @@ const ProjectList = () => {
checked={selectedStatuses.includes(id)} checked={selectedStatuses.includes(id)}
onChange={() => handleStatusChange(id)} onChange={() => handleStatusChange(id)}
/> />
<label className="form-check-label">{label}</label> <label className="form-check-label">
{label}
</label>
</div> </div>
</li> </li>
))} ))}
@ -330,22 +336,11 @@ const ProjectList = () => {
</th> </th>
</tr> </tr>
</thead> </thead>
<tbody className="table-border-bottom-0" style={{ height: "200px" }}> <tbody className="table-border-bottom-0 overflow-auto ">
{currentItems.length === 0 ? ( {currentItems.length === 0 ? (
<tr> <tr className="text-center">
<td <td colSpan="12" rowSpan='12'style={{height:"200px"}} >
colSpan="12" No projects found
className="text-center"
style={{
verticalAlign: "middle",
height: "200px",
paddingTop: 0,
paddingBottom: 0,
}}
>
<div className="d-flex flex-column justify-content-center align-items-center h-100">
<p className="mb-0">No projects found</p>
</div>
</td> </td>
</tr> </tr>
) : ( ) : (
@ -359,8 +354,8 @@ const ProjectList = () => {
)} )}
</tbody> </tbody>
</table> </table>
</div> </div>{" "}
</div> </div>{" "}
</div> </div>
) : ( ) : (
<div className="row"> <div className="row">
@ -398,7 +393,11 @@ const ProjectList = () => {
</button> </button>
</li> </li>
))} ))}
<li className={`page-item ${currentPage === totalPages && "disabled"}`}> <li
className={`page-item ${
currentPage === totalPages && "disabled"
}`}
>
<button <button
className="page-link" className="page-link"
onClick={() => onClick={() =>
@ -411,7 +410,6 @@ const ProjectList = () => {
</ul> </ul>
</nav> </nav>
)} )}
</div> </div>
</> </>
); );