brewlog/templates/pages/bag.html
Jon Seager 4fd72d654a
feat(bags): add bag detail page, extract shared detail page macros
- Create /bags/:id detail page with coffee, roaster, map, and bag info cards
- Extract shared template macros into detail_cards.html (coffee_card, roaster_card, map_with_legend, share_button)
- Extract build_coffee_info() and build_roaster_info() view model helpers
- Refactor brew.html and cup.html to use shared macros
- Make bag cards on homepage clickable, linking to detail page
- Add Close Bag and Delete actions on bag detail page
- Unify homepage card styling (bg-surface, hover:border-accent/40)
- Update CLAUDE.md with detail page patterns
2026-02-08 16:43:04 +00:00

122 lines
4.7 KiB
HTML

{% extends "base.html" %}
{% import "partials/detail_cards.html" as detail %}
{% import "partials/icons.html" as icons %}
{% 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 }}/og-image.png" />{% endblock %}
{% block content %}
<header class="flex items-start justify-between gap-4">
<div class="flex flex-col gap-2">
<h1 class="text-3xl font-semibold">{{ bag.roast_name }}</h1>
<p class="text-sm text-text-secondary">
{{ bag.roaster_name }} · {{ bag.amount }} · Opened {{ bag.created_date }}
</p>
</div>
{{ detail::share_button() }}
</header>
{{ detail::share_script() }}
{# ── 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) }}
{{ detail::map_with_legend_2(bag.map_countries, bag.map_max, "Origin", "", "Roaster", "opacity-50") }}
</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) }}
<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">
<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" onclick="closeBag('{{ bag.id }}')"
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">
{{ icons::x_mark("h-4 w-4") }} Close Bag
</button>
{% endif %}
<button type="button" onclick="deleteBag('{{ bag.id }}')"
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">
{{ icons::delete("h-4 w-4") }} Delete
</button>
</div>
</div>
<script>
const closeBag = async (bagId) => {
if (!confirm('Close this bag? This will mark it as finished.')) return;
try {
const today = new Date().toISOString().split('T')[0];
const resp = await fetch(`/api/v1/bags/${bagId}`, {
method: 'PUT',
headers: { 'Content-Type': 'application/json' },
credentials: 'same-origin',
body: JSON.stringify({ closed: true, remaining: 0.0, finished_at: today }),
});
if (!resp.ok) throw new Error(`Server returned ${resp.status}`);
window.location.reload();
} catch (e) {
alert(`Failed to close bag: ${e.message}`);
}
};
const deleteBag = async (bagId) => {
if (!confirm('Delete this bag? This cannot be undone.')) return;
try {
const resp = await fetch(`/api/v1/bags/${bagId}`, {
method: 'DELETE',
credentials: 'same-origin',
});
if (!resp.ok) throw new Error(`Server returned ${resp.status}`);
window.location.href = '/';
} catch (e) {
alert(`Failed to delete bag: ${e.message}`);
}
};
</script>
{% endif %}
{% endblock %}