refactor: update sectionsEditMode logic and remove refine option in TrainingPlanningPage
All checks were successful
Deploy Development / deploy (push) Successful in 33s
Test Suite / pytest-backend (push) Successful in 6s
Test Suite / lint-backend (push) Successful in 0s
Test Suite / build-frontend (push) Successful in 6s
Test Suite / playwright-tests (push) Successful in 48s

- Revised the sectionsEditMode state to clarify the editing modes available, focusing on 'planning' and 'debrief'.
- Removed the 'refine' option from the editing mode buttons to streamline the user interface.
- Updated related text descriptions to reflect the changes in editing modes, enhancing user guidance during the training planning process.
This commit is contained in:
Lars 2026-05-06 08:00:27 +02:00
parent 00b22a756f
commit d4b9db9520

View File

@ -118,7 +118,7 @@ function TrainingPlanningPage() {
const [loading, setLoading] = useState(true)
const [showModal, setShowModal] = useState(false)
const [editingUnit, setEditingUnit] = useState(null)
/** Abschnitts-Editor: Planung / strukturelle Überarbeitung (ohne Ist-Felder) / Nachbereitung (Ist & Abweichungen) */
/** Abschnitts-Editor bei Bearbeitung: Planung vs. Nachbereitung (Ist & Abweichungen) */
const [sectionsEditMode, setSectionsEditMode] = useState('planning')
const [draftPlanTemplateId, setDraftPlanTemplateId] = useState('')
const [quickTemplateId, setQuickTemplateId] = useState('')
@ -2285,7 +2285,6 @@ function TrainingPlanningPage() {
>
{[
{ id: 'planning', label: 'Planung' },
{ id: 'refine', label: 'Überarbeiten' },
{ id: 'debrief', label: 'Nachbereitung' },
].map((opt, i) => (
<button
@ -2314,9 +2313,7 @@ function TrainingPlanningPage() {
<p style={{ margin: '0.35rem 0 0', fontSize: '0.82rem', color: 'var(--text3)', lineHeight: 1.45 }}>
{sectionsEditMode === 'debrief'
? 'IstMinuten rechts in derselben Spaltenbreite wie „Min“ (Plan); Abweichungen als Text über die volle Breite.'
: sectionsEditMode === 'refine'
? 'Struktur, Übungen und geplante Zeiten anpassen — ohne IstAngaben in den Zeilen (wie Planung).'
: 'Ablauf und geplante Minuten bearbeiten. IstWerte und Abweichungen nur unter „Nachbereitung“.'}
: 'Ablauf, Übungen und geplante Minuten. IstWerte und Abweichungen unter „Nachbereitung“.'}
</p>
</div>
) : null}