brewlog/templates/pages/edit_brew.html
Jon Seager 4ee8cf7964
fix: polish edit forms and detail pages
- Skip payload in tracing::instrument to avoid logging base64 image data
- Add blob: to CSP img-src for image preview support
- Add deferred_upload_with_preview macro for edit form image previews
  with Replace/Remove buttons and proper DOM cleanup on replacement
- Fix datastar-fetch finished handler (evt.detail.response is undefined
  for redirect scripts)
- Display brew time in M:SS format on edit form
- Add full-width Save Changes button with check icon and Cancel button
  to all edit forms
- Fix country flag emoji spacing on cafe and cup detail pages
- Add "View on Map" Google Maps link to cafe and cup detail pages
2026-02-10 19:43:03 +00:00

393 lines
14 KiB
HTML

{% extends "base.html" %}
{% import "partials/icons.html" as icons %}
{% import "partials/image_section.html" as img %}
{% block title %}Brewlog · Edit Brew{% endblock %}
{% block content %}
<header class="flex flex-col gap-2">
<h1 class="text-3xl font-semibold">Edit Brew</h1>
<p class="max-w-2xl text-sm text-text-secondary">Update brew details.</p>
</header>
<section class="rounded-lg border bg-surface p-5">
<form
class="flex flex-col gap-6"
data-signals:_submitting="false"
data-signals:_submit-error="''"
data-signals:_coffee-weight="{{ coffee_weight }}"
data-signals:_grind-setting="{{ grind_setting }}"
data-signals:_water-volume="{{ water_volume }}"
data-signals:_water-temp="{{ water_temp }}"
data-signals:_brew-time="{{ brew_time }}"
data-signals:_qn-good="{% if quick_notes.contains("good") %}true{% else %}false{% endif %}"
data-signals:_qn-too-fast="{% if quick_notes.contains("too-fast") %}true{% else %}false{% endif %}"
data-signals:_qn-too-slow="{% if quick_notes.contains("too-slow") %}true{% else %}false{% endif %}"
data-signals:_qn-too-hot="{% if quick_notes.contains("too-hot") %}true{% else %}false{% endif %}"
data-signals:_qn-under-extracted="{% if quick_notes.contains("under-extracted") %}true{% else %}false{% endif %}"
data-signals:_qn-over-extracted="{% if quick_notes.contains("over-extracted") %}true{% else %}false{% endif %}"
data-on:submit="$_submitting = true; $_submitError = ''; @put('/api/v1/brews/{{ id }}', {contentType: 'form'})"
data-on:datastar-fetch="if (!$_submitting) return;
if (evt.detail.type === 'finished') { $_submitting = false; sessionStorage.setItem('toast', 'Brew updated') }
else if (evt.detail.type === 'error') { $_submitting = false; $_submitError = 'Failed to save changes.' }"
>
<!-- Coffee -->
<div>
<h4 class="text-sm font-semibold text-text mb-3">Coffee</h4>
<div class="grid gap-4 sm:grid-cols-2">
<div class="flex flex-col gap-1 text-sm">
<span
class="text-xs font-semibold text-text-muted uppercase tracking-wide"
>Bag*</span
>
<searchable-select
name="bag_id"
placeholder="Type to search bags&hellip;"
initial-value="{{ bag_id }}"
>
{% for bag in bag_options %}
<button
type="button"
value="{{ bag.id }}"
data-display="{{ bag.roast_name }}"
class="w-full px-3 py-2 text-left text-sm hover:bg-surface-alt transition"
>
<span class="font-medium text-text"
>{{ bag.roast_name }}</span
>
<span class="ml-2 text-xs text-text-muted"
>{{ bag.roaster_name }} &middot; {{ bag.remaining }}</span
>
</button>
{% endfor %}
</searchable-select>
</div>
<div class="flex flex-col gap-1 text-sm">
<span
class="text-xs font-semibold text-text-muted uppercase tracking-wide"
>Weight (g)*</span
>
<div class="flex items-center gap-2">
<button
type="button"
class="btn-adjust"
data-on:click="$_coffeeWeight = Math.max(1, Number($_coffeeWeight) - 0.5)"
>
-
</button>
<input
type="number"
name="coffee_weight"
step="any"
min="1"
required
aria-required="true"
class="input-field flex-1 text-center"
data-bind:_coffee-weight
/>
<button
type="button"
class="btn-adjust"
data-on:click="$_coffeeWeight = Number($_coffeeWeight) + 0.5"
>
+
</button>
</div>
</div>
</div>
</div>
<!-- Grinder -->
<div>
<h4 class="text-sm font-semibold text-text mb-3">Grinder</h4>
<div class="grid gap-4 sm:grid-cols-2">
<label class="flex flex-col gap-1 text-sm">
<span
class="text-xs font-semibold text-text-muted uppercase tracking-wide"
>Grinder*</span
>
<select
name="grinder_id"
required
aria-required="true"
class="input-field"
>
{% for grinder in grinder_options %}
<option
value="{{ grinder.id }}"
{% if grinder.id == grinder_id %}selected{% endif %}
>
{{ grinder.label }}
</option>
{% endfor %}
</select>
</label>
<div class="flex flex-col gap-1 text-sm">
<span
class="text-xs font-semibold text-text-muted uppercase tracking-wide"
>Grind Setting*</span
>
<div class="flex items-center gap-2">
<button
type="button"
class="btn-adjust"
data-on:click="$_grindSetting = Math.max(0, Number($_grindSetting) - 0.5)"
>
-
</button>
<input
type="number"
name="grind_setting"
step="any"
min="0"
required
aria-required="true"
class="input-field flex-1 text-center"
data-bind:_grind-setting
/>
<button
type="button"
class="btn-adjust"
data-on:click="$_grindSetting = Number($_grindSetting) + 0.5"
>
+
</button>
</div>
</div>
</div>
</div>
<!-- Brewer -->
<div>
<h4 class="text-sm font-semibold text-text mb-3">Brewer</h4>
<div class="grid gap-4 sm:grid-cols-2">
<label class="flex flex-col gap-1 text-sm">
<span
class="text-xs font-semibold text-text-muted uppercase tracking-wide"
>Brewer*</span
>
<select
name="brewer_id"
required
aria-required="true"
class="input-field"
>
{% for brewer in brewer_options %}
<option
value="{{ brewer.id }}"
{% if brewer.id == brewer_id %}selected{% endif %}
>
{{ brewer.label }}
</option>
{% endfor %}
</select>
</label>
<label class="flex flex-col gap-1 text-sm">
<span
class="text-xs font-semibold text-text-muted uppercase tracking-wide"
>Filter Paper</span
>
<select name="filter_paper_id" class="input-field">
<option value="">None</option>
{% for fp in filter_paper_options %}
<option
value="{{ fp.id }}"
{% if fp.id == filter_paper_id %}selected{% endif %}
>
{{ fp.label }}
</option>
{% endfor %}
</select>
</label>
</div>
</div>
<!-- Recipe -->
<div>
<h4 class="text-sm font-semibold text-text mb-3">Recipe</h4>
<div class="grid gap-4 sm:grid-cols-3">
<div class="flex flex-col gap-1 text-sm">
<span
class="text-xs font-semibold text-text-muted uppercase tracking-wide"
>Volume (ml)*</span
>
<div class="flex items-center gap-2">
<button
type="button"
class="btn-adjust"
data-on:click="$_waterVolume = Math.max(10, Number($_waterVolume) - 10)"
>
-
</button>
<input
type="number"
name="water_volume"
step="any"
min="10"
required
aria-required="true"
class="input-field flex-1 text-center"
data-bind:_water-volume
/>
<button
type="button"
class="btn-adjust"
data-on:click="$_waterVolume = Number($_waterVolume) + 10"
>
+
</button>
</div>
</div>
<div class="flex flex-col gap-1 text-sm">
<span
class="text-xs font-semibold text-text-muted uppercase tracking-wide"
>Temp (&deg;C)*</span
>
<div class="flex items-center gap-2">
<button
type="button"
class="btn-adjust"
data-on:click="$_waterTemp = Math.max(0, Number($_waterTemp) - 0.5)"
>
-
</button>
<input
type="number"
name="water_temp"
step="any"
min="0"
max="100"
required
aria-required="true"
class="input-field flex-1 text-center"
data-bind:_water-temp
/>
<button
type="button"
class="btn-adjust"
data-on:click="$_waterTemp = Math.min(100, Number($_waterTemp) + 0.5)"
>
+
</button>
</div>
</div>
<div class="flex flex-col gap-1 text-sm">
<span
class="text-xs font-semibold text-text-muted uppercase tracking-wide"
>Time</span
>
<div class="flex items-center gap-2">
<button
type="button"
class="btn-adjust"
data-on:click="$_brewTime = Math.max(5, $_brewTime - 5)"
>
-
</button>
<input
type="hidden"
name="brew_time"
data-attr:value="$_brewTime"
/>
<input
type="text"
readonly
class="input-field flex-1 text-center"
data-attr:value="Math.floor($_brewTime / 60) + ':' + String($_brewTime % 60).padStart(2, '0')"
/>
<button
type="button"
class="btn-adjust"
data-on:click="$_brewTime = $_brewTime + 5"
>
+
</button>
</div>
</div>
</div>
</div>
<!-- Quick Notes -->
<div>
<h4 class="text-sm font-semibold text-text mb-3">Quick Notes</h4>
<div class="flex flex-wrap gap-2">
<button
type="button"
data-on:click="$_qnGood = !$_qnGood"
data-attr:class="$_qnGood ? 'pill pill-success cursor-pointer select-none transition' : 'pill pill-muted cursor-pointer select-none transition'"
>
Good
</button>
<button
type="button"
data-on:click="$_qnTooFast = !$_qnTooFast"
data-attr:class="$_qnTooFast ? 'pill pill-warning cursor-pointer select-none transition' : 'pill pill-muted cursor-pointer select-none transition'"
>
Too Fast
</button>
<button
type="button"
data-on:click="$_qnTooSlow = !$_qnTooSlow"
data-attr:class="$_qnTooSlow ? 'pill pill-warning cursor-pointer select-none transition' : 'pill pill-muted cursor-pointer select-none transition'"
>
Too Slow
</button>
<button
type="button"
data-on:click="$_qnTooHot = !$_qnTooHot"
data-attr:class="$_qnTooHot ? 'pill pill-warning cursor-pointer select-none transition' : 'pill pill-muted cursor-pointer select-none transition'"
>
Too Hot
</button>
<button
type="button"
data-on:click="$_qnUnderExtracted = !$_qnUnderExtracted"
data-attr:class="$_qnUnderExtracted ? 'pill pill-warning cursor-pointer select-none transition' : 'pill pill-muted cursor-pointer select-none transition'"
>
Under Extracted
</button>
<button
type="button"
data-on:click="$_qnOverExtracted = !$_qnOverExtracted"
data-attr:class="$_qnOverExtracted ? 'pill pill-warning cursor-pointer select-none transition' : 'pill pill-muted cursor-pointer select-none transition'"
>
Over Extracted
</button>
</div>
<input
type="hidden"
name="quick_notes"
data-attr:value="[$_qnGood && 'good', $_qnTooFast && 'too-fast', $_qnTooSlow && 'too-slow', $_qnTooHot && 'too-hot', $_qnUnderExtracted && 'under-extracted', $_qnOverExtracted && 'over-extracted'].filter(Boolean).join(',')"
/>
</div>
{{ img::deferred_upload_with_preview("edit-brew-image", "Brew Image", "brew", id, image_url) }}
<p
data-show="$_submitError"
data-text="$_submitError"
style="display:none"
class="text-sm text-error"
role="alert"
></p>
<div class="flex flex-col gap-2">
<button
type="submit"
class="inline-flex w-full items-center justify-center gap-2 rounded-md bg-accent px-4 py-2 text-sm font-semibold text-accent-text transition hover:bg-accent-hover disabled:opacity-50"
data-attr:disabled="$_submitting"
>
<span data-show="$_submitting" style="display:none"
>{{ icons::spinner("h-4 w-4") }}</span
>
<span data-show="!$_submitting">{{ icons::check("h-4 w-4") }}</span>
Save Changes
</button>
<button
type="button"
onclick="history.back()"
class="inline-flex w-full items-center justify-center rounded-md border px-4 py-2 text-sm font-medium text-text-secondary transition hover:bg-surface-alt"
>
Cancel
</button>
</div>
</form>
</section>
{% endblock %}