-
-
Notifications
You must be signed in to change notification settings - Fork 144
Expand file tree
/
Copy pathsvelte-typing-test.ts
More file actions
159 lines (128 loc) · 5.15 KB
/
svelte-typing-test.ts
File metadata and controls
159 lines (128 loc) · 5.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
import { useClientQueries } from '../src/svelte/index.svelte';
import { schema } from './schemas/basic/schema-lite';
import { schema as proceduresSchema } from './schemas/procedures/schema-lite';
const client = useClientQueries(schema);
const proceduresClient = useClientQueries(proceduresSchema);
// @ts-expect-error missing args
client.user.useFindUnique();
check(client.user.useFindUnique(() => ({ where: { id: '1' } })).data?.email);
check(client.user.useFindUnique(() => ({ where: { id: '1' } })).queryKey);
check(
client.user.useFindUnique(
() => ({ where: { id: '1' } }),
() => ({ optimisticUpdate: true, enabled: false }),
),
);
// @ts-expect-error unselected field
check(client.user.useFindUnique(() => ({ select: { email: true }, where: { id: '1' } })).data?.name);
check(client.user.useFindUnique(() => ({ where: { id: '1' }, include: { posts: true } })).data?.posts[0]?.title);
check(client.user.useFindFirst().data?.email);
check(client.user.useFindFirst().data?.$optimistic);
check(client.user.useExists().data);
check(client.user.useExists(() => ({ where: { id: '1' } })).data);
check(client.user.useFindMany().data?.[0]?.email);
check(client.user.useFindMany().data?.[0]?.$optimistic);
check(client.user.useInfiniteFindMany().data?.pages[0]?.[0]?.email);
check(
client.user.useInfiniteFindMany(
() => ({}),
() => ({
getNextPageParam: () => ({ id: '2' }),
}),
).data?.pages[1]?.[0]?.email,
);
// @ts-expect-error
check(client.user.useInfiniteFindMany().data?.pages[0]?.[0]?.$optimistic);
// TPageParam should be inferred from getNextPageParam, not typed as unknown
const infiniteResult = client.user.useInfiniteFindMany(
() => ({}),
() => ({
getNextPageParam: (_lastPage: unknown, _allPages: unknown, lastPageParam: { cursor: string }) => lastPageParam,
}),
);
check(infiniteResult.data?.pageParams[0]?.cursor);
check(client.user.useCount().data?.toFixed(2));
check(client.user.useCount(() => ({ select: { email: true } })).data?.email.toFixed(2));
check(client.user.useAggregate(() => ({ _max: { email: true } })).data?._max.email);
check(client.user.useGroupBy(() => ({ by: ['email'], _max: { name: true } })).data?.[0]?._max.name);
// @ts-expect-error missing args
client.user.useCreate().mutate();
client.user.useCreate().mutate({ data: { email: 'test@example.com' } });
client.user
.useCreate(() => ({ optimisticUpdate: true, invalidateQueries: false, retry: 3 }))
.mutate({
data: { email: 'test@example.com' },
});
client.user
.useCreate()
.mutateAsync({ data: { email: 'test@example.com' }, include: { posts: true } })
.then((d) => check(d.posts[0]?.title));
client.user
.useCreateMany()
.mutateAsync({
data: [{ email: 'test@example.com' }, { email: 'test2@example.com' }],
skipDuplicates: true,
})
.then((d) => d.count);
client.user
.useCreateManyAndReturn()
.mutateAsync({
data: [{ email: 'test@example.com' }],
})
.then((d) => check(d[0]?.name));
client.user
.useCreateManyAndReturn()
.mutateAsync({
data: [{ email: 'test@example.com' }],
select: { email: true },
})
// @ts-expect-error unselected field
.then((d) => check(d[0]?.name));
client.user.useUpdate().mutate(
{ data: { email: 'updated@example.com' }, where: { id: '1' } },
{
onSuccess: (d) => {
check(d.email);
},
},
);
client.user.useUpdateMany().mutate({ data: { email: 'updated@example.com' } });
client.user
.useUpdateManyAndReturn()
.mutateAsync({ data: { email: 'updated@example.com' } })
.then((d) => check(d[0]?.email));
client.user.useUpsert().mutate({
where: { id: '1' },
create: { email: 'new@example.com' },
update: { email: 'updated@example.com' },
});
client.user.useDelete().mutate({ where: { id: '1' }, include: { posts: true } });
client.user.useDeleteMany().mutate({ where: { email: 'test@example.com' } });
function check(_value: unknown) {
// noop
}
// @ts-expect-error delegate model
client.foo.useCreate();
client.foo.useUpdate();
client.bar.useCreate();
// procedures (query)
check(proceduresClient.$procs.greet.useQuery().data?.toUpperCase());
check(proceduresClient.$procs.greet.useQuery(() => ({ args: { name: 'bob' } })).data?.toUpperCase());
check(proceduresClient.$procs.greet.useQuery(() => ({ args: { name: 'bob' } })).queryKey);
// Infinite queries for procedures are currently disabled, will add back later if needed
// check(
// proceduresClient.$procs.greetMany
// .useInfiniteQuery(() => ({ args: { name: 'bob' } }))
// .data?.pages[0]?.[0]?.toUpperCase(),
// );
// check(proceduresClient.$procs.greetMany.useInfiniteQuery(() => ({ args: { name: 'bob' } })).queryKey);
// @ts-expect-error greet is not a mutation procedure
proceduresClient.$procs.greet.useMutation();
// procedures (mutation)
proceduresClient.$procs.sum.useMutation().mutate({ args: { a: 1, b: 2 } });
// @ts-expect-error wrong arg shape for multi-param procedure
proceduresClient.$procs.sum.useMutation().mutate([1, 2]);
proceduresClient.$procs.sum
.useMutation()
.mutateAsync({ args: { a: 1, b: 2 } })
.then((d) => check(d.toFixed(2)));