mirror of
https://github.com/stack-auth/stack.git
synced 2026-06-13 21:01:21 +08:00
Step 5: rename lowercase local vars stackApp/stackServerApp/stackClientApp/ stackAdminApp -> hexclave* across SDK source, apps, examples, and docs-mintlify (docs/ excluded). Public StackServerApp/StackClientApp classes and the useStackApp hook are unchanged. typecheck + lint green.
38 lines
1.4 KiB
TypeScript
38 lines
1.4 KiB
TypeScript
import Home from "./inner";
|
|
import { preloadQuery, preloadedQueryResult } from "convex/nextjs";
|
|
import { api } from "@/convex/_generated/api";
|
|
import { ConvexHttpClient } from "convex/browser";
|
|
import { hexclaveServerApp } from "@/hexclave/server";
|
|
|
|
export default async function ServerPage() {
|
|
const preloaded = await preloadQuery(api.myFunctions.listNumbers, {
|
|
count: 3,
|
|
});
|
|
|
|
const data = preloadedQueryResult(preloaded);
|
|
|
|
const convex = new ConvexHttpClient(process.env.NEXT_PUBLIC_CONVEX_URL!);
|
|
const token = await hexclaveServerApp.getConvexHttpClientAuth({ tokenStore: "nextjs-cookie" });
|
|
convex.setAuth(token);
|
|
const userInfo = await convex.query(api.myFunctions.getUserInfo, {});
|
|
|
|
return (
|
|
<main className="p-8 flex flex-col gap-4 mx-auto max-w-2xl">
|
|
<h1 className="text-4xl font-bold text-center">Convex + Next.js</h1>
|
|
<div className="flex flex-col gap-4 bg-slate-200 dark:bg-slate-800 p-4 rounded-md">
|
|
<h2 className="text-xl font-bold">User info</h2>
|
|
<code>
|
|
<pre>{JSON.stringify(JSON.parse(userInfo), null, 2)}</pre>
|
|
</code>
|
|
</div>
|
|
<div className="flex flex-col gap-4 bg-slate-200 dark:bg-slate-800 p-4 rounded-md">
|
|
<h2 className="text-xl font-bold">Non-reactive server-loaded data</h2>
|
|
<code>
|
|
<pre>{JSON.stringify(data, null, 2)}</pre>
|
|
</code>
|
|
</div>
|
|
<Home preloaded={preloaded} />
|
|
</main>
|
|
);
|
|
}
|