- Change Loader style on Project Details page. Earlier, it was showing multiple glowing circles of various colors. Now only two will be displayed
- Changed Navigation Style for project modules. Earlier, we were using pills; now, tabs are used for better visualization - Changed Navigation Style for Employee Details Page
This commit is contained in:
parent
aeedfe23da
commit
c93919602e
@ -2,9 +2,8 @@ import React from "react";
|
|||||||
|
|
||||||
const EmployeeNav = ({ onPillClick, activePill }) => {
|
const EmployeeNav = ({ onPillClick, activePill }) => {
|
||||||
return (
|
return (
|
||||||
<div className="col-md-12">
|
<div className="nav-align-top ">
|
||||||
<div className="nav-align-top">
|
<ul className="nav nav-tabs">
|
||||||
<ul className="nav nav-pills flex-column flex-sm-row mb-6">
|
|
||||||
<li className="nav-item">
|
<li className="nav-item">
|
||||||
<a
|
<a
|
||||||
className={`nav-link ${activePill === "account" ? "active" : ""}`}
|
className={`nav-link ${activePill === "account" ? "active" : ""}`}
|
||||||
@ -19,7 +18,9 @@ const EmployeeNav = ({ onPillClick, activePill }) => {
|
|||||||
</li>
|
</li>
|
||||||
<li className="nav-item">
|
<li className="nav-item">
|
||||||
<a
|
<a
|
||||||
className={`nav-link ${activePill === "attendance" ? "active" : ""}`}
|
className={`nav-link ${
|
||||||
|
activePill === "attendance" ? "active" : ""
|
||||||
|
}`}
|
||||||
href="#"
|
href="#"
|
||||||
onClick={(e) => {
|
onClick={(e) => {
|
||||||
e.preventDefault(); // Prevent page reload
|
e.preventDefault(); // Prevent page reload
|
||||||
@ -31,7 +32,9 @@ const EmployeeNav = ({ onPillClick, activePill }) => {
|
|||||||
</li>
|
</li>
|
||||||
<li className="nav-item">
|
<li className="nav-item">
|
||||||
<a
|
<a
|
||||||
className={`nav-link ${activePill === "activities" ? "active" : ""}`}
|
className={`nav-link ${
|
||||||
|
activePill === "activities" ? "active" : ""
|
||||||
|
}`}
|
||||||
href="#"
|
href="#"
|
||||||
onClick={(e) => {
|
onClick={(e) => {
|
||||||
e.preventDefault(); // Prevent page reload
|
e.preventDefault(); // Prevent page reload
|
||||||
@ -43,7 +46,6 @@ const EmployeeNav = ({ onPillClick, activePill }) => {
|
|||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -87,7 +87,7 @@ const WorkItem = ({ workItem, forBuilding, forFloor, forWorkArea }) => {
|
|||||||
NewWorkItem?.workItem?.completedWork ||
|
NewWorkItem?.workItem?.completedWork ||
|
||||||
workItem?.completedWork
|
workItem?.completedWork
|
||||||
),
|
),
|
||||||
height: "10px",
|
height: "5px",
|
||||||
}}
|
}}
|
||||||
aria-valuenow={
|
aria-valuenow={
|
||||||
hasWorkItem
|
hasWorkItem
|
||||||
|
@ -1,16 +1,14 @@
|
|||||||
import React from "react";
|
import React from "react";
|
||||||
import {hasUserPermission} from "../../utils/authUtils";
|
import { hasUserPermission } from "../../utils/authUtils";
|
||||||
import {useHasUserPermission} from "../../hooks/useHasUserPermission";
|
import { useHasUserPermission } from "../../hooks/useHasUserPermission";
|
||||||
import { VIEW_PROJECT_INFRA} from "../../utils/constants";
|
import { VIEW_PROJECT_INFRA } from "../../utils/constants";
|
||||||
|
|
||||||
const ProjectNav = ( {onPillClick, activePill} ) =>
|
const ProjectNav = ({ onPillClick, activePill }) => {
|
||||||
{
|
const HasViewInfraStructure = useHasUserPermission(VIEW_PROJECT_INFRA);
|
||||||
const HasViewInfraStructure = useHasUserPermission( VIEW_PROJECT_INFRA )
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="col-md-12">
|
|
||||||
<div className="nav-align-top">
|
<div className="nav-align-top">
|
||||||
<ul className="nav nav-pills flex-column flex-sm-row mb-6">
|
<ul className="nav nav-tabs ">
|
||||||
<li className="nav-item">
|
<li className="nav-item">
|
||||||
<a
|
<a
|
||||||
className={`nav-link ${activePill === "profile" ? "active" : ""}`}
|
className={`nav-link ${activePill === "profile" ? "active" : ""}`}
|
||||||
@ -35,7 +33,7 @@ const ProjectNav = ( {onPillClick, activePill} ) =>
|
|||||||
<i className="bx bx-group bx-sm me-1_5"></i> Teams
|
<i className="bx bx-group bx-sm me-1_5"></i> Teams
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<li className={`nav-item ${!HasViewInfraStructure && 'd-none'} `}>
|
<li className={`nav-item ${!HasViewInfraStructure && "d-none"} `}>
|
||||||
<a
|
<a
|
||||||
className={`nav-link ${activePill === "infra" ? "active" : ""}`}
|
className={`nav-link ${activePill === "infra" ? "active" : ""}`}
|
||||||
href="#"
|
href="#"
|
||||||
@ -77,9 +75,7 @@ const ProjectNav = ( {onPillClick, activePill} ) =>
|
|||||||
</li>
|
</li>
|
||||||
<li className="nav-item">
|
<li className="nav-item">
|
||||||
<a
|
<a
|
||||||
className={`nav-link ${
|
className={`nav-link ${activePill === "directory" ? "active" : ""}`}
|
||||||
activePill === "directory" ? "active" : ""
|
|
||||||
}`}
|
|
||||||
href="#"
|
href="#"
|
||||||
onClick={(e) => {
|
onClick={(e) => {
|
||||||
e.preventDefault(); // Prevent page reload
|
e.preventDefault(); // Prevent page reload
|
||||||
@ -91,7 +87,6 @@ const ProjectNav = ( {onPillClick, activePill} ) =>
|
|||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -3,12 +3,13 @@ import React from "react";
|
|||||||
const Loader = () => {
|
const Loader = () => {
|
||||||
return (
|
return (
|
||||||
<div className="demo-inline-spacing">
|
<div className="demo-inline-spacing">
|
||||||
<div className="spinner-grow" role="status">
|
|
||||||
<span className="visually-hidden">Loading...</span>
|
|
||||||
</div>
|
|
||||||
<div className="spinner-grow text-primary" role="status">
|
<div className="spinner-grow text-primary" role="status">
|
||||||
<span className="visually-hidden">Loading...</span>
|
<span className="visually-hidden">Loading...</span>
|
||||||
</div>
|
</div>
|
||||||
|
{/* <div className="spinner-grow" role="status">
|
||||||
|
<span className="visually-hidden">Loading...</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div className="spinner-grow text-secondary" role="status">
|
<div className="spinner-grow text-secondary" role="status">
|
||||||
<span className="visually-hidden">Loading...</span>
|
<span className="visually-hidden">Loading...</span>
|
||||||
</div>
|
</div>
|
||||||
@ -23,13 +24,13 @@ const Loader = () => {
|
|||||||
</div>
|
</div>
|
||||||
<div className="spinner-grow text-info" role="status">
|
<div className="spinner-grow text-info" role="status">
|
||||||
<span className="visually-hidden">Loading...</span>
|
<span className="visually-hidden">Loading...</span>
|
||||||
</div>
|
</div> */}
|
||||||
<div className="spinner-grow text-light" role="status">
|
<div className="spinner-grow text-light" role="status">
|
||||||
<span className="visually-hidden">Loading...</span>
|
<span className="visually-hidden">Loading...</span>
|
||||||
</div>
|
</div>
|
||||||
<div className="spinner-grow text-dark" role="status">
|
{/* <div className="spinner-grow text-dark" role="status">
|
||||||
<span className="visually-hidden">Loading...</span>
|
<span className="visually-hidden">Loading...</span>
|
||||||
</div>
|
</div> */}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
@ -15,52 +15,51 @@ import { cacheData, getCachedData } from "../../slices/apiDataManager";
|
|||||||
import ProjectRepository from "../../repositories/ProjectRepository";
|
import ProjectRepository from "../../repositories/ProjectRepository";
|
||||||
import { ActivityeRepository } from "../../repositories/MastersRepository";
|
import { ActivityeRepository } from "../../repositories/MastersRepository";
|
||||||
import "./ProjectDetails.css";
|
import "./ProjectDetails.css";
|
||||||
import {useEmployeesByProjectAllocated, useProjectDetails} from "../../hooks/useProjects";
|
import {
|
||||||
import {useDispatch} from "react-redux";
|
useEmployeesByProjectAllocated,
|
||||||
import {setProjectId} from "../../slices/localVariablesSlice";
|
useProjectDetails,
|
||||||
|
} from "../../hooks/useProjects";
|
||||||
|
import { useDispatch } from "react-redux";
|
||||||
|
import { setProjectId } from "../../slices/localVariablesSlice";
|
||||||
import { ComingSoonPage } from "../Misc/ComingSoonPage";
|
import { ComingSoonPage } from "../Misc/ComingSoonPage";
|
||||||
|
|
||||||
|
|
||||||
const ProjectDetails = () => {
|
const ProjectDetails = () => {
|
||||||
let {projectId} = useParams();
|
let { projectId } = useParams();
|
||||||
const {projects_Details,loading:projectLoading,error:ProjectError} = useProjectDetails(projectId)
|
const {
|
||||||
const dispatch = useDispatch()
|
projects_Details,
|
||||||
|
loading: projectLoading,
|
||||||
|
error: ProjectError,
|
||||||
|
} = useProjectDetails(projectId);
|
||||||
|
const dispatch = useDispatch();
|
||||||
const [project, setProject] = useState(null);
|
const [project, setProject] = useState(null);
|
||||||
const [ projectDetails, setProjectDetails ] = useState( null );
|
const [projectDetails, setProjectDetails] = useState(null);
|
||||||
const [loading, setLoading] = useState(true);
|
const [loading, setLoading] = useState(true);
|
||||||
const [ error, setError ] = useState( "" );
|
const [error, setError] = useState("");
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
const fetchData = async () => {
|
const fetchData = async () => {
|
||||||
|
|
||||||
const project_cache = getCachedData("projectInfo");
|
const project_cache = getCachedData("projectInfo");
|
||||||
if (!project_cache || project_cache?.projectId !== projectId) {
|
if (!project_cache || project_cache?.projectId !== projectId) {
|
||||||
ProjectRepository.getProjectByprojectId(projectId)
|
ProjectRepository.getProjectByprojectId(projectId)
|
||||||
.then( ( response ) =>
|
.then((response) => {
|
||||||
{
|
setProjectDetails(response.data);
|
||||||
setProjectDetails( response.data );
|
setProject(response.data);
|
||||||
setProject( response.data );
|
cacheData("projectInfo", { projectId, data: response.data });
|
||||||
cacheData("projectInfo", {projectId,data: response.data} );
|
setLoading(false);
|
||||||
setLoading(false)
|
|
||||||
})
|
})
|
||||||
.catch((error) => {
|
.catch((error) => {
|
||||||
console.error(error);
|
console.error(error);
|
||||||
setError( "Failed to fetch data." );
|
setError("Failed to fetch data.");
|
||||||
setLoading(false)
|
setLoading(false);
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
setProjectDetails( project_cache.data );
|
setProjectDetails(project_cache.data);
|
||||||
setProject( project_cache.data );
|
setProject(project_cache.data);
|
||||||
setLoading(false)
|
setLoading(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
const [activePill, setActivePill] = useState("profile");
|
const [activePill, setActivePill] = useState("profile");
|
||||||
|
|
||||||
|
|
||||||
const handlePillClick = (pillKey) => {
|
const handlePillClick = (pillKey) => {
|
||||||
setActivePill(pillKey);
|
setActivePill(pillKey);
|
||||||
};
|
};
|
||||||
@ -69,19 +68,18 @@ const ProjectDetails = () => {
|
|||||||
fetchData();
|
fetchData();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
const renderContent = () => {
|
const renderContent = () => {
|
||||||
if (projectLoading) return <Loader></Loader>;
|
if (projectLoading) return <Loader></Loader>;
|
||||||
switch (activePill) {
|
switch (activePill) {
|
||||||
case "profile": {
|
case "profile": {
|
||||||
return (
|
return (
|
||||||
<div className="row">
|
<div className="row">
|
||||||
<div className="col-xl-4 col-lg-5 col-md-5">
|
<div className="col-xl-4 col-lg-5 col-md-5 mt-5">
|
||||||
{/* About User */}
|
{/* About User */}
|
||||||
<AboutProject data={projectDetails}></AboutProject>
|
<AboutProject data={projectDetails}></AboutProject>
|
||||||
{/* About User */}
|
{/* About User */}
|
||||||
</div>
|
</div>
|
||||||
<div className="col-xl-4 col-lg-5 col-md-5">
|
<div className="col-xl-4 col-lg-5 col-md-5 mt-5">
|
||||||
{/* Profile Overview */}
|
{/* Profile Overview */}
|
||||||
<ProjectOverview project={projectId} />
|
<ProjectOverview project={projectId} />
|
||||||
{/* Profile Overview */}
|
{/* Profile Overview */}
|
||||||
@ -135,10 +133,10 @@ const ProjectDetails = () => {
|
|||||||
};
|
};
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
dispatch(setProjectId(projectId))
|
dispatch(setProjectId(projectId));
|
||||||
setProject( projects_Details )
|
setProject(projects_Details);
|
||||||
setProjectDetails(projects_Details)
|
setProjectDetails(projects_Details);
|
||||||
}, [projects_Details,projectId]);
|
}, [projects_Details, projectId]);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
@ -154,16 +152,18 @@ const ProjectDetails = () => {
|
|||||||
|
|
||||||
<div className="row">
|
<div className="row">
|
||||||
{projectLoading && <p>Loading....</p>}
|
{projectLoading && <p>Loading....</p>}
|
||||||
{(!projectLoading && project) && <ProjectBanner project_data={project} ></ProjectBanner>}
|
{!projectLoading && project && (
|
||||||
</div>
|
<ProjectBanner project_data={project}></ProjectBanner>
|
||||||
|
)}
|
||||||
|
|
||||||
<div className="row">
|
|
||||||
<ProjectNav
|
<ProjectNav
|
||||||
onPillClick={handlePillClick}
|
onPillClick={handlePillClick}
|
||||||
activePill={activePill}
|
activePill={activePill}
|
||||||
></ProjectNav>
|
></ProjectNav>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div className="row"></div>
|
||||||
|
|
||||||
{renderContent()}
|
{renderContent()}
|
||||||
</div>
|
</div>
|
||||||
</>
|
</>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user