brewlog/templates/pages/bag.html
Jon Seager 4b3f03f5d3
feat: add entity image support with display on detail pages
Add image infrastructure, API, and detail page integration:

- EntityImage domain model with ImageRepository trait
- SQLite storage for images and thumbnails as BLOBs
- Image processing with data URL decoding and thumbnail generation
- REST API: upload, get, delete, thumbnail at /{entity_type}/{id}/image
- resolve_image_url helper for image fallback chains
- image-upload web component for direct upload on detail pages
- Image display with vignette overlay and lightbox viewer
- Template macros: image_thumbnail, readonly_image, lightbox_script
- All 7 detail pages updated with image thumbnails
- Brew images fall back to roast; cup images fall back to cafe then roast
- Delete handler macro extended with optional image cleanup
2026-02-10 17:50:13 +00:00

136 lines
5.1 KiB
HTML

{% extends "base.html" %}
{% import "partials/detail_cards.html" as detail %}
{% import "partials/icons.html" as icons %}
{% import "partials/image_section.html" as img %}
{% block title %}Brewlog · {{ bag.roast_name }}{% endblock %}
{% block description %}
{{ bag.roast_name }}
by {{ bag.roaster_name }} — {{ bag.amount }} bag.
{% endblock %}
{% block og_title %}{{ bag.roast_name }} — Brewlog{% endblock %}
{% block og_description %}
{{ bag.roast_name }}
by {{ bag.roaster_name }} — {{ bag.amount }} bag.
{% endblock %}
{% block head %}
<meta property="og:image" content="{{ base_url }}/static/og-image.png" />
{% endblock %}
{% block content %}
<header class="flex items-start justify-between gap-4">
<div class="flex items-center gap-4 min-w-0">
{% if let Some(url) = image_url %}
{{ img::readonly_image(url, "roast image") }}
{% else %}
<div
class="flex shrink-0 items-center justify-center h-14 w-14 md:h-20 md:w-20 rounded-lg border-2 border-dashed border-text-muted/30 text-text-muted"
>
{{ icons::bag("h-6 w-6") }}
</div>
{% endif %}
<div class="flex flex-col gap-1 min-w-0">
<h1 class="text-2xl font-semibold truncate">{{ bag.roast_name }}</h1>
<p class="text-sm text-text-secondary">
<a
href="/data?type=bags"
class="text-accent hover:text-accent-hover transition"
>Bags</a
>
· {{ bag.created_date }}
</p>
</div>
</div>
</header>
{% if image_url.is_some() %}
{{ img::lightbox_script() }}
{% endif %}
{# ── Coffee + map ── #}
<div class="grid gap-6 md:grid-cols-2">
{{ detail::coffee_card(bag.roast_name, bag.roaster_name, bag.origin, bag.origin_flag, bag.region, bag.producer, bag.process, bag.tasting_notes, roaster_slug, roast_slug) }}
{{ detail::map_with_legend(bag.map_countries, bag.map_max, bag.legend_entries) }}
</div>
{# ── Roaster & bag info ── #}
<div class="grid gap-6 md:grid-cols-2">
{{ detail::roaster_card(bag.roaster_name, bag.roaster_country, bag.roaster_country_flag, bag.roaster_city, bag.roaster_homepage, roaster_slug) }}
<div class="rounded-lg border bg-surface p-5">
<h2 class="text-lg font-semibold text-text mb-4">Bag</h2>
<dl class="grid grid-cols-2 gap-x-4 gap-y-3 text-sm">
<div>
<dt class="text-text-muted">Amount</dt>
<dd class="font-medium text-text">{{ bag.amount }}</dd>
</div>
<div>
<dt class="text-text-muted">Status</dt>
<dd>
{% if bag.closed %}
<span class="font-medium text-text">Closed</span>
{% else %}
<div class="mt-1">
<div
class="h-2 rounded-full bg-surface-alt overflow-hidden"
role="progressbar"
aria-valuenow="{{ bag.used_percent }}"
aria-valuemin="0"
aria-valuemax="100"
aria-label="Coffee used"
>
<div
class="h-full rounded-full bg-accent"
style="width: {{ bag.used_percent }}%"
></div>
</div>
<p class="mt-1 text-text-muted" style="font-size: 0.7rem">
{{ bag.remaining }} / {{ bag.amount }}
</p>
</div>
{% endif %}
</dd>
</div>
{% if let Some(rd) = bag.roast_date %}
<div>
<dt class="text-text-muted">Roast Date</dt>
<dd class="font-medium text-text">{{ rd }}</dd>
</div>
{% endif %}
<div>
<dt class="text-text-muted">Opened</dt>
<dd class="font-medium text-text">{{ bag.created_date }}</dd>
</div>
{% if let Some(fd) = bag.finished_date %}
<div>
<dt class="text-text-muted">Finished</dt>
<dd class="font-medium text-text">{{ fd }}</dd>
</div>
{% endif %}
</dl>
</div>
</div>
{% if is_authenticated %}
{# ── Actions ── #}
<div class="grid gap-6 md:grid-cols-2">
<div
class="rounded-lg border bg-surface p-5 md:col-span-2 flex items-center gap-2"
>
{% if !bag.closed %}
<button
type="button"
class="inline-flex items-center gap-2 rounded-md border px-4 py-2 text-sm font-medium text-accent transition hover:text-text hover:bg-surface-alt"
data-on:click="confirm('Close this bag? This will mark it as finished.') && @put('/api/v1/bags/{{ bag.id }}?closed=true&remaining=0')"
>
{{ icons::x_mark("h-4 w-4") }} Close Bag
</button>
{% endif %}
<button
type="button"
class="inline-flex items-center gap-2 rounded-md border px-4 py-2 text-sm font-medium text-error transition hover:bg-surface-alt"
data-on:click="confirm('Delete this bag? This cannot be undone.') && @delete('/api/v1/bags/{{ bag.id }}')"
>
{{ icons::delete("h-4 w-4") }} Delete
</button>
</div>
</div>
{% endif %}
{% endblock %}