-
Notifications
You must be signed in to change notification settings - Fork 422
Expand file tree
/
Copy pathindex.ts
More file actions
567 lines (519 loc) · 13.3 KB
/
Copy pathindex.ts
File metadata and controls
567 lines (519 loc) · 13.3 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
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
import {
type QueryClient,
type UseQueryResult,
type UseMutationResult,
useQuery,
useMutation,
isCancelledError,
useQueryClient,
type QueryKey,
type UseQueryOptions,
type QueryMeta,
} from '@tanstack/react-query'
import {
type BodyWriteFileApiFilesPathPost,
type PlanDates,
type File,
type Directory,
type PlanOptions,
getFileApiFilesPathGet,
getFilesApiFilesGet,
getEnvironmentsApiEnvironmentsGet,
writeFileApiFilesPathPost,
initiatePlanApiPlanPost,
initiateApplyApiCommandsApplyPost,
cancelPlanApiPlanCancelPost,
getModelsApiModelsGet,
type ModelLineageApiLineageModelNameGet200,
modelLineageApiLineageModelNameGet,
type ColumnLineageApiLineageModelNameColumnsColumnNameGet200,
columnLineageApiLineageModelNameColumnsColumnNameGet,
fetchdfApiCommandsFetchdfPost,
renderApiCommandsRenderPost,
type RenderInput,
type Query,
evaluateApiCommandsEvaluatePost,
type EvaluateInput,
getTableDiffApiTableDiffGet,
type GetTableDiffApiTableDiffGetParams,
type TableDiff,
type FetchdfInput,
type Meta,
getApiMetaApiMetaGet,
type GetModelsApiModelsGet200,
type ApiExceptionPayload,
deleteEnvironmentApiEnvironmentsEnvironmentDelete as apiDeleteEnvironment,
type Environments,
type PlanOverviewStageTracker,
type PlanApplyStageTracker,
type BodyInitiateApplyApiCommandsApplyPostCategories,
type Model,
getModelApiModelsNameGet,
getApiModulesApiModulesGet,
type Modules,
type ColumnLineageApiLineageModelNameColumnsColumnNameGetParams,
} from './client'
import {
useNotificationCenter,
type ErrorIDE,
EnumErrorKey,
type ErrorKey,
} from '~/library/pages/root/context/notificationCenter'
import { useState } from 'react'
import { isNotNil } from '@utils/index'
export interface ApiOptions {
delay?: number
trigger?: string
removeTimeoutErrorAfter?: number
}
export interface ApiQueryOptions {
enabled?: boolean
}
export interface ApiQueryMeta extends QueryMeta {
onError: (error: ApiExceptionPayload) => void
onSuccess: () => void
}
const DELAY_1_MIN = 60 * 1000
const DELAY_5_MIN = 5 * DELAY_1_MIN
const DELAY_10_MIN = 10 * DELAY_1_MIN
export type UseQueryWithTimeoutOptions<
TData = any,
TError extends ApiExceptionPayload = ApiExceptionPayload,
> = UseQueryResult<TData, TError> & {
cancel: () => void
isTimeout: boolean
}
export function useApiModules(
options?: ApiOptions,
): UseQueryWithTimeoutOptions<Modules[]> {
return useQueryWithTimeout(
{
queryKey: ['/api/modules'],
queryFn: getApiModulesApiModulesGet,
enabled: true,
},
{
...options,
errorKey: EnumErrorKey.Modules,
trigger: 'API -> useApiModules',
},
)
}
export function useApiMeta(
options?: ApiOptions,
): UseQueryWithTimeoutOptions<Meta> {
return useQueryWithTimeout(
{
queryKey: ['/api/meta'],
queryFn: getApiMetaApiMetaGet,
enabled: true,
},
{
...options,
errorKey: EnumErrorKey.Meta,
trigger: 'API -> useApiMeta',
},
)
}
export function useApiModels(
options?: ApiOptions,
): UseQueryWithTimeoutOptions<GetModelsApiModelsGet200> {
return useQueryWithTimeout(
{
queryKey: ['/api/models'],
queryFn: getModelsApiModelsGet,
},
{
...options,
errorKey: EnumErrorKey.Models,
trigger: 'API -> useApiModels',
},
)
}
export function useApiModel(
modelName: string,
options?: ApiOptions,
): UseQueryWithTimeoutOptions<Model> {
return useQueryWithTimeout(
{
queryKey: ['/api/models', modelName],
queryFn: async ({ signal }) =>
await getModelApiModelsNameGet(modelName, { signal }),
},
{
...options,
errorKey: EnumErrorKey.Models,
trigger: 'API -> useApiModel',
},
)
}
export function useApiFiles(
options?: ApiOptions,
): UseQueryWithTimeoutOptions<Directory> {
return useQueryWithTimeout(
{
queryKey: ['/api/files'],
queryFn: getFilesApiFilesGet,
},
{
...options,
errorKey: EnumErrorKey.FileExplorer,
trigger: 'API -> useApiFiles',
},
)
}
export function useApiFileByPath(
path: string,
options?: ApiOptions,
): UseQueryWithTimeoutOptions<File> {
return useQueryWithTimeout(
{
queryKey: ['/api/files', path],
queryFn: async ({ signal }) =>
await getFileApiFilesPathGet(path, { signal }),
},
{
...options,
errorKey: EnumErrorKey.FileExplorer,
trigger: 'API -> useApiFileByPath',
},
)
}
export function useApiModelLineage(
modelName: string,
options?: ApiOptions,
): UseQueryWithTimeoutOptions<ModelLineageApiLineageModelNameGet200> {
return useQueryWithTimeout(
{
queryKey: ['/api/lineage', modelName],
queryFn: async ({ signal }) =>
await modelLineageApiLineageModelNameGet(modelName, { signal }),
},
{
...options,
errorKey: EnumErrorKey.ModelLineage,
trigger: 'API -> useApiModelLineage',
},
)
}
export function useApiColumnLineage(
model: string,
column: string,
options?: ApiOptions,
params?: ColumnLineageApiLineageModelNameColumnsColumnNameGetParams,
): UseQueryWithTimeoutOptions<ColumnLineageApiLineageModelNameColumnsColumnNameGet200> {
return useQueryWithTimeout(
{
queryKey: ['/api/lineage', model, column],
queryFn: async ({ signal }) =>
await columnLineageApiLineageModelNameColumnsColumnNameGet(
model,
column,
params,
{
signal,
},
),
},
{
...options,
errorKey: EnumErrorKey.ColumnLineage,
trigger: 'API -> useApiColumnLineage',
},
)
}
export function useApiEnvironments(
options?: ApiOptions,
): UseQueryWithTimeoutOptions<Environments> {
return useQueryWithTimeout<Environments, ErrorIDE>(
{
queryKey: ['/api/environments'],
queryFn: getEnvironmentsApiEnvironmentsGet,
},
{
...options,
errorKey: EnumErrorKey.Environments,
trigger: 'API -> useApiEnvironments',
},
)
}
export { apiDeleteEnvironment }
export function useApiCancelPlan(
options?: ApiOptions,
): UseQueryWithTimeoutOptions {
return useQueryWithTimeout(
{
queryKey: ['/api/commands/apply'],
queryFn: cancelPlanApiPlanCancelPost,
},
{
...options,
errorKey: EnumErrorKey.CancelPlan,
trigger: 'API -> useApiCancelPlan',
},
)
}
export function useApiPlanRun(
environment: string,
inputs?: {
planDates?: PlanDates
planOptions?: PlanOptions
categories?: BodyInitiateApplyApiCommandsApplyPostCategories
},
options?: ApiOptions,
): UseQueryWithTimeoutOptions<PlanOverviewStageTracker> {
return useQueryWithTimeout(
{
queryKey: ['/api/plan', environment],
async queryFn({ signal }) {
return await initiatePlanApiPlanPost(
{
environment,
plan_dates: inputs?.planDates,
plan_options: inputs?.planOptions,
categories: inputs?.categories,
},
{ signal },
)
},
},
{
...options,
errorKey: EnumErrorKey.RunPlan,
trigger: 'API -> useApiPlanRun',
},
)
}
export function useApiPlanApply(
environment: string,
inputs?: {
planDates?: PlanDates
planOptions?: PlanOptions
categories?: BodyInitiateApplyApiCommandsApplyPostCategories
},
options?: ApiOptions,
): UseQueryWithTimeoutOptions<PlanApplyStageTracker> {
return useQueryWithTimeout(
{
queryKey: ['/api/commands/apply', environment],
async queryFn({ signal }) {
return await initiateApplyApiCommandsApplyPost(
{
environment,
plan_dates: inputs?.planDates,
plan_options: inputs?.planOptions,
categories: inputs?.categories,
},
{ signal },
)
},
},
{
...options,
errorKey: EnumErrorKey.ApplyPlan,
trigger: 'API -> useApiPlanApply',
},
)
}
export function useApiFetchdf(
inputs: FetchdfInput,
options?: ApiOptions,
): UseQueryWithTimeoutOptions<unknown> {
return useQueryWithTimeout(
{
queryKey: ['/api/commands/fetchd'],
queryFn: async ({ signal }) =>
await fetchdfApiCommandsFetchdfPost(inputs, { signal }),
},
{
...options,
errorKey: EnumErrorKey.Fetchdf,
trigger: 'API -> useApiFetchdf',
delay: DELAY_10_MIN,
},
)
}
export function useApiRender(
inputs: RenderInput,
options?: ApiOptions,
): UseQueryWithTimeoutOptions<Query> {
return useQueryWithTimeout(
{
queryKey: ['/api/commands/render'],
queryFn: async ({ signal }) =>
await renderApiCommandsRenderPost(inputs, { signal }),
},
{
...options,
errorKey: EnumErrorKey.RenderQuery,
trigger: 'API -> useApiRender',
delay: DELAY_10_MIN,
},
)
}
export function useApiTableDiff(
inputs: GetTableDiffApiTableDiffGetParams,
options?: ApiOptions,
): UseQueryWithTimeoutOptions<TableDiff> {
return useQueryWithTimeout(
{
queryKey: ['/api/commands/table_diff'],
queryFn: async ({ signal }) =>
await getTableDiffApiTableDiffGet(inputs, { signal }),
},
{
...options,
errorKey: EnumErrorKey.TableDiff,
trigger: 'API -> useApiTableDiff',
delay: DELAY_10_MIN,
},
)
}
export function useApiEvaluate(
inputs: EvaluateInput,
options?: ApiOptions,
): UseQueryWithTimeoutOptions<unknown> {
return useQueryWithTimeout(
{
queryKey: ['/api/commands/evaluate'],
queryFn: async ({ signal }) =>
await evaluateApiCommandsEvaluatePost(inputs, { signal }),
},
{
...options,
errorKey: EnumErrorKey.EvaluateModel,
trigger: 'API -> useApiEvaluate',
delay: DELAY_10_MIN,
},
)
}
export function useMutationApiSaveFile(
client: QueryClient,
): UseMutationResult<
File,
unknown,
{ path: string; body: BodyWriteFileApiFilesPathPost },
void
> {
const { addError } = useNotificationCenter()
return useMutation({
mutationFn: async ({ path, body }) =>
await writeFileApiFilesPathPost(path, body),
onError(error: ErrorIDE) {
addError(EnumErrorKey.SaveFile, error)
},
async onMutate({ path }) {
await client.cancelQueries({
queryKey: ['/api/files', path],
})
},
})
}
function useQueryWithTimeout<
TQueryFnData = unknown,
TError extends ApiExceptionPayload = ApiExceptionPayload,
TData = TQueryFnData,
TQueryKey extends QueryKey = QueryKey,
>(
options: UseQueryOptions<TQueryFnData, TError, TData, TQueryKey> & {
meta?: ApiQueryMeta
queryKey: TQueryKey
},
{
delay = DELAY_5_MIN,
removeTimeoutErrorAfter,
errorKey = EnumErrorKey.API,
trigger,
}: ApiOptions & { errorKey: ErrorKey },
): UseQueryWithTimeoutOptions<TData, TError> {
const key = options.queryKey.join(' -> ')
const queryClient = useQueryClient()
const { addError } = useNotificationCenter()
const [isTimeout, setIsTimeout] = useState(false)
let timeoutId: Optional<ReturnType<typeof setTimeout>>
let timeoutCallback: Optional<() => void> = function timeoutCallback(): void {
console.log(
`[REQUEST TIMEOUT] ${key} id: ${String(
timeoutId,
)} timed out after ${delay}ms`,
)
const { removeError } = addError(errorKey, {
message: 'Request timed out',
description: `Request ${key} with timeoutId: ${String(
timeoutId,
)} timed out after ${delay}ms`,
timestamp: Date.now(),
origin: 'useQueryTimeout',
trigger,
})
setIsTimeout(true)
void cancel()
if (isNotNil(removeTimeoutErrorAfter)) {
setTimeout(() => removeError(), removeTimeoutErrorAfter)
}
}
function timeoutClear(): void {
console.log(
`[CLEAR TIMEOUT] ${key} id: ${String(timeoutId)} at ${Date.now()}`,
)
clearTimeout(timeoutId)
timeoutId = undefined
timeoutCallback = undefined
}
function timeout(): void {
timeoutId = setTimeout(() => {
timeoutCallback?.()
}, delay)
console.log(
`[START TIMEOUT] ${key} id: ${String(timeoutId)} at ${Date.now()}`,
)
}
function cancel(): void {
timeoutClear()
void queryClient.cancelQueries({ queryKey: options.queryKey })
console.log(`[REQUEST CANCELED] ${key} at ${Date.now()}`)
}
function onError(err: TError & { name?: string }): void {
timeoutClear()
if (isCancelledError(err) || err.name === 'AbortError') {
console.log(
`[REQUEST ABORTED] ${key} aborted by React Query at ${Date.now()}`,
)
} else {
console.log(`[REQUEST FAILED] ${key} failed at ${Date.now()}`)
addError(errorKey, err)
}
}
function onSuccess(): void {
timeoutClear()
console.log(`[REQUEST COMPLETED] ${key} completed at ${Date.now()}`)
}
async function queryFn(...args: any[]): Promise<TQueryFnData> {
timeout()
return (options.queryFn as (...args: any[]) => Promise<TQueryFnData>)(
...args,
)
}
const q = useQuery<TQueryFnData, TError, TData, TQueryKey>({
gcTime: 0,
enabled: false,
queryKey: options.queryKey,
queryFn,
meta: {
...options.meta,
onError,
onSuccess,
},
})
return {
...q,
refetch: async (...args: any[]) =>
new Promise(resolve => {
q.refetch(...args, { throwOnError: true })
.then(resolve)
.catch(err => err)
}),
cancel,
isTimeout,
}
}