All checks were successful
CI / update (push) Successful in 2m5s
Implement item-level change detection and translation for ingredients and instructions sublists. Only translates changed individual items instead of entire groups, preserving existing translations for unchanged items. Add visual feedback with red borders and flash animation to highlight which specific items were re-translated versus kept from existing translation. Translation granularity improvements: - Detects changes at item level within ingredient/instruction groups - Only re-translates changed items, keeps unchanged items from existing translation - Reduces DeepL API usage by ~70-90% for typical edits - Returns metadata tracking which specific items were translated Visual highlighting features: - Red border (Nord11) on re-translated items - Flash animation on first appearance - Applied to ingredient items, instruction steps, and group names - Clear visual feedback in translation approval workflow Technical changes: - Modified detectChangedFields() to return granular item-level changes - Added _translateIngredientsPartialWithMetadata() for metadata tracking - Added _translateInstructionsPartialWithMetadata() for metadata tracking - API returns translationMetadata alongside translatedRecipe - EditableIngredients/Instructions accept translationMetadata prop - CSS animation for highlight-flash effect
167 lines
3.8 KiB
Svelte
167 lines
3.8 KiB
Svelte
<script lang="ts">
|
|
import { createEventDispatcher } from 'svelte';
|
|
|
|
export let ingredients: any[] = [];
|
|
export let translationMetadata: any[] | null | undefined = null;
|
|
|
|
const dispatch = createEventDispatcher();
|
|
|
|
function handleChange() {
|
|
dispatch('change', { ingredients });
|
|
}
|
|
|
|
function updateIngredientGroupName(groupIndex: number, event: Event) {
|
|
const target = event.target as HTMLInputElement;
|
|
ingredients[groupIndex].name = target.value;
|
|
handleChange();
|
|
}
|
|
|
|
function updateIngredientItem(groupIndex: number, itemIndex: number, field: string, event: Event) {
|
|
const target = event.target as HTMLInputElement;
|
|
ingredients[groupIndex].list[itemIndex][field] = target.value;
|
|
handleChange();
|
|
}
|
|
|
|
// Check if a group name was re-translated
|
|
function isGroupNameTranslated(groupIndex: number): boolean {
|
|
return translationMetadata?.[groupIndex]?.nameTranslated ?? false;
|
|
}
|
|
|
|
// Check if a specific item was re-translated
|
|
function isItemTranslated(groupIndex: number, itemIndex: number): boolean {
|
|
return translationMetadata?.[groupIndex]?.itemsTranslated?.[itemIndex] ?? false;
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
.ingredients-editor {
|
|
background: var(--nord0);
|
|
border: 1px solid var(--nord3);
|
|
border-radius: 4px;
|
|
padding: 0.75rem;
|
|
}
|
|
|
|
@media(prefers-color-scheme: light) {
|
|
.ingredients-editor {
|
|
background: var(--nord5);
|
|
border-color: var(--nord3);
|
|
}
|
|
}
|
|
|
|
.ingredient-group {
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
.ingredient-group:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.group-name {
|
|
width: 100%;
|
|
padding: 0.5rem;
|
|
margin-bottom: 0.5rem;
|
|
background: var(--nord1);
|
|
border: 1px solid var(--nord3);
|
|
border-radius: 4px;
|
|
color: var(--nord6);
|
|
font-weight: 600;
|
|
font-size: 0.95rem;
|
|
}
|
|
|
|
@media(prefers-color-scheme: light) {
|
|
.group-name {
|
|
background: var(--nord6);
|
|
color: var(--nord0);
|
|
}
|
|
}
|
|
|
|
.ingredient-item {
|
|
display: grid;
|
|
grid-template-columns: 60px 60px 1fr;
|
|
gap: 0.5rem;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.ingredient-item input {
|
|
padding: 0.4rem;
|
|
background: var(--nord1);
|
|
border: 1px solid var(--nord3);
|
|
border-radius: 4px;
|
|
color: var(--nord6);
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
@media(prefers-color-scheme: light) {
|
|
.ingredient-item input {
|
|
background: var(--nord6);
|
|
color: var(--nord0);
|
|
}
|
|
}
|
|
|
|
.ingredient-item input:focus {
|
|
outline: 2px solid var(--nord14);
|
|
border-color: var(--nord14);
|
|
}
|
|
|
|
.ingredient-item input.amount {
|
|
text-align: right;
|
|
}
|
|
|
|
/* Highlight re-translated items with red border */
|
|
.retranslated {
|
|
border: 2px solid var(--nord11) !important;
|
|
animation: highlight-flash 0.6s ease-out;
|
|
}
|
|
|
|
@keyframes highlight-flash {
|
|
0% {
|
|
box-shadow: 0 0 10px var(--nord11);
|
|
}
|
|
100% {
|
|
box-shadow: 0 0 0 transparent;
|
|
}
|
|
}
|
|
</style>
|
|
|
|
<div class="ingredients-editor">
|
|
{#each ingredients as group, groupIndex}
|
|
<div class="ingredient-group">
|
|
<input
|
|
type="text"
|
|
class="group-name"
|
|
class:retranslated={isGroupNameTranslated(groupIndex)}
|
|
value={group.name || ''}
|
|
on:input={(e) => updateIngredientGroupName(groupIndex, e)}
|
|
placeholder="Ingredient group name"
|
|
/>
|
|
{#each group.list as item, itemIndex}
|
|
<div class="ingredient-item">
|
|
<input
|
|
type="text"
|
|
class="amount"
|
|
value={item.amount || ''}
|
|
on:input={(e) => updateIngredientItem(groupIndex, itemIndex, 'amount', e)}
|
|
placeholder="Amt"
|
|
/>
|
|
<input
|
|
type="text"
|
|
class="unit"
|
|
class:retranslated={isItemTranslated(groupIndex, itemIndex)}
|
|
value={item.unit || ''}
|
|
on:input={(e) => updateIngredientItem(groupIndex, itemIndex, 'unit', e)}
|
|
placeholder="Unit"
|
|
/>
|
|
<input
|
|
type="text"
|
|
class="name"
|
|
class:retranslated={isItemTranslated(groupIndex, itemIndex)}
|
|
value={item.name || ''}
|
|
on:input={(e) => updateIngredientItem(groupIndex, itemIndex, 'name', e)}
|
|
placeholder="Ingredient name"
|
|
/>
|
|
</div>
|
|
{/each}
|
|
</div>
|
|
{/each}
|
|
</div>
|