feat: add translation editing support for base recipe reference fields
All checks were successful
CI / update (push) Successful in 1m10s

Enhanced translation approval UI to allow editing translated text in base
recipe references:

- EditableIngredients: Added support for editing labelOverride, itemsBefore,
  and itemsAfter fields with visual distinction for base recipe references
- EditableInstructions: Added support for editing labelOverride, stepsBefore,
  and stepsAfter fields with organized sections
- TranslationApproval: Updated German side to display base recipe reference
  fields (labelOverride, items/steps before/after) in read-only view

Users can now edit all auto-translated fields in base recipe references
including additional ingredients/instructions added before or after the
base recipe content.
This commit is contained in:
2026-01-04 20:54:43 +01:00
parent 7e66445312
commit 95e6d78619
3 changed files with 352 additions and 62 deletions

View File

@@ -605,12 +605,37 @@ button:disabled {
<div class="field-label">Ingredients</div>
<div class="field-value readonly readonly-text">
{#each germanData.ingredients as ing}
<strong>{ing.name || 'Ingredients'}</strong>
<ul>
{#each ing.list as item}
<li>{item.amount} {item.unit} {item.name}</li>
{/each}
</ul>
{#if ing.type === 'reference'}
<div style="background: var(--nord3); padding: 0.5rem; border-radius: 4px; margin-bottom: 0.5rem;">
<strong>🔗 Base Recipe Reference</strong>
{#if ing.labelOverride}
<div><em>Label: {ing.labelOverride}</em></div>
{/if}
{#if ing.itemsBefore && ing.itemsBefore.length > 0}
<div style="margin-top: 0.5rem;"><strong>Items Before:</strong></div>
<ul>
{#each ing.itemsBefore as item}
<li>{item.amount} {item.unit} {item.name}</li>
{/each}
</ul>
{/if}
{#if ing.itemsAfter && ing.itemsAfter.length > 0}
<div style="margin-top: 0.5rem;"><strong>Items After:</strong></div>
<ul>
{#each ing.itemsAfter as item}
<li>{item.amount} {item.unit} {item.name}</li>
{/each}
</ul>
{/if}
</div>
{:else}
<strong>{ing.name || 'Ingredients'}</strong>
<ul>
{#each ing.list as item}
<li>{item.amount} {item.unit} {item.name}</li>
{/each}
</ul>
{/if}
{/each}
</div>
</div>
@@ -621,12 +646,37 @@ button:disabled {
<div class="field-label">Instructions</div>
<div class="field-value readonly readonly-text">
{#each germanData.instructions as inst}
<strong>{inst.name || 'Steps'}</strong>
<ol>
{#each inst.steps as step}
<li>{step}</li>
{/each}
</ol>
{#if inst.type === 'reference'}
<div style="background: var(--nord3); padding: 0.5rem; border-radius: 4px; margin-bottom: 0.5rem;">
<strong>🔗 Base Recipe Reference</strong>
{#if inst.labelOverride}
<div><em>Label: {inst.labelOverride}</em></div>
{/if}
{#if inst.stepsBefore && inst.stepsBefore.length > 0}
<div style="margin-top: 0.5rem;"><strong>Steps Before:</strong></div>
<ol>
{#each inst.stepsBefore as step}
<li>{step}</li>
{/each}
</ol>
{/if}
{#if inst.stepsAfter && inst.stepsAfter.length > 0}
<div style="margin-top: 0.5rem;"><strong>Steps After:</strong></div>
<ol>
{#each inst.stepsAfter as step}
<li>{step}</li>
{/each}
</ol>
{/if}
</div>
{:else}
<strong>{inst.name || 'Steps'}</strong>
<ol>
{#each inst.steps as step}
<li>{step}</li>
{/each}
</ol>
{/if}
{/each}
</div>
</div>