// Copyright: Ankitects Pty Ltd and contributors // License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html import { cardStats } from "@generated/backend"; import type { PageLoad } from "./$types"; function optionalBigInt(x: any): bigint | null { try { return BigInt(x); } catch (e) { return null; } } export const load = (async ({ params }) => { const cid = optionalBigInt(params.cardId); const info = cid !== null ? await cardStats({ cid }) : null; return { info }; }) satisfies PageLoad;