Files
2026-07-13 13:32:57 +08:00

73 lines
2.6 KiB
TypeScript

import { json } from "@remix-run/node";
import type { LoaderFunctionArgs } from "@remix-run/node";
import { useFetcher, type ShouldRevalidateFunction } from "@remix-run/react";
import { useEffect, useRef } from "react";
import { logger } from "~/services/logger.server";
import { requireUserId } from "~/services/session.server";
import { getRecentChangelogs, verifyOrgMembership } from "~/services/platformNotifications.server";
export const shouldRevalidate: ShouldRevalidateFunction = () => false;
export type PlatformChangelogsLoaderData = {
changelogs: Array<{ id: string; title: string; actionUrl?: string }>;
};
export async function loader({ request }: LoaderFunctionArgs) {
try {
const userId = await requireUserId(request);
const url = new URL(request.url);
const rawOrganizationId = url.searchParams.get("organizationId") ?? undefined;
const rawProjectId = url.searchParams.get("projectId") ?? undefined;
const { organizationId, projectId } = await verifyOrgMembership({
userId,
organizationId: rawOrganizationId,
projectId: rawProjectId,
});
const changelogs = await getRecentChangelogs({ userId, organizationId, projectId });
return json<PlatformChangelogsLoaderData>({ changelogs });
} catch (error) {
if (error instanceof Response) throw error;
logger.error("Failed to load platform changelogs", { error });
// Polling widget — degrade silently so a transient DB blip doesn't paint
// the dashboard with errors every 60s. Empty payload keeps the consumer's
// fetcher.data shape stable; the fault is recorded server-side.
return json<PlatformChangelogsLoaderData>({ changelogs: [] });
}
}
const POLL_INTERVAL_MS = 60_000;
export function useRecentChangelogs(organizationId?: string, projectId?: string) {
const fetcher = useFetcher<typeof loader>();
const lastLoadedUrl = useRef<string | null>(null);
useEffect(() => {
const params = new URLSearchParams();
if (organizationId) params.set("organizationId", organizationId);
if (projectId) params.set("projectId", projectId);
const qs = params.toString();
const url = `/resources/platform-changelogs${qs ? `?${qs}` : ""}`;
if (lastLoadedUrl.current !== url && fetcher.state === "idle") {
lastLoadedUrl.current = url;
fetcher.load(url);
}
const interval = setInterval(() => {
if (fetcher.state === "idle") {
fetcher.load(url);
}
}, POLL_INTERVAL_MS);
return () => clearInterval(interval);
}, [organizationId, projectId]);
return {
changelogs: fetcher.data?.changelogs ?? [],
isLoading: fetcher.state !== "idle",
};
}