Commit d8e93918 authored by Emika Chamodi's avatar Emika Chamodi

fix ui

parent bcb25c44
import { import {
AddressType, AddressType,
ApplicationType,
CandidateType, CandidateType,
OrganizationType, OrganizationType,
Reducers, Reducers,
...@@ -53,7 +52,7 @@ export const getUserId = (state: Reducers): string => { ...@@ -53,7 +52,7 @@ export const getUserId = (state: Reducers): string => {
return profile._id as string; return profile._id as string;
}; };
export const getStatusColor = (status?: ApplicationType["status"]) => { export const getStatusColor = (status?: string) => {
const color = const color =
status === "Accepted" status === "Accepted"
? "text-bg-success" ? "text-bg-success"
......
...@@ -216,7 +216,7 @@ export type ApplicationPayloadType = { ...@@ -216,7 +216,7 @@ export type ApplicationPayloadType = {
_id: string; _id: string;
candidate: CandidateType; candidate: CandidateType;
job: string; job: string;
status: "Pending" | "Accepted" | "In progress" | "Rejected"; status: string;
interview?: { interview?: {
date: string; date: string;
time: string; time: string;
......
...@@ -20,7 +20,7 @@ import { ...@@ -20,7 +20,7 @@ import {
import Progress from "../Progress"; import Progress from "../Progress";
import { fileStorage } from "../../common/config"; import { fileStorage } from "../../common/config";
import { useDispatch } from "react-redux"; import { useDispatch } from "react-redux";
import { updateApplication } from "../../common/actions/common"; import { getJobs, updateApplication } from "../../common/actions/common";
import { getVerificationColor } from "../../common/lib/util"; import { getVerificationColor } from "../../common/lib/util";
type OwnProps = { type OwnProps = {
...@@ -46,6 +46,10 @@ const Interview = ({ application }: OwnProps) => { ...@@ -46,6 +46,10 @@ const Interview = ({ application }: OwnProps) => {
const _video = useRef<ReactPlayer>(null); const _video = useRef<ReactPlayer>(null);
const _hiddenFileInput = useRef<HTMLInputElement>(null); const _hiddenFileInput = useRef<HTMLInputElement>(null);
useEffect(() => {
dispatch(getJobs());
}, []);
const onPressStartFacialExpression = () => { const onPressStartFacialExpression = () => {
setIsFacialAnalyzing(true); setIsFacialAnalyzing(true);
const url = `ws://127.0.0.1:8000/facial/ws/emotions?application_id=${application._id}`; const url = `ws://127.0.0.1:8000/facial/ws/emotions?application_id=${application._id}`;
...@@ -214,7 +218,9 @@ const Interview = ({ application }: OwnProps) => { ...@@ -214,7 +218,9 @@ const Interview = ({ application }: OwnProps) => {
</strong> </strong>
); );
} }
return null; return (
<strong className="text-primary">Voice verification: Pending</strong>
);
}; };
return ( return (
......
...@@ -52,12 +52,14 @@ const Jobs = ({ jobs, onSelectJob, selectedIndex }: OwnProps) => { ...@@ -52,12 +52,14 @@ const Jobs = ({ jobs, onSelectJob, selectedIndex }: OwnProps) => {
Salary : {job.salary.min} - {job.salary.max} {job.salary.currency}{" "} Salary : {job.salary.min} - {job.salary.max} {job.salary.currency}{" "}
</p> </p>
<p className="desc">{job.description.slice(0, 200)}...</p> <p className="desc">{job.description.slice(0, 200)}...</p>
<p className="desc mt-2"> {userType === USER_TYPE.ORGANIZATION && (
<label>Applicattions : </label>{" "} <p className="desc mt-2">
<a href={`/applications?jobId=${job._id}`}> <label>Applicattions : </label>{" "}
({job.applications?.length}) Candidates <a href={`/applications?jobId=${job._id}`}>
</a> ({job.applications?.length}) Candidates
</p> </a>
</p>
)}
</div> </div>
); );
}; };
......
...@@ -14,24 +14,24 @@ const Application = () => { ...@@ -14,24 +14,24 @@ const Application = () => {
const dispatch = useDispatch(); const dispatch = useDispatch();
const [searchParams] = useSearchParams(); const [searchParams] = useSearchParams();
const [selectedTab, setSelectedTab] = useState("Candidate"); const [selectedTab, setSelectedTab] = useState("Candidate");
const [status, setStatus] = useState("Pending");
const job = useOutletContext<JobPayloadType>(); const job = useOutletContext<JobPayloadType>();
const applicationId = searchParams.get("applicationId"); const applicationId = searchParams.get("applicationId");
const application = (job.applications as ApplicationPayloadType[])?.find( const application = (job.applications as ApplicationPayloadType[])?.find(
(_application) => _application._id === applicationId (_application) => _application._id === applicationId
); );
const [status, setStatus] = useState(application?.status);
const statusValues = useMemo(() => { const statusValues = useMemo(() => {
if (status === "Pending") { if (status === "Pending") {
return ["Schedule", "Reject"]; return ["Schedule", "Reject"];
} else if (status === "Schedule") { } else if (status === "In progress") {
return ["Accept", "Reject"]; return ["Accept", "Reject"];
} else if (status === "Rejected") { } else if (status === "Rejected") {
return ["Pending", "Schedule"]; return ["Pending", "Schedule"];
} else { } else {
return []; return [];
} }
}, [status]); }, []);
useEffect(() => { useEffect(() => {
if (application) { if (application) {
...@@ -54,17 +54,22 @@ const Application = () => { ...@@ -54,17 +54,22 @@ const Application = () => {
} else if (status === "Reject") { } else if (status === "Reject") {
applicationStatus = "Rejected"; applicationStatus = "Rejected";
} }
dispatch(
updateApplication({ console.log("STATUS ", status, applicationStatus);
applicationId: application._id,
update: { status: applicationStatus }, // dispatch(
candidateId: application.candidate._id || "", // updateApplication({
}) // applicationId: application._id,
); // update: { status: applicationStatus },
// candidateId: application.candidate._id || "",
// })
// );
}; };
const onChangeStatus = (e: ChangeEvent<HTMLSelectElement>) => { const onChangeStatus = (e: ChangeEvent<HTMLSelectElement>) => {
setStatus(e.target.value); if (e.target.value !== "select") {
setStatus(e.target.value);
}
}; };
const renderOptions = (option: string, index: number) => ( const renderOptions = (option: string, index: number) => (
...@@ -92,6 +97,7 @@ const Application = () => { ...@@ -92,6 +97,7 @@ const Application = () => {
value={status} value={status}
onChange={onChangeStatus} onChange={onChangeStatus}
> >
<option value="select">Select</option>
{statusValues.map(renderOptions)} {statusValues.map(renderOptions)}
</select> </select>
<button <button
......
...@@ -13,7 +13,7 @@ const Applications = () => { ...@@ -13,7 +13,7 @@ const Applications = () => {
useEffect(() => { useEffect(() => {
if (job) { if (job) {
sortApplications("skills", job); sortApplications("total", job);
} }
}, [job]); }, [job]);
...@@ -91,9 +91,9 @@ const Applications = () => { ...@@ -91,9 +91,9 @@ const Applications = () => {
aria-label="Default select example" aria-label="Default select example"
onChange={onSelectSort} onChange={onSelectSort}
> >
<option value="total">Total score</option>
<option value="skills">Skills score</option> <option value="skills">Skills score</option>
<option value="similarity">Similarity</option> <option value="similarity">Similarity</option>
<option value="total">Total score</option>
</select> </select>
</div> </div>
</div> </div>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment