T
Join ServertRPC
❓-help
Type of createServerSideHelpers?
I'm currently trying to implement a helper for
What's the type of
getServerSideProps
to reduce duplication. It's still wip, but I'm encountering a problem I can't figure out:export async function createServerSideProps(
ctx: GetServerSidePropsContext,
callback: (helpers/**: ???? */) => Record<string, any>
) {
const helpers = createServerSideHelpers({
router: appRouter,
ctx: {
user: await getServerSession(ctx.req, ctx.res, authOptions),
},
transformer: superjson,
});
const props = callback(helpers);
return {
props,
};
}
What's the type of
helpers
in the callback?Figured it out myself:
export async function createServerSideProps(
ctx: GetServerSidePropsContext,
callback: (
helpers: DecoratedProcedureSSGRecord<AppRouter>
) => Record<string, any>
) {
const helpers = createServerSideHelpers({
router: appRouter,
ctx: {
user: await getServerSession(ctx.req, ctx.res, authOptions),
},
transformer: superjson,
});
const props = await callback(helpers);
return {
props: {
trpcState: helpers.dehydrate(),
...props,
},
};
}
Hello bro.. How do you implement this and where did you put the code?
I just got an error "PrismaClient is unable to be run in the browser" [next js]
this is how I apply. @nehalist
seems like somewhere in your code you're referencing prisma on the client
hmMmMm... I'll take a look on that and let you know 👍