trails/apps/planner/app/components/SaveToJournalButton.tsx
Ullrich Schäfer 1d3ba956cb
feat(planner): restyle Export + SaveToJournal buttons on tokens
Bring the two slotted topbar actions onto the design system so the bar
reads as one cohesive surface:

- SaveToJournalButton: primary Button primitive; "saved" uses the
  accent, error uses a new --color-danger token, and the return link
  gets secondary token styling.
- ExportButton: token split-button (secondary look, chevron icon,
  single divider) and a token dropdown menu (raised surface, soft
  shadow, muted descriptions).
- New --color-danger token (#a03c3c, the no-go hue at full strength)
  for error text.

Behavior and i18n unchanged.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-07-16 00:42:37 +02:00

83 lines
3.1 KiB
TypeScript

import { useState, useCallback } from "react";
import { useTranslation } from "react-i18next";
import { Button } from "@trails-cool/ui";
import { computeSurfaceBreakdown } from "@trails-cool/map-core";
import type { YjsState } from "~/lib/use-yjs";
import { buildPlanGpx } from "~/lib/gpx-export";
import { readComputedRoute } from "~/lib/route-data";
interface SaveToJournalButtonProps {
yjs: YjsState;
sessionId: string;
returnUrl?: string;
}
export function SaveToJournalButton({ yjs, sessionId, returnUrl }: SaveToJournalButtonProps) {
const { t } = useTranslation("planner");
const [saving, setSaving] = useState(false);
const [saved, setSaved] = useState(false);
const [error, setError] = useState<string | null>(null);
const handleSave = useCallback(async () => {
setSaving(true);
setError(null);
try {
// Full plan GPX (track + waypoints + no-go areas + notes) so the
// route round-trips correctly through the journal.
const gpx = buildPlanGpx(yjs);
// Distance-weighted surface/waytype breakdown from the BRouter waytags
// already in routeData — sent alongside the GPX so the journal can show
// it without re-deriving (route-surface-breakdown, Path 1).
const route = readComputedRoute(yjs.routeData);
const breakdown =
route.coordinates && route.coordinates.length > 1
? computeSurfaceBreakdown(route.coordinates, route.surfaces, route.highways)
: null;
const surfaceBreakdown =
breakdown && (Object.keys(breakdown.surface).length > 0 || Object.keys(breakdown.highway).length > 0)
? breakdown
: undefined;
// POST to the planner's server-side proxy. The proxy attaches the
// journal Bearer token (stored on the session row) and forwards
// the GPX. Token never leaves the planner server — see
// routes/api.save-to-journal.ts.
const response = await fetch("/api/save-to-journal", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({ sessionId, gpx, ...(surfaceBreakdown ? { surfaceBreakdown } : {}) }),
});
if (!response.ok) {
const result = await response.json();
throw new Error(result.error ?? "Save failed");
}
setSaved(true);
} catch (err) {
setError((err as Error).message);
} finally {
setSaving(false);
}
}, [yjs, sessionId]);
return (
<div className="flex items-center gap-2">
<Button variant="primary" size="sm" onClick={handleSave} disabled={saving}>
{saving ? t("saving") : t("saveToJournal")}
</Button>
{saved && <span className="text-xs text-accent">{t("saved")}</span>}
{error && <span className="text-xs text-danger">{error}</span>}
{saved && returnUrl && (
<a
href={returnUrl}
className="inline-flex h-7 items-center rounded-md border border-border bg-bg-raised px-2.5 text-xs font-medium text-text-hi transition-colors hover:bg-bg-subtle"
>
{t("returnToJournal")}
</a>
)}
</div>
);
}