88 lines
2.6 KiB
TypeScript
88 lines
2.6 KiB
TypeScript
import Title from "@/components/Title";
|
|
import styles from "./styles.module.scss";
|
|
import Answer from "../../components/Answer";
|
|
import { useDispatch, useSelector } from "react-redux";
|
|
import { actions, selectors } from "@/store";
|
|
import { sleep } from "@/services/date";
|
|
import { useNavigate } from "react-router-dom";
|
|
import routes from "@/routes";
|
|
import { answerTimeOut } from "../../data";
|
|
import { useTranslations } from "@/hooks/translations";
|
|
import { ELocalesPlacement } from "@/locales";
|
|
import { useMemo } from "react";
|
|
import { useSession } from "@/hooks/session/useSession";
|
|
import { IAnswersSessionCompatibilityV4 } from "@/api/resources/Session";
|
|
import { ESourceAuthorization } from "@/api/resources/User";
|
|
|
|
function RelationshipStatus() {
|
|
const { translate } = useTranslations(ELocalesPlacement.CompatibilityV4);
|
|
const { updateSession } = useSession();
|
|
const navigate = useNavigate();
|
|
const dispatch = useDispatch();
|
|
const { relationshipStatus } = useSelector(
|
|
selectors.selectCompatibilityV4Answers
|
|
);
|
|
|
|
const answers: {
|
|
id: IAnswersSessionCompatibilityV4["relationship_status"];
|
|
title: string;
|
|
}[] = useMemo(
|
|
() => [
|
|
{
|
|
id: "single",
|
|
title: translate("/relationship-status.answer5"),
|
|
},
|
|
{
|
|
id: "start",
|
|
title: translate("/relationship-status.answer1"),
|
|
},
|
|
{
|
|
id: "in_relationship",
|
|
title: translate("/relationship-status.answer2"),
|
|
},
|
|
{
|
|
id: "developing",
|
|
title: translate("/relationship-status.answer3"),
|
|
},
|
|
{
|
|
id: "crisis",
|
|
title: translate("/relationship-status.answer4"),
|
|
},
|
|
// {
|
|
// id: "complicated",
|
|
// title: translate("/relationship-status.answer5"),
|
|
// },
|
|
],
|
|
[translate]
|
|
);
|
|
|
|
const handleClick = async (id: IAnswersSessionCompatibilityV4["relationship_status"]) => {
|
|
dispatch(actions.compatibilityV4Answers.update({ relationshipStatus: id }));
|
|
updateSession({
|
|
answers: {
|
|
relationship_status: id,
|
|
},
|
|
}, ESourceAuthorization["aura.compatibility.v4"]);
|
|
if (id !== relationshipStatus) await sleep(answerTimeOut);
|
|
navigate(routes.client.compatibilityV4RelationshipStatusResult());
|
|
};
|
|
|
|
return (
|
|
<div className={styles.container}>
|
|
<Title variant="h2" className={styles.title}>
|
|
{translate("/relationship-status.title")}
|
|
</Title>
|
|
{answers.map((answers, index) => (
|
|
<Answer
|
|
key={index}
|
|
answer={answers}
|
|
isSelected={relationshipStatus === answers.id}
|
|
onClick={() => handleClick(answers.id)}
|
|
/>
|
|
))}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default RelationshipStatus;
|