import { useState, useEffect } from "react"; import { Box, Button, Typography, useTheme } from "@mui/material"; import { useQuizViewStore } from "@root/quizView"; import { useCurrentQuiz } from "@root/quizes/hooks"; import { useQuestionsStore } from "@root/questions/store"; import type { AnyTypedQuizQuestion, QuizQuestionBase } from "../../model/questionTypes/shared"; import { getQuestionByContentId } from "@root/questions/actions"; import { enqueueSnackbar } from "notistack"; import { NameplateLogoFQ } from "@icons/NameplateLogoFQ"; import {NameplateLogoFQDark} from "@icons/NameplateLogoFQDark"; import {modes} from "../../utils/themes/Publication/themePublication"; import { checkEmptyData } from "../ResultPage/cards/ResultCard"; type FooterProps = { setCurrentQuestion: (step: AnyTypedQuizQuestion) => void; question: AnyTypedQuizQuestion; setShowContactForm: (show: boolean) => void; setShowResultForm: (show: boolean) => void; }; export const Footer = ({ setCurrentQuestion, question, setShowContactForm, setShowResultForm }: FooterProps) => { const [disablePreviousButton, setDisablePreviousButton] = useState(false); const [disableNextButton, setDisableNextButton] = useState(false); const [stepNumber, setStepNumber] = useState(1); const quiz = useCurrentQuiz(); const mode = modes; const { answers } = useQuizViewStore(); const questions = useQuestionsStore().questions as AnyTypedQuizQuestion[]; const theme = useTheme(); const linear = !questions.find(({ content }) => content.rule.parentId === "root"); useEffect(() => { // Логика для аргумента disabled у кнопки "Назад" if (linear) { const questionIndex = questions.findIndex(({ id }) => id === question.id); const previousQuestion = questions[questionIndex - 1]; if (previousQuestion) { setDisablePreviousButton(false); } else { setDisablePreviousButton(true); } } else { if (question?.content.rule.parentId === "root") { setDisablePreviousButton(true); } else { setDisablePreviousButton(false); } } // Логика для аргумента disabled у кнопки "Далее" const answer = answers.find(({ questionId }) => questionId === question.content.id); if ("required" in question.content && question.content.required && answer) { setDisableNextButton(false); return; } if ("required" in question.content && question.content.required && !answer) { setDisableNextButton(true); return; } if (linear) { return; } const nextQuestionId = getNextQuestionId(); if (nextQuestionId) { setDisableNextButton(false); } else { const nextQuestion = getQuestionByContentId(question.content.rule.default); if (nextQuestion?.type) { setDisableNextButton(false); } } }, [question, answers]); const showResult = (nextQuestion) => { if (nextQuestion && quiz?.config.resultInfo.when === "email") { setShowContactForm(true); return; } const isEmpty = checkEmptyData({ resultData: nextQuestion }) console.log("пустой результат? ", isEmpty) if (nextQuestion) { if (nextQuestion && quiz?.config.resultInfo.when === "before") { if (isEmpty) { setShowContactForm(true); //до+пустая = кидать на ФК console.log("до+пустая = кидать на ФК") } else { setShowResultForm(true); //до+заполнена = показать console.log("до+заполнена = показать") } } if (nextQuestion && quiz?.config.resultInfo.when === "after") { if (isEmpty) { setShowContactForm(true); //после+пустая console.log("после+пустая") } else { setShowContactForm(true); //после+заполнена = показать ФК console.log("после+заполнена = показать") } } } }; const getNextQuestionId = () => { if (answers.length) { const answer = answers.find(({ questionId }) => questionId === question.content.id); let readyBeNextQuestion = ""; (question as QuizQuestionBase).content.rule.main.forEach(({ next, rules }) => { let longerArray = Math.max( rules[0].answers.length, answer?.answer && Array.isArray(answer?.answer) ? answer?.answer.length : [answer?.answer].length ); for ( var i = 0; i < longerArray; i++ // Цикл по всем эле­мен­там бОльшего массива ) { if (Array.isArray(answer?.answer)) { if (answer?.answer.find((item) => String(item === rules[0].answers[i]))) { readyBeNextQuestion = next; // Ес­ли хоть один эле­мент от­ли­ча­ет­ся, мас­си­вы не рав­ны } return; } if (String(rules[0].answers[i]) === answer?.answer) { readyBeNextQuestion = next; // Ес­ли хоть один эле­мент от­ли­ча­ет­ся, мас­си­вы не рав­ны } } }); return readyBeNextQuestion; } }; const followPreviousStep = () => { if (linear) { setStepNumber(q => q - 1) const questionIndex = questions.findIndex(({ id }) => id === question.id); const previousQuestion = questions[questionIndex - 1]; if (previousQuestion) { setCurrentQuestion(previousQuestion); } return; } if (question?.content.rule.parentId !== "root") { const parent = getQuestionByContentId(question?.content.rule.parentId); if (parent?.type) { setCurrentQuestion(parent); } else { enqueueSnackbar("не могу получить предыдущий вопрос"); } } else { enqueueSnackbar("вы находитесь на первом вопросе"); } }; const followNextStep = () => { if (linear) { setStepNumber(q => q + 1) const questionIndex = questions.findIndex(({ id }) => id === question.id); const nextQuestion = questions[questionIndex + 1]; if (nextQuestion && nextQuestion.type !== "result") { setCurrentQuestion(nextQuestion); } else { showResult(nextQuestion); } return; } const nextQuestionId = getNextQuestionId(); if (nextQuestionId) { const nextQuestion = getQuestionByContentId(nextQuestionId); if (nextQuestion?.type && nextQuestion.type !== "result") { setCurrentQuestion(nextQuestion); return; } else { enqueueSnackbar("не могу получить последующий вопрос"); } } else { const nextQuestion = getQuestionByContentId(question.content.rule.default); if (nextQuestion?.type && nextQuestion.type !== "result") { setCurrentQuestion(nextQuestion); } else { showResult(nextQuestion); } } }; return ( {mode[quiz.config.theme] ? ( ):( ) } {linear && <> Шаг {stepNumber} Из {questions.filter(q => q.type !== "result").length} } {/* Шаг {stepNumber} */} {/* */} {/* Из {questions.length} */} ); };