-
-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Expand file tree
/
Copy pathcreateQueryController.ts
More file actions
358 lines (324 loc) · 9.67 KB
/
createQueryController.ts
File metadata and controls
358 lines (324 loc) · 9.67 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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
import {
QueryObserver,
type DefaultError,
type DefaultedQueryObserverOptions,
type QueryKey,
type QueryObserverOptions,
type QueryObserverResult,
} from '@tanstack/query-core'
import type { QueryClient } from '@tanstack/query-core'
import type { ReactiveControllerHost } from 'lit'
import {
createValueAccessor,
readAccessor,
type Accessor,
type ValueAccessor,
} from './accessor.js'
import { createMissingQueryClientError } from './context.js'
import { BaseController } from './controllers/BaseController.js'
import {
renderResult,
type RendererResult,
type ResultRenderers,
} from './render.js'
/**
* Options accepted by `createQueryController`.
*
* This is the Lit adapter shape for `QueryObserverOptions`. It can be passed
* directly to `createQueryController`, or wrapped in an `Accessor` when the
* options depend on Lit host state.
*/
export type CreateQueryOptions<
TQueryFnData = unknown,
TError = DefaultError,
TData = TQueryFnData,
TQueryData = TQueryFnData,
TQueryKey extends QueryKey = QueryKey,
> = QueryObserverOptions<TQueryFnData, TError, TData, TQueryData, TQueryKey>
/**
* Accessor returned by `createQueryController`.
*
* Call the accessor or read its `current` property to get the latest query
* result. The attached methods delegate to the active query observer.
*/
export type QueryResultAccessor<TData, TError> = ValueAccessor<
QueryObserverResult<TData, TError>
> & {
/** Refetches the current query. */
refetch: QueryObserverResult<TData, TError>['refetch']
/** Resolves with an optimistic query result, fetching first when needed. */
suspense: () => Promise<QueryObserverResult<TData, TError>>
/** Removes the controller from its Lit host and unsubscribes observers. */
destroy: () => void
/** Renders the query result using the appropriate renderer from the given set, based on the result's `status`. */
render: <
TRenderers extends ResultRenderers<QueryObserverResult<TData, TError>>,
>(
renderers: TRenderers,
) => RendererResult<QueryObserverResult<TData, TError>, TRenderers>
}
function createPendingQueryResult<TData, TError>(): QueryObserverResult<
TData,
TError
> {
return {
data: undefined,
dataUpdatedAt: 0,
error: null,
errorUpdatedAt: 0,
failureCount: 0,
failureReason: null,
errorUpdateCount: 0,
isError: false,
isFetched: false,
isFetchedAfterMount: false,
isFetching: false,
isInitialLoading: false,
isLoading: false,
isLoadingError: false,
isPaused: false,
isPending: true,
isPlaceholderData: false,
isRefetchError: false,
isRefetching: false,
isStale: true,
isEnabled: true,
isSuccess: false,
fetchStatus: 'idle',
status: 'pending',
refetch: (() =>
Promise.reject(createMissingQueryClientError())) as QueryObserverResult<
TData,
TError
>['refetch'],
promise: Promise.resolve(undefined as never),
} as unknown as QueryObserverResult<TData, TError>
}
class QueryController<
TQueryFnData,
TError,
TData,
TQueryData,
TQueryKey extends QueryKey,
> extends BaseController<QueryObserverResult<TData, TError>> {
private readonly options: Accessor<
CreateQueryOptions<TQueryFnData, TError, TData, TQueryData, TQueryKey>
>
private observer:
| QueryObserver<TQueryFnData, TError, TData, TQueryData, TQueryKey>
| undefined
private unsubscribe: (() => void) | undefined
private queryClient: QueryClient | undefined
constructor(
host: ReactiveControllerHost,
options: Accessor<
CreateQueryOptions<TQueryFnData, TError, TData, TQueryData, TQueryKey>
>,
queryClient?: QueryClient,
) {
const initialClient = queryClient
super(host, createPendingQueryResult(), queryClient)
this.options = options
if (!initialClient) {
return
}
if (typeof options === 'function') {
return
}
const defaulted = this.defaultOptions(initialClient)
const observer = new QueryObserver(initialClient, defaulted)
this.queryClient = initialClient
this.observer = observer
this.result = observer.getOptimisticResult(defaulted)
}
protected onConnected(): void {
if (!this.syncClient()) {
return
}
this.refreshOptions()
this.subscribe()
this.observer?.updateResult()
if (this.observer) {
this.setResult(this.observer.getCurrentResult())
}
}
protected onDisconnected(): void {
this.unsubscribeObserver()
this.syncClient()
}
protected onHostUpdate(): void {
if (typeof this.options !== 'function') {
return
}
this.refreshOptions()
}
protected onQueryClientChanged(): void {
if (!this.syncClient()) {
return
}
if (!this.connectedState) {
return
}
this.refreshOptions()
this.subscribe()
this.observer?.updateResult()
if (this.observer) {
this.setResult(this.observer.getCurrentResult())
}
}
refetch: QueryObserverResult<TData, TError>['refetch'] = (...args) => {
if (!this.refreshOptions()) {
return Promise.reject(createMissingQueryClientError())
}
return this.result.refetch(...args)
}
suspense = async (): Promise<QueryObserverResult<TData, TError>> => {
if (!this.syncClient() || !this.observer || !this.queryClient) {
throw createMissingQueryClientError()
}
const options = this.defaultOptions(this.queryClient)
this.observer.setOptions(options)
const optimistic = this.observer.getOptimisticResult(options)
if (options.enabled !== false && optimistic.isStale) {
return this.observer.fetchOptimistic(options)
}
return optimistic
}
private subscribe(): void {
if (!this.observer) {
return
}
if (this.unsubscribe) {
return
}
this.unsubscribe = this.observer.subscribe((next) => {
this.setResult(next)
})
}
private unsubscribeObserver(): void {
this.unsubscribe?.()
this.unsubscribe = undefined
}
private syncClient(): boolean {
const nextClient = this.tryGetQueryClient()
if (!nextClient) {
this.unsubscribeObserver()
this.queryClient = undefined
this.observer = undefined
this.setResult(createPendingQueryResult())
return false
}
if (nextClient === this.queryClient && this.observer) {
return true
}
this.unsubscribeObserver()
this.queryClient = nextClient
const options = this.defaultOptions()
this.observer = new QueryObserver(this.queryClient, options)
this.setResult(this.observer.getOptimisticResult(options))
return true
}
private refreshOptions(): boolean {
if (!this.syncClient() || !this.observer) {
return false
}
const options = this.defaultOptions(this.queryClient)
this.observer.setOptions(options)
this.setResult(this.observer.getCurrentResult())
return true
}
private defaultOptions(
client = this.queryClient,
): DefaultedQueryObserverOptions<
TQueryFnData,
TError,
TData,
TQueryData,
TQueryKey
> {
const resolvedClient = client ?? this.tryGetQueryClient()
if (!resolvedClient) {
throw createMissingQueryClientError()
}
this.queryClient = resolvedClient
const defaulted = resolvedClient.defaultQueryOptions(
readAccessor(this.options),
) as DefaultedQueryObserverOptions<
TQueryFnData,
TError,
TData,
TQueryData,
TQueryKey
>
;(defaulted as { _optimisticResults?: 'optimistic' })._optimisticResults =
'optimistic'
return defaulted
}
}
/**
* Creates a Lit reactive controller that subscribes the host to a single query.
*
* The returned accessor is callable and also exposes `current`, `refetch`,
* `suspense`, and `destroy`. When `options` is a function, it is re-read during
* host updates so query keys and options can follow reactive host state.
*
* If `queryClient` is omitted, the controller resolves the client from the
* nearest connected `QueryClientProvider`.
*
* @param host - The Lit reactive controller host that owns the query
* subscription.
* @param options - Query observer options, or a getter that returns options.
* @param queryClient - Optional explicit query client. Provide this for
* controllers that should not resolve a client from Lit context.
* @returns An accessor for the latest query result with query helper methods.
*
* @example
* ```ts
* import { LitElement, html } from 'lit'
* import { createQueryController } from '@tanstack/lit-query'
*
* class TodosView extends LitElement {
* private readonly todos = createQueryController(this, {
* queryKey: ['todos'],
* queryFn: async () => fetch('/api/todos').then((r) => r.json()),
* })
*
* render() {
* const query = this.todos()
*
* if (query.isPending) return html`Loading...`
* if (query.isError) return html`Error`
*
* return html`<ul>${query.data.map((todo) => html`<li>${todo.title}</li>`)}</ul>`
* }
* }
* ```
*/
export function createQueryController<
TQueryFnData = unknown,
TError = DefaultError,
TData = TQueryFnData,
TQueryData = TQueryFnData,
TQueryKey extends QueryKey = QueryKey,
>(
host: ReactiveControllerHost,
options: Accessor<
CreateQueryOptions<TQueryFnData, TError, TData, TQueryData, TQueryKey>
>,
queryClient?: QueryClient,
): QueryResultAccessor<TData, TError> {
const controller = new QueryController(host, options, queryClient)
return Object.assign(
createValueAccessor(() => controller.current),
{
refetch: controller.refetch,
suspense: controller.suspense,
destroy: () => controller.destroy(),
render: <
TRenderers extends ResultRenderers<QueryObserverResult<TData, TError>>,
>(
renderers: TRenderers,
) => renderResult(controller.current, renderers),
},
)
}