Improve SingleChoiceEntryView
This commit is contained in:
@@ -9,6 +9,7 @@ const AUTO_ADVANCE_DELAY_MS = 600;
|
|||||||
|
|
||||||
export default function SingleChoiceEntryView({
|
export default function SingleChoiceEntryView({
|
||||||
entry,
|
entry,
|
||||||
|
index,
|
||||||
onSave,
|
onSave,
|
||||||
isSaving,
|
isSaving,
|
||||||
ratingOptions,
|
ratingOptions,
|
||||||
@@ -47,7 +48,7 @@ export default function SingleChoiceEntryView({
|
|||||||
{/* Sample header */}
|
{/* Sample header */}
|
||||||
<div className="flex items-center justify-between mb-3">
|
<div className="flex items-center justify-between mb-3">
|
||||||
<span className="text-xs font-medium text-gray-400 uppercase tracking-wide">
|
<span className="text-xs font-medium text-gray-400 uppercase tracking-wide">
|
||||||
Aufnahme {entry.externalId}
|
Aufnahme {index + 1}
|
||||||
</span>
|
</span>
|
||||||
{fullyPlayed && (
|
{fullyPlayed && (
|
||||||
<span className="text-xs text-green-600 font-medium">
|
<span className="text-xs text-green-600 font-medium">
|
||||||
@@ -65,14 +66,14 @@ export default function SingleChoiceEntryView({
|
|||||||
|
|
||||||
{/* Must-listen hint */}
|
{/* Must-listen hint */}
|
||||||
{!fullyPlayed && (
|
{!fullyPlayed && (
|
||||||
<p className="text-xs text-amber-600 mt-2">
|
<p className="text-xs text-gray-400 mt-2">
|
||||||
Bitte die Aufnahme vollständig anhören, bevor du eine Bewertung abgibst.
|
Bitte die Aufnahme vollständig anhören, bevor du eine Bewertung abgibst.
|
||||||
</p>
|
</p>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
{/* Dialect + question */}
|
{/* Dialect + question */}
|
||||||
<div className="mt-4 mb-3">
|
<div className="mt-4 mb-3">
|
||||||
<div className="text-sm font-semibold text-gray-700">
|
<div className="text-s font-semibold text-gray-700">
|
||||||
{question}
|
{question}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -109,6 +110,11 @@ export default function SingleChoiceEntryView({
|
|||||||
);
|
);
|
||||||
})}
|
})}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
{/* Footnote */}
|
||||||
|
<p className="text-xs text-gray-400 mt-8 pt-3 border-t border-gray-100">
|
||||||
|
Vertrau deinem ersten Eindruck – klingt die Aufnahme authentisch nach diesem Dialekt? Es gibt keine richtige oder falsche Antwort.
|
||||||
|
</p>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user