Created
May 17, 2022 11:21
-
-
Save esamattis/0af86e0b7ac0e70732f3fe748f69378c to your computer and use it in GitHub Desktop.
Type inference for Remix loaders
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { DataFunctionArgs } from "@remix-run/node"; | |
export async function loader({ request }: DataFunctionArgs) { | |
const user = getUser(request); | |
return typedJson({ | |
email: user.email, | |
}); | |
} | |
export default function Page() { | |
const user = useTypedLoaderData<typeof loader>(); | |
return <div>Email: {user.email}</div>; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { DataFunctionArgs, json } from "@remix-run/node"; | |
import { useLoaderData } from "@remix-run/react"; | |
// https://github.com/remix-run/remix/pull/1254#issuecomment-1126870942 | |
export function useTypedLoaderData<T extends (arg: any) => any>(): Awaited< | |
ReturnType<T> | |
> { | |
return useLoaderData(); | |
} | |
type Scalar = string | number | boolean | null | undefined; | |
export type JSON = Scalar | { [key: string]: JSON } | JSON[]; | |
export function typedJson<T extends JSON>( | |
data: T, | |
init?: Parameters<typeof json>[1], | |
): T { | |
return json(data, init) as any; // LIE, but practical 😎 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
New version! https://gist.github.com/esamattis/d1172371b0efc1327b8617de6e044f64