Arxk
Arxk
TtRPC
Created by Arxk on 3/27/2025 in #❓-help
Sending FormData does not work at all
Got it working. Had to use splitLink with a condition for isNonJsonSerializable
17 replies
TtRPC
Created by Arxk on 3/27/2025 in #❓-help
Sending FormData does not work at all
Yeah not working on 11.0.0 stable
17 replies
TtRPC
Created by Arxk on 3/27/2025 in #❓-help
Sending FormData does not work at all
Didn't know TRPC 11 is stable now
17 replies
TtRPC
Created by Arxk on 3/27/2025 in #❓-help
Sending FormData does not work at all
"@trpc/client": "11.0.0-rc.730",
"@trpc/next": "11.0.0-rc.730",
"@trpc/react-query": "11.0.0-rc.730",
"@trpc/server": "11.0.0-rc.730",
"@trpc/client": "11.0.0-rc.730",
"@trpc/next": "11.0.0-rc.730",
"@trpc/react-query": "11.0.0-rc.730",
"@trpc/server": "11.0.0-rc.730",
17 replies
TtRPC
Created by Arxk on 3/27/2025 in #❓-help
Sending FormData does not work at all
Here's my packages:
17 replies
TtRPC
Created by Arxk on 3/27/2025 in #❓-help
Sending FormData does not work at all
const t = initTRPC.context<typeof createTRPCContext>().create({
transformer,
errorFormatter({ shape, error }) {
return {
...shape,
data: {
...shape.data,
zodError:
error.cause instanceof ZodError ? error.cause.flatten() : null,
},
};
},
});
const t = initTRPC.context<typeof createTRPCContext>().create({
transformer,
errorFormatter({ shape, error }) {
return {
...shape,
data: {
...shape.data,
zodError:
error.cause instanceof ZodError ? error.cause.flatten() : null,
},
};
},
});
17 replies
TtRPC
Created by Arxk on 3/27/2025 in #❓-help
Sending FormData does not work at all
Server:
17 replies
TtRPC
Created by Arxk on 3/27/2025 in #❓-help
Sending FormData does not work at all
"use client";

import { QueryClientProvider, type QueryClient } from "@tanstack/react-query";
import { httpBatchLink, isNonJsonSerializable, loggerLink } from "@trpc/client";
import { createTRPCReact } from "@trpc/react-query";
import { useState } from "react";
import SuperJSON from "superjson";
import { createQueryClient } from "./query-client";

import type { inferRouterInputs, inferRouterOutputs, TRPCCombinedDataTransformer } from "@trpc/server";
import type { AppRouter } from "~/server/api/root";

let clientQueryClientSingleton: QueryClient | undefined = undefined;
const getQueryClient = () => {
if (typeof window === "undefined") {
// Server: always make a new query client
return createQueryClient();
}
// Browser: use singleton pattern to keep the same query client
return (clientQueryClientSingleton ??= createQueryClient());
};

export const api = createTRPCReact<AppRouter>();

/**
* Inference helper for inputs.
*
* @example type HelloInput = RouterInputs['example']['hello']
*/
export type RouterInputs = inferRouterInputs<AppRouter>;

/**
* Inference helper for outputs.
*
* @example type HelloOutput = RouterOutputs['example']['hello']
*/
export type RouterOutputs = inferRouterOutputs<AppRouter>;

// https://github.com/trpc/trpc/issues/1937#issuecomment-2557358137
export const transformer: TRPCCombinedDataTransformer = {
input: {
serialize: (obj) => {
if (isNonJsonSerializable(obj)) {
return obj;
} else {
return SuperJSON.serialize(obj);
}
},
deserialize: (obj) => {
if (isNonJsonSerializable(obj)) {
return obj;
} else {
return SuperJSON.deserialize(obj);
}
},
},
output: SuperJSON,
};

export function TRPCReactProvider(props: { children: React.ReactNode }) {
const queryClient = getQueryClient();

const [trpcClient] = useState(() =>
api.createClient({
links: [
loggerLink({
enabled: (op) =>
process.env.NODE_ENV === "development" ||
(op.direction === "down" && op.result instanceof Error),
}),
httpBatchLink({
transformer,
url: getBaseUrl() + "/api/trpc",
headers: () => {
const headers = new Headers();
headers.set("x-trpc-source", "nextjs-react");
return headers;
},
})
],
})
);

return (
<QueryClientProvider client={queryClient}>
<api.Provider
client={trpcClient}
queryClient={queryClient}
>
{props.children}
</api.Provider>
</QueryClientProvider>
);
}

