Skip to content

Commit 4a95727

Browse files
fix single-fetch types for functions that return unions (#9999)
Co-authored-by: Michael McDermott <[email protected]>
1 parent 3d7966f commit 4a95727

File tree

2 files changed

+34
-10
lines changed

2 files changed

+34
-10
lines changed

.changeset/many-donuts-tie.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@remix-run/server-runtime": patch
3+
---
4+
5+
Fix single-fetch types when `loader`, `action`, `clientLoader`, or `clientAction` return a mixture of bare objects, `json(...)`, `defer(...)`, and `unstable_data(...)`.

packages/remix-server-runtime/single-fetch.ts

+29-10
Original file line numberDiff line numberDiff line change
@@ -418,22 +418,28 @@ type Serialize<T> =
418418

419419
undefined
420420

421+
// prettier-ignore
422+
type ClientData<T> =
423+
T extends TypedResponse<infer U> ? Jsonify<U> :
424+
T extends TypedDeferredData<infer U> ? U :
425+
T
426+
427+
// prettier-ignore
428+
type ServerData<T> =
429+
T extends TypedResponse<infer U> ? Jsonify<U> :
430+
T extends TypedDeferredData<infer U> ? Serialize<U> :
431+
T extends DataWithResponseInit<infer U> ? Serialize<U> :
432+
Serialize<T>
433+
421434
// Backwards-compatible type for Remix v2 where json/defer still use the old types,
422435
// and only non-json/defer returns use the new types. This allows for incremental
423436
// migration of loaders to return naked objects. In the next major version,
424437
// json/defer will be removed so everything will use the new simplified typings.
425438
// prettier-ignore
426439
export type SerializeFrom<T> =
427440
T extends (...args: infer Args) => infer Return ?
428-
Args extends [ClientLoaderFunctionArgs | ClientActionFunctionArgs] ?
429-
Awaited<Return> extends TypedResponse<infer U> ? Jsonify<U> :
430-
Awaited<Return> extends TypedDeferredData<infer U> ? U :
431-
Awaited<Return>
432-
:
433-
Awaited<Return> extends TypedResponse<infer U> ? Jsonify<U> :
434-
Awaited<Return> extends TypedDeferredData<infer U> ? Serialize<U> :
435-
Awaited<Return> extends DataWithResponseInit<infer D> ? Serialize<D> :
436-
Serialize<Awaited<ReturnType<T>>>
441+
Args extends [ClientLoaderFunctionArgs | ClientActionFunctionArgs] ? ClientData<Awaited<Return>> :
442+
ServerData<Awaited<Return>>
437443
:
438444
T
439445

@@ -607,5 +613,18 @@ type _tests = [
607613
Expect<Equal<Pretty<SerializeFrom<ServerLoader<TypedDeferredData<{a: string, b: Promise<Date>}>>>>, { a: string, b: Promise<Date> }>>,
608614

609615
// non-function backcompat
610-
Expect<Equal<SerializeFrom<{a: string, b: Date}>, {a: string, b: Date}>>
616+
Expect<Equal<SerializeFrom<{a: string, b: Date}>, {a: string, b: Date}>>,
617+
618+
Expect<Equal<
619+
SerializeFrom<ServerLoader<
620+
| { a: string; b: Date }
621+
| TypedResponse<{ c: string; d: Date }>
622+
| TypedDeferredData<{ e: string; f: Promise<Date> }>
623+
| DataWithResponseInit<{ g: string; h: Date }>
624+
>>,
625+
| { a: string; b: Date }
626+
| Jsonify<{ c: string; d: Date }>
627+
| { e: string; f: Promise<Date> }
628+
| { g: string; h: Date }
629+
>>,
611630
]

0 commit comments

Comments
 (0)