feat: 完善中文心理测评平台

This commit is contained in:
mikemoi
2026-06-22 22:59:01 +02:00
commit 9227c687fc
160 changed files with 16974 additions and 0 deletions
@@ -0,0 +1,47 @@
'use client';
import { useScopedI18n } from '@/locales/client';
import { Button } from '@/components/ui/button';
interface NavigationProps {
currentPage: number;
totalPages: number;
goToPage: (page: number) => void;
onSubmit: () => void;
isLastPage: boolean;
}
export function Navigation({
currentPage,
totalPages,
goToPage,
onSubmit,
isLastPage,
}: NavigationProps) {
const t = useScopedI18n('component.questionnaire.test.public.navigation');
return (
<div className="flex justify-between items-center mt-8">
<Button
variant="outline"
onClick={() => goToPage(currentPage - 1)}
disabled={currentPage === 1}
>
{t('previousPage')}
</Button>
<span className="text-sm text-gray-500">
{t('pageInfo', { currentPage, totalPages })}
</span>
{isLastPage ? (
<Button onClick={onSubmit}>{t('submit')}</Button>
) : (
<Button
onClick={() => goToPage(currentPage + 1)}
disabled={currentPage === totalPages}
>
{t('nextPage')}
</Button>
)}
</div>
);
}
@@ -0,0 +1,16 @@
import React from 'react';
interface ProgressBarProps {
completionPercentage: number;
}
export function ProgressBar({ completionPercentage }: ProgressBarProps) {
return (
<div className="w-full h-2 bg-gray-200 rounded-full overflow-hidden mb-2">
<div
className="h-full bg-green-500 transition-all duration-300"
style={{ width: `${completionPercentage}%` }}
></div>
</div>
);
}
@@ -0,0 +1,94 @@
import { useScopedI18n } from '@/locales/client';
import { Option } from '@/types';
interface Question {
id: number;
content: string;
options: Option[];
}
interface ProgressPanelProps {
questions: Question[];
answers: { [key: number]: string };
activePanelQuestion: number | null;
goToQuestion: (questionId: number) => void;
showProgressPanel: boolean;
toggleProgressPanel: () => void;
completionPercentage: number;
}
export function ProgressPanel({
questions,
answers,
activePanelQuestion,
goToQuestion,
showProgressPanel,
toggleProgressPanel,
completionPercentage,
}: ProgressPanelProps) {
const t = useScopedI18n('component.questionnaire.test.public.progressPanel');
return (
<>
<button
className="fixed right-4 top-10 bg-blue-500 hover:bg-blue-600 text-white rounded-full p-2 z-40 transition-all duration-300"
onClick={toggleProgressPanel}
title={showProgressPanel ? t('hideNav') : t('showNav')}
>
<svg
xmlns="http://www.w3.org/2000/svg"
className={`h-6 w-6 transition-transform duration-300 ${showProgressPanel ? 'rotate-180' : ''
}`}
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
>
<path
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth={2}
d="M9 5l7 7-7 7"
/>
</svg>
</button>
<div
className={`fixed right-4 top-20 w-64 bg-white rounded-lg shadow-lg p-4 transition-transform duration-300 transform ${showProgressPanel ? 'translate-x-0' : 'translate-x-full'
}`}
>
<div className="mb-4">
<div className="text-sm font-medium mb-2">
{t('completionProgress')}
{Math.round(completionPercentage)}%
</div>
<div className="w-full bg-gray-200 rounded-full h-2">
<div
className="bg-blue-500 rounded-full h-2 transition-all duration-300"
style={{ width: `${completionPercentage}%` }}
/>
</div>
</div>
<div className="grid grid-cols-5 gap-1 mb-4 max-h-[400px] overflow-y-auto">
{questions.map((_, i) => (
<button
key={i}
className={`w-9 h-9 flex items-center justify-center rounded-md text-xs
${answers[i + 1]
? 'bg-green-100 border-green-500 border-2'
: 'border'
}
${i + 1 === activePanelQuestion
? 'bg-green-300 border-green-600'
: ''
}
hover:bg-gray-100 transition-colors duration-200`}
onClick={() => goToQuestion(i + 1)}
title={t('jumpToQuestion', { questionNumber: i + 1 })}
>
{i + 1}
</button>
))}
</div>
</div>
</>
);
}
@@ -0,0 +1,41 @@
import { forwardRef } from 'react';
import { QuestionType } from '@/types';
interface QuestionProps {
question: QuestionType;
answer?: string;
onSelect: (questionId: number, option: string) => void;
}
export const Question = forwardRef<HTMLDivElement, QuestionProps>(
({ question, answer, onSelect }, ref) => {
return (
<div
ref={ref}
className="mb-8 p-6 bg-white rounded-lg shadow-sm"
id={`question-${question.id}`}
>
<h3 className="text-lg font-medium mb-4">
{question.id}. {question.content}
</h3>
<div className="space-y-2">
{question.options.map((option) => (
<button
key={option.value}
className={`w-full text-left p-3 rounded-lg transition-colors duration-200
${answer === option.value
? 'bg-blue-100 border-blue-500 border-2'
: 'border hover:bg-gray-50'
}`}
onClick={() => onSelect(question.id, option.value)}
>
{option.content}
</button>
))}
</div>
</div>
);
}
);
Question.displayName = 'Question';