function getBaseUrl() {
if (typeof window !== "undefined") return window.location.origin;
if (process.env.VERCEL_URL) return `https://${process.env.VERCEL_URL}`;
return `http://127.0.0.1:${process.env.PORT ?? 3000}`;
}
"use client";

import { QueryClientProvider, type QueryClient } from "@tanstack/react-query";
import { httpBatchLink, isNonJsonSerializable, loggerLink } from "@trpc/client";
import { createTRPCReact } from "@trpc/react-query";
import { useState } from "react";
import SuperJSON from "superjson";
import { createQueryClient } from "./query-client";

import type { inferRouterInputs, inferRouterOutputs, TRPCCombinedDataTransformer } from "@trpc/server";
import type { AppRouter } from "~/server/api/root";

let clientQueryClientSingleton: QueryClient | undefined = undefined;
const getQueryClient = () => {
if (typeof window === "undefined") {
// Server: always make a new query client
return createQueryClient();
}
// Browser: use singleton pattern to keep the same query client
return (clientQueryClientSingleton ??= createQueryClient());
};

export const api = createTRPCReact<AppRouter>();

/**
* Inference helper for inputs.
*
* @example type HelloInput = RouterInputs['example']['hello']
*/
export type RouterInputs = inferRouterInputs<AppRouter>;

/**
* Inference helper for outputs.
*
* @example type HelloOutput = RouterOutputs['example']['hello']
*/
export type RouterOutputs = inferRouterOutputs<AppRouter>;

// https://github.com/trpc/trpc/issues/1937#issuecomment-2557358137
export const transformer: TRPCCombinedDataTransformer = {
input: {
serialize: (obj) => {
if (isNonJsonSerializable(obj)) {
return obj;
} else {
return SuperJSON.serialize(obj);
}
},
deserialize: (obj) => {
if (isNonJsonSerializable(obj)) {
return obj;
} else {
return SuperJSON.deserialize(obj);
}
},
},
output: SuperJSON,
};

export function TRPCReactProvider(props: { children: React.ReactNode }) {
const queryClient = getQueryClient();

const [trpcClient] = useState(() =>
api.createClient({
links: [
loggerLink({
enabled: (op) =>
process.env.NODE_ENV === "development" ||
(op.direction === "down" && op.result instanceof Error),
}),
httpBatchLink({
transformer,
url: getBaseUrl() + "/api/trpc",
headers: () => {
const headers = new Headers();
headers.set("x-trpc-source", "nextjs-react");
return headers;
},
})
],
})
);

return (
<QueryClientProvider client={queryClient}>
<api.Provider
client={trpcClient}
queryClient={queryClient}
>
{props.children}
</api.Provider>
</QueryClientProvider>
);
}

function getBaseUrl() {
if (typeof window !== "undefined") return window.location.origin;
if (process.env.VERCEL_URL) return `https://${process.env.VERCEL_URL}`;
return `http://127.0.0.1:${process.env.PORT ?? 3000}`;
}
17 replies
TtRPC
Created by Arxk on 3/27/2025 in #❓-help
Sending FormData does not work at all
17 replies
TtRPC
Created by Arxk on 3/27/2025 in #❓-help
Sending FormData does not work at all
But now I just get errors:
17 replies
TtRPC
Created by Arxk on 3/27/2025 in #❓-help
Sending FormData does not work at all
I've been looking at this issue: https://github.com/trpc/trpc/issues/1937#issuecomment-2557358137 and it's kind of solved the problem, looks like I needed to use a custom solution for the transformer
17 replies
TtRPC
Created by Arxk on 3/26/2025 in #❓-help
How would I go about passing an image to the server using tRPC?
When a user deletes their account the images associated to them will be deleted anyways
12 replies
TtRPC
Created by Arxk on 3/26/2025 in #❓-help
How would I go about passing an image to the server using tRPC?
I’m thinking maybe I’ll just upload it to a bucket and just keep them stored tbh
12 replies
TtRPC
Created by Arxk on 3/26/2025 in #❓-help
How would I go about passing an image to the server using tRPC?
Sheesh
12 replies
TtRPC
Created by Arxk on 3/26/2025 in #❓-help
How would I go about passing an image to the server using tRPC?
And there’s probably also a changeable limit
12 replies
TtRPC
Created by Arxk on 3/26/2025 in #❓-help
How would I go about passing an image to the server using tRPC?
Would be sending massive payloads
12 replies
TtRPC
Created by Arxk on 3/26/2025 in #❓-help
How would I go about passing an image to the server using tRPC?
I could probably do this but if the files are like 3-5MB, surely it would get pretty heavy on bandwidth
12 replies