Follow-up to PR #406 — addresses the two items deferred from the audit: #7 — Centralize auth helpers - New `requireSessionUser(request)` in lib/auth/session.server.ts that returns the user or throws a redirect to /auth/login. - New `requireSessionUserJson(request)` companion that throws a 401 JSON response (for fetcher/JSON endpoints). - Replace the repeated const user = await getSessionUser(request); if (!user) return redirect("/auth/login"); pattern across 18 route loaders/actions. Removes the duplicated guard preamble and gives a single chokepoint to evolve later (e.g., for terms-version gating). #8 — Extract heavy loaders into .server.ts siblings - routes/home.tsx → home.server.ts (DB count query + listActivities + listRecentPublicActivities) - routes/users.$username.tsx → users.$username.server.ts (user lookup + follow state + counts + listPublicRoutes/Activities + persona check) - routes/settings.connections.tsx → settings.connections.server.ts (connected_services join + manifest merge) Each route file shrinks to a thin delegator: `loader` calls `loadXxx(request)`. The component module no longer transitively pulls `getDb` and Drizzle schema into its import graph — Vite's tree-shake already strips server-only code from the client bundle, but the explicit `.server.ts` suffix makes that contract local and auditable. Other 17 routes that mix loader/action with components are left as-is for now: they're each small enough that the split adds churn without buying much clarity. The pattern is documented by the three examples; the rest can convert opportunistically when they grow. Tests: - lib/auth/session.server.test.ts (4 cases — redirect for missing cookie, redirect for ghost userId, success path, JSON 401 variant) Full repo: pnpm typecheck, pnpm lint, pnpm test all green (181 passed | 31 integration-gated skipped). Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
116 lines
4.4 KiB
TypeScript
116 lines
4.4 KiB
TypeScript
import { data } from "react-router";
|
|
import { useTranslation } from "react-i18next";
|
|
import type { Route } from "./+types/activities._index";
|
|
import { requireSessionUser } from "~/lib/auth/session.server";
|
|
import { listActivities } from "~/lib/activities.server";
|
|
import { ClientDate } from "~/components/ClientDate";
|
|
import { ClientMap } from "~/components/ClientMap";
|
|
|
|
export async function loader({ request }: Route.LoaderArgs) {
|
|
const user = await requireSessionUser(request);
|
|
|
|
const url = new URL(request.url);
|
|
const sortParam = url.searchParams.get("sort");
|
|
const activitySort = sortParam === "addedAt" ? "addedAt" : ("startedAt" as const);
|
|
|
|
const userActivities = await listActivities(user.id, activitySort);
|
|
return data({
|
|
activitySort,
|
|
activities: userActivities.map((a) => ({
|
|
id: a.id,
|
|
name: a.name,
|
|
distance: a.distance,
|
|
elevationGain: a.elevationGain,
|
|
duration: a.duration,
|
|
startedAt: a.startedAt?.toISOString() ?? null,
|
|
createdAt: a.createdAt.toISOString(),
|
|
geojson: a.geojson ?? null,
|
|
})),
|
|
});
|
|
}
|
|
|
|
export function meta(_args: Route.MetaArgs) {
|
|
return [{ title: "Activities — trails.cool" }];
|
|
}
|
|
|
|
export default function ActivitiesListPage({ loaderData }: Route.ComponentProps) {
|
|
const { activities, activitySort } = loaderData;
|
|
const { t } = useTranslation("journal");
|
|
|
|
return (
|
|
<div className="mx-auto max-w-4xl px-4 py-8">
|
|
<div className="flex items-center justify-between">
|
|
<h1 className="text-2xl font-bold text-gray-900">{t("activities.title")}</h1>
|
|
<div className="flex items-center gap-2">
|
|
{activities.length > 0 && (
|
|
<div className="flex items-center gap-1 rounded-md border border-gray-200 p-0.5 text-sm">
|
|
<a
|
|
href="?sort=startedAt"
|
|
className={`rounded px-2.5 py-1 ${activitySort === "startedAt" ? "bg-gray-100 font-medium text-gray-900" : "text-gray-500 hover:text-gray-700"}`}
|
|
>
|
|
{t("activities.sortByDate")}
|
|
</a>
|
|
<a
|
|
href="?sort=addedAt"
|
|
className={`rounded px-2.5 py-1 ${activitySort === "addedAt" ? "bg-gray-100 font-medium text-gray-900" : "text-gray-500 hover:text-gray-700"}`}
|
|
>
|
|
{t("activities.sortByAdded")}
|
|
</a>
|
|
</div>
|
|
)}
|
|
<a
|
|
href="/activities/new"
|
|
className="rounded-md bg-blue-600 px-4 py-2 text-sm text-white hover:bg-blue-700"
|
|
>
|
|
New Activity
|
|
</a>
|
|
</div>
|
|
</div>
|
|
|
|
{activities.length === 0 ? (
|
|
<p className="mt-8 text-center text-gray-500">
|
|
No activities yet. Record your first adventure!
|
|
</p>
|
|
) : (
|
|
<ul className="mt-6 space-y-4">
|
|
{activities.map((activity) => (
|
|
<li key={activity.id}>
|
|
<a
|
|
href={`/activities/${activity.id}`}
|
|
className="block rounded-lg border border-gray-200 p-4 hover:bg-gray-50"
|
|
>
|
|
<div className="flex gap-4">
|
|
<div className="w-48 shrink-0">
|
|
{activity.geojson ? (
|
|
<ClientMap geojson={activity.geojson} />
|
|
) : (
|
|
<div className="flex h-36 w-full items-center justify-center rounded bg-gray-100 text-xs text-gray-400">
|
|
{t("routes.noMapPreview")}
|
|
</div>
|
|
)}
|
|
</div>
|
|
<div className="flex flex-1 flex-col justify-between">
|
|
<div>
|
|
<h2 className="text-lg font-medium text-gray-900">{activity.name}</h2>
|
|
<div className="mt-1 flex gap-4 text-sm text-gray-500">
|
|
{activity.distance != null && (
|
|
<span>{(activity.distance / 1000).toFixed(1)} km</span>
|
|
)}
|
|
{activity.elevationGain != null && (
|
|
<span>↑ {activity.elevationGain} m</span>
|
|
)}
|
|
</div>
|
|
</div>
|
|
<span className="text-sm text-gray-400">
|
|
<ClientDate iso={activity.startedAt ?? activity.createdAt} />
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</a>
|
|
</li>
|
|
))}
|
|
</ul>
|
|
)}
|
|
</div>
|
|
);
|
|
}
|