275 lines
8.8 KiB
TypeScript
275 lines
8.8 KiB
TypeScript
'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"
|
|
import { ProfilePicker } from '@/components/records/ProfilePicker';
|
|
import { AssessmentProfile } from '@/lib/assessment-types';
|
|
import { addAssessmentRecord, ensureActiveProfile } from '@/lib/assessment-db';
|
|
import { buildScoreSummary } from '@/lib/score-summary';
|
|
import { syncAnonymousRecord } from '@/lib/anonymous-client';
|
|
|
|
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);
|
|
const [activeProfile, setActiveProfile] = useState<AssessmentProfile | null>(null);
|
|
|
|
// 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 = async () => {
|
|
// 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');
|
|
const profile = activeProfile || await ensureActiveProfile();
|
|
const completedAt = new Date().toISOString();
|
|
const recordedAnswers = questionnaire.questions.map((question, index) => {
|
|
const value = resultAnswers[index];
|
|
const option = questionnaire.renderOptions(question.id).find(
|
|
(item) => String(item.value) === String(value),
|
|
);
|
|
return {
|
|
questionId: question.id,
|
|
question: question.content,
|
|
value,
|
|
answer: option?.content || value,
|
|
};
|
|
});
|
|
const record = await addAssessmentRecord({
|
|
profileId: profile.id,
|
|
questionnaireId: id,
|
|
questionnaireTitle: questionnaire.title,
|
|
category: questionnaire.category,
|
|
completedAt,
|
|
answers: recordedAnswers,
|
|
scoreSummary: buildScoreSummary(id, resultAnswers),
|
|
retestSuitable: questionnaire.evaluation?.retestSuitable,
|
|
recommendedInterval: questionnaire.evaluation?.recommendedInterval,
|
|
});
|
|
void syncAnonymousRecord(record).catch((error) => {
|
|
console.error('Failed to sync anonymous record:', error);
|
|
});
|
|
saveResult(id, resultAnswers, profile.id, record.id);
|
|
|
|
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="safe-x mx-auto max-w-3xl py-5 pb-32 md:py-8 md:pb-8">
|
|
<h1 className="mb-5 text-xl font-bold leading-8 md:mb-8 md:text-2xl">{questionnaire.title}</h1>
|
|
|
|
<ProfilePicker onChange={setActiveProfile} />
|
|
|
|
<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>
|
|
);
|
|
}
|