feat: 完善中文心理测评平台
This commit is contained in:
@@ -0,0 +1,238 @@
|
||||
'use client';
|
||||
|
||||
import { useState, useEffect, useRef, useCallback } from 'react';
|
||||
import { Question } from '@/components/questionnaire/test/public/Question';
|
||||
import { Navigation } from '@/components/questionnaire/test/public/Navigation';
|
||||
import { ProgressPanel } from '@/components/questionnaire/test/public/ProgressPanel';
|
||||
import { ProgressBar } from '@/components/questionnaire/test/public/ProgressBar';
|
||||
import { saveDraft, loadDraft, clearDraft } from '@/lib/storage';
|
||||
import { saveResult } from '@/lib/result-storage';
|
||||
import { Questionnaire as QuestionnaireType, QuestionType } from '@/types';
|
||||
import { useRouter } from 'next/navigation';
|
||||
import { toast } from "sonner"
|
||||
|
||||
interface QuestionnaireProps {
|
||||
questionnaire: QuestionnaireType;
|
||||
id: string;
|
||||
}
|
||||
|
||||
export function Questionnaire({
|
||||
questionnaire,
|
||||
id,
|
||||
}: QuestionnaireProps) {
|
||||
const router = useRouter();
|
||||
// State management
|
||||
const [currentPage, setCurrentPage] = useState(1);
|
||||
const [answers, setAnswers] = useState<{ [key: number]: string }>(() => {
|
||||
// Load saved answers from local storage
|
||||
const savedAnswers = loadDraft(id);
|
||||
return savedAnswers || {};
|
||||
});
|
||||
// Create refs to reference each question element
|
||||
const questionRefs = useRef<{ [key: number]: HTMLDivElement | null }>({});
|
||||
// Flag to indicate whether the questionnaire has been submitted
|
||||
const hasSubmittedRef = useRef(false);
|
||||
|
||||
// Save answers when component unmounts
|
||||
useEffect(() => {
|
||||
return () => {
|
||||
// If user hasn't submitted yet, persist draft on unmount
|
||||
if (!hasSubmittedRef.current && Object.keys(answers).length > 0) {
|
||||
saveDraft(id, answers);
|
||||
}
|
||||
};
|
||||
}, [id, answers]);
|
||||
|
||||
|
||||
|
||||
// Initialize question data - using real questionnaire data
|
||||
const generateQuestions = (): QuestionType[] => {
|
||||
|
||||
// Check the questionnaire for question data
|
||||
if (!questionnaire.questions || questionnaire.questions.length === 0) {
|
||||
// If real data is not available, simulated data is used
|
||||
throw new Error('Questionnaire data not found');
|
||||
}
|
||||
|
||||
// Use real questionnaire data
|
||||
return questionnaire.questions.map((q, index: number) => {
|
||||
const options = questionnaire.renderOptions(q.id)
|
||||
return {
|
||||
id: index + 1,
|
||||
content: q.content,
|
||||
options: options,
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
const [questions, setQuestions] = useState<QuestionType[]>([]);
|
||||
const [activePanelQuestion, setActivePanelQuestion] = useState<number | null>(
|
||||
null
|
||||
);
|
||||
// Control the display state of the progress panel
|
||||
const [showProgressPanel, setShowProgressPanel] = useState(true);
|
||||
|
||||
// Number of questions per page
|
||||
const questionsPerPage = 5;
|
||||
// Total number of pages
|
||||
const totalPages = Math.ceil((questions.length || 0) / questionsPerPage);
|
||||
// Questions on the current page
|
||||
const currentQuestions = questions.slice(
|
||||
(currentPage - 1) * questionsPerPage,
|
||||
currentPage * questionsPerPage
|
||||
);
|
||||
|
||||
// Number of answered questions
|
||||
const answeredCount = Object.keys(answers).length;
|
||||
// Calculate completion percentage
|
||||
const completionPercentage = questions.length
|
||||
? (answeredCount / questions.length) * 100
|
||||
: 0;
|
||||
|
||||
// This generateQuestions function changes every time useEffect runs
|
||||
// Solution is to move it inside useEffect or wrap it with useCallback
|
||||
const generateQuestionsCallback = useCallback(generateQuestions, [
|
||||
questionnaire,
|
||||
]);
|
||||
|
||||
useEffect(() => {
|
||||
setQuestions(generateQuestionsCallback());
|
||||
// Reset the refs object to reassign when the list of issues changes
|
||||
questionRefs.current = {};
|
||||
}, [id, questionnaire, generateQuestionsCallback]);
|
||||
|
||||
|
||||
const handleSelect = (questionId: number, value: string) => {
|
||||
const newAnswers = {
|
||||
...answers,
|
||||
[questionId]: value,
|
||||
};
|
||||
setAnswers(newAnswers);
|
||||
// Auto-save answers
|
||||
if (Object.keys(newAnswers).length < questions.length) {
|
||||
saveDraft(id, newAnswers);
|
||||
}
|
||||
};
|
||||
|
||||
const goToPage = (page: number) => {
|
||||
if (page >= 1 && page <= totalPages) {
|
||||
setCurrentPage(page);
|
||||
window.scrollTo(0, 0);
|
||||
}
|
||||
};
|
||||
|
||||
const goToQuestion = (questionId: number) => {
|
||||
// Calculate which page the question is on
|
||||
const page = Math.ceil(questionId / questionsPerPage);
|
||||
|
||||
// If already on the page, scroll to the question
|
||||
if (currentPage === page) {
|
||||
scrollToQuestion(questionId);
|
||||
} else {
|
||||
// Otherwise, switch page first, then scroll to question after page loads
|
||||
setCurrentPage(page);
|
||||
|
||||
// Use setTimeout to ensure DOM is updated before scrolling
|
||||
setTimeout(() => {
|
||||
scrollToQuestion(questionId);
|
||||
}, 100);
|
||||
}
|
||||
|
||||
// Set highlight effect
|
||||
setActivePanelQuestion(questionId);
|
||||
setTimeout(() => {
|
||||
setActivePanelQuestion(null);
|
||||
}, 1500);
|
||||
};
|
||||
|
||||
// Scroll to specific question position
|
||||
const scrollToQuestion = (questionId: number) => {
|
||||
const questionElement = questionRefs.current[questionId];
|
||||
if (questionElement) {
|
||||
// Get question element's position relative to viewport
|
||||
const rect = questionElement.getBoundingClientRect();
|
||||
|
||||
// Calculate scroll position with slight offset for better visual effect
|
||||
const scrollTop = window.pageYOffset + rect.top - 100;
|
||||
|
||||
// Smooth scroll to question position
|
||||
window.scrollTo({
|
||||
top: scrollTop,
|
||||
behavior: 'smooth',
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
const handleSubmit = () => {
|
||||
// Check if all questions are answered first
|
||||
if (answeredCount < questions.length) {
|
||||
toast("请先完成所有题目");
|
||||
return;
|
||||
}
|
||||
|
||||
if (answers) {
|
||||
// Mark as submitted to prevent saving draft on unmount
|
||||
hasSubmittedRef.current = true;
|
||||
|
||||
// Clear draft before navigation
|
||||
clearDraft(id);
|
||||
|
||||
// Store answers in this browser tab instead of putting them in the URL.
|
||||
const resultAnswers = questions.map((q) => answers[q.id] ?? '0');
|
||||
saveResult(id, resultAnswers);
|
||||
|
||||
router.push(`/questionnaire/${id}/result`);
|
||||
}
|
||||
|
||||
return;
|
||||
};
|
||||
|
||||
// Toggle progress panel visibility
|
||||
const toggleProgressPanel = () => {
|
||||
setShowProgressPanel((prev) => !prev);
|
||||
};
|
||||
|
||||
const setQuestionRef =
|
||||
(questionId: number) => (el: HTMLDivElement | null) => {
|
||||
questionRefs.current[questionId] = el;
|
||||
};
|
||||
|
||||
return (
|
||||
<div className="max-w-3xl mx-auto py-8 px-4">
|
||||
<h1 className="text-2xl font-bold mb-8">{questionnaire.title}</h1>
|
||||
|
||||
<ProgressPanel
|
||||
questions={questions}
|
||||
answers={answers}
|
||||
activePanelQuestion={activePanelQuestion}
|
||||
goToQuestion={goToQuestion}
|
||||
showProgressPanel={showProgressPanel}
|
||||
toggleProgressPanel={toggleProgressPanel}
|
||||
completionPercentage={completionPercentage}
|
||||
/>
|
||||
|
||||
<ProgressBar completionPercentage={completionPercentage} />
|
||||
|
||||
<div className="space-y-6">
|
||||
{currentQuestions.map((question) => (
|
||||
<Question
|
||||
key={question.id}
|
||||
question={question}
|
||||
answer={answers[question.id]}
|
||||
onSelect={handleSelect}
|
||||
ref={setQuestionRef(question.id)}
|
||||
/>
|
||||
))}
|
||||
</div>
|
||||
|
||||
<Navigation
|
||||
currentPage={currentPage}
|
||||
totalPages={totalPages}
|
||||
goToPage={goToPage}
|
||||
onSubmit={handleSubmit}
|
||||
isLastPage={currentPage === totalPages}
|
||||
/>
|
||||
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user