116 lines
3.6 KiB
TypeScript
116 lines
3.6 KiB
TypeScript
import routes from "@/routes";
|
|
import styles from "./styles.module.scss";
|
|
import Title from "@/components/Title";
|
|
import Button from "../../components/Button";
|
|
import Policy from "@/components/Policy";
|
|
import { useTranslations } from "@/hooks/translations";
|
|
import { useNavigate } from "react-router-dom";
|
|
import { ELocalesPlacement } from "@/locales";
|
|
// import { DotLottieReact } from "@lottiefiles/dotlottie-react";
|
|
import { ELottieKeys, useLottie } from "@/hooks/lottie/useLottie";
|
|
import { selectors } from "@/store";
|
|
import { useSelector } from "react-redux";
|
|
import { images } from "../../data";
|
|
import { getZodiacSignByDate } from "@/services/zodiac-sign";
|
|
import { EUnleashFlags, useUnleash } from "@/hooks/ab/unleash/useUnleash";
|
|
import Loader, { LoaderColor } from "@/components/Loader";
|
|
|
|
function PalmsInformation() {
|
|
const { translate } = useTranslations(ELocalesPlacement.CompatibilityV2);
|
|
const { gender, birthdate } = useSelector(selectors.selectQuestionnaire);
|
|
const zodiacSign = getZodiacSignByDate(birthdate);
|
|
const navigate = useNavigate();
|
|
// const { animationData } =
|
|
useLottie({
|
|
// loadKey: ELottieKeys.handSymbols,
|
|
preloadKey: ELottieKeys.scalesHeadPalmistry,
|
|
});
|
|
|
|
const { isReady, variant: zodiacImages } = useUnleash({
|
|
flag: EUnleashFlags.zodiacImages
|
|
});
|
|
|
|
const handleNext = () => {
|
|
navigate(routes.client.compatibilityV2RelationshipStatus());
|
|
};
|
|
|
|
if (!isReady) {
|
|
return <Loader color={LoaderColor.Black} />;
|
|
}
|
|
|
|
return (
|
|
<div className={styles["page-container"]}>
|
|
{/* {animationData && (
|
|
<DotLottieReact
|
|
className={`${styles["lottie-animation"]} ym-hide-content`}
|
|
data={animationData}
|
|
autoplay
|
|
loop={false}
|
|
width={1920}
|
|
/>
|
|
)} */}
|
|
{zodiacImages !== "new" && (
|
|
<div className={styles.zodiac}>
|
|
<img
|
|
className={styles.image}
|
|
src={images(`zodiacs/${gender}/${zodiacSign.toUpperCase()}.webp`)}
|
|
alt="Zodiac sign"
|
|
/>
|
|
</div>
|
|
)}
|
|
{zodiacImages === "new" && (
|
|
<div className={styles.zodiacNew}>
|
|
<img
|
|
className={styles.image}
|
|
// src={images(`zodiacs/${gender}/${zodiacSign.toUpperCase()}.webp`)}
|
|
src={`/zodiac-signs/${gender?.toLowerCase()}/${zodiacSign.toLowerCase()}.svg`}
|
|
alt="Zodiac sign"
|
|
/>
|
|
</div>
|
|
)}
|
|
<Title variant="h2" className={styles.title}>
|
|
{translate(`/palms-information.${zodiacSign.toLowerCase()}.title`)}
|
|
</Title>
|
|
<p className={styles.description}>
|
|
{translate(`/palms-information.${zodiacSign.toLowerCase()}.description`)}
|
|
</p>
|
|
<Button onClick={handleNext}>
|
|
{translate("next")}
|
|
</Button>
|
|
<Policy>
|
|
{translate("privacy_policy", {
|
|
eulaLink: (
|
|
<a
|
|
href="https://aura.wit.life/terms"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
>
|
|
{translate("eula_link")}
|
|
</a>
|
|
),
|
|
privacyLink: (
|
|
<a
|
|
href="https://aura.wit.life/privacy"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
>
|
|
{translate("privacy_notice")}
|
|
</a>
|
|
),
|
|
clickHere: (
|
|
<a
|
|
href="https://aura.wit.life/"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
>
|
|
{translate("policy_here")}
|
|
</a>
|
|
),
|
|
})}
|
|
</Policy>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default PalmsInformation;
|