mobx-tanstack-query-api 0.0.56 → 0.0.58
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/runtime/endpoint-query.d.ts +7 -8
- package/runtime/endpoint-query.d.ts.map +1 -1
- package/runtime/endpoint-query.js +34 -34
- package/runtime/endpoint-query.types.d.ts +6 -6
- package/runtime/endpoint-query.types.d.ts.map +1 -1
- package/runtime/endpoint.d.ts +4 -2
- package/runtime/endpoint.d.ts.map +1 -1
- package/runtime/endpoint.js +2 -0
package/package.json
CHANGED
|
@@ -1,15 +1,14 @@
|
|
|
1
|
-
import { QueryFunctionContext } from '@tanstack/query-core';
|
|
1
|
+
import { DefaultError, QueryFunctionContext, QueryObserverResult } from '@tanstack/query-core';
|
|
2
2
|
import { Query } from 'mobx-tanstack-query';
|
|
3
|
-
import {
|
|
3
|
+
import { MaybeFalsy } from 'yummies/utils/types';
|
|
4
4
|
import { EndpointQueryClient } from './endpoint-query-client.js';
|
|
5
5
|
import { EndpointQueryOptions } from './endpoint-query.types.js';
|
|
6
6
|
import { AnyEndpoint } from './endpoint.types.js';
|
|
7
|
-
|
|
8
|
-
export declare class EndpointQuery<TResponse extends AnyHttpResponse, TInput extends AnyObject, TOutput = TResponse> extends Query<TResponse, TResponse['error'], TOutput, TResponse, any[]> {
|
|
7
|
+
export declare class EndpointQuery<TEndpoint extends AnyEndpoint, TQueryFnData = unknown, TError = DefaultError, TData = TQueryFnData, TQueryData = TQueryFnData> extends Query<TQueryFnData, TError, TData, TQueryData> {
|
|
9
8
|
private endpoint;
|
|
10
|
-
response:
|
|
11
|
-
constructor(endpoint: AnyEndpoint, queryClient: EndpointQueryClient, { input: getInput,
|
|
12
|
-
|
|
13
|
-
protected getInputFromContext(ctx: QueryFunctionContext<any, any>):
|
|
9
|
+
response: TEndpoint['__response_type'] | null;
|
|
10
|
+
constructor(endpoint: AnyEndpoint, queryClient: EndpointQueryClient, { input: getInput, uniqKey, ...queryOptions }: EndpointQueryOptions<TEndpoint, TQueryFnData, TError, TData, TQueryData>);
|
|
11
|
+
start(input: MaybeFalsy<TEndpoint['__input_type']>): Promise<QueryObserverResult<TData, TError>>;
|
|
12
|
+
protected getInputFromContext(ctx: QueryFunctionContext<any, any>): TEndpoint["__input_type"];
|
|
14
13
|
}
|
|
15
14
|
//# sourceMappingURL=endpoint-query.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"endpoint-query.d.ts","sourceRoot":"","sources":["../../src/runtime/endpoint-query.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"endpoint-query.d.ts","sourceRoot":"","sources":["../../src/runtime/endpoint-query.ts"],"names":[],"mappings":"AAEA,OAAO,EACL,YAAY,EACZ,oBAAoB,EACpB,mBAAmB,EAEpB,MAAM,sBAAsB,CAAC;AAE9B,OAAO,EAAE,KAAK,EAAE,MAAM,qBAAqB,CAAC;AAC5C,OAAO,EAAoB,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAEnE,OAAO,EAAE,mBAAmB,EAAE,MAAM,4BAA4B,CAAC;AACjE,OAAO,EAEL,oBAAoB,EAErB,MAAM,2BAA2B,CAAC;AACnC,OAAO,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAGlD,qBAAa,aAAa,CACxB,SAAS,SAAS,WAAW,EAC7B,YAAY,GAAG,OAAO,EACtB,MAAM,GAAG,YAAY,EACrB,KAAK,GAAG,YAAY,EACpB,UAAU,GAAG,YAAY,CACzB,SAAQ,KAAK,CAAC,YAAY,EAAE,MAAM,EAAE,KAAK,EAAE,UAAU,CAAC;IAIpD,OAAO,CAAC,QAAQ;IAHlB,QAAQ,EAAE,SAAS,CAAC,iBAAiB,CAAC,GAAG,IAAI,CAAQ;gBAG3C,QAAQ,EAAE,WAAW,EAC7B,WAAW,EAAE,mBAAmB,EAChC,EACE,KAAK,EAAE,QAAQ,EACf,OAAO,EACP,GAAG,YAAY,EAChB,EAAE,oBAAoB,CAAC,SAAS,EAAE,YAAY,EAAE,MAAM,EAAE,KAAK,EAAE,UAAU,CAAC;IAgFvE,KAAK,CACT,KAAK,EAAE,UAAU,CAAC,SAAS,CAAC,cAAc,CAAC,CAAC,GAC3C,OAAO,CAAC,mBAAmB,CAAC,KAAK,EAAE,MAAM,CAAC,CAAC;IAI9C,SAAS,CAAC,mBAAmB,CAAC,GAAG,EAAE,oBAAoB,CAAC,GAAG,EAAE,GAAG,CAAC,GACzB,SAAS,CAAC,cAAc,CAAC;CAElE"}
|
|
@@ -1,28 +1,12 @@
|
|
|
1
|
+
/* eslint-disable @typescript-eslint/no-use-before-define */
|
|
1
2
|
/* eslint-disable @typescript-eslint/ban-ts-comment */
|
|
2
|
-
import { skipToken } from '@tanstack/query-core';
|
|
3
|
-
import { makeObservable, observable, runInAction
|
|
3
|
+
import { skipToken, } from '@tanstack/query-core';
|
|
4
|
+
import { makeObservable, observable, runInAction } from 'mobx';
|
|
4
5
|
import { Query } from 'mobx-tanstack-query';
|
|
5
|
-
const buildOptionsFromInput = (endpoint, input, uniqKey) => {
|
|
6
|
-
const { requiredParams } = endpoint.configuration;
|
|
7
|
-
let hasRequiredParams = false;
|
|
8
|
-
if (requiredParams.length > 0) {
|
|
9
|
-
hasRequiredParams =
|
|
10
|
-
!!input && requiredParams.every((param) => param in input);
|
|
11
|
-
}
|
|
12
|
-
else {
|
|
13
|
-
hasRequiredParams = true;
|
|
14
|
-
}
|
|
15
|
-
return {
|
|
16
|
-
enabled: hasRequiredParams,
|
|
17
|
-
queryKey: hasRequiredParams
|
|
18
|
-
? endpoint.getQueryKey(input || {}, uniqKey)
|
|
19
|
-
: skipToken,
|
|
20
|
-
};
|
|
21
|
-
};
|
|
22
6
|
export class EndpointQuery extends Query {
|
|
23
7
|
endpoint;
|
|
24
8
|
response = null;
|
|
25
|
-
constructor(endpoint, queryClient, { input: getInput,
|
|
9
|
+
constructor(endpoint, queryClient, { input: getInput, uniqKey, ...queryOptions }) {
|
|
26
10
|
super({
|
|
27
11
|
...queryOptions,
|
|
28
12
|
queryClient,
|
|
@@ -39,22 +23,24 @@ export class EndpointQuery extends Query {
|
|
|
39
23
|
const willEnableManually = queryOptions.enabled === false;
|
|
40
24
|
const input = (getInput?.() || {});
|
|
41
25
|
const builtOptions = buildOptionsFromInput(endpoint, input, uniqKey);
|
|
42
|
-
const dynamicOuterOptions = getDynamicOptions?.(query);
|
|
26
|
+
// const dynamicOuterOptions = getDynamicOptions?.(query);
|
|
43
27
|
let isEnabled = false;
|
|
44
28
|
if (willEnableManually) {
|
|
45
|
-
if (dynamicOuterOptions?.enabled != null) {
|
|
46
|
-
|
|
47
|
-
}
|
|
29
|
+
// if (dynamicOuterOptions?.enabled != null) {
|
|
30
|
+
// isEnabled = dynamicOuterOptions.enabled;
|
|
31
|
+
// }
|
|
48
32
|
}
|
|
49
33
|
else {
|
|
50
|
-
const outerDynamicEnabled =
|
|
51
|
-
|
|
52
|
-
|
|
34
|
+
// const outerDynamicEnabled =
|
|
35
|
+
// dynamicOuterOptions?.enabled == null ||
|
|
36
|
+
// !!dynamicOuterOptions.enabled;
|
|
37
|
+
// isEnabled = builtOptions.enabled && outerDynamicEnabled;
|
|
38
|
+
isEnabled = builtOptions.enabled;
|
|
53
39
|
}
|
|
54
40
|
return {
|
|
55
41
|
...query.options,
|
|
56
42
|
...builtOptions,
|
|
57
|
-
...dynamicOuterOptions,
|
|
43
|
+
// ...dynamicOuterOptions,
|
|
58
44
|
enabled: isEnabled,
|
|
59
45
|
};
|
|
60
46
|
},
|
|
@@ -85,16 +71,30 @@ export class EndpointQuery extends Query {
|
|
|
85
71
|
},
|
|
86
72
|
});
|
|
87
73
|
this.endpoint = endpoint;
|
|
88
|
-
observable.ref(this, '
|
|
74
|
+
observable.ref(this, 'response');
|
|
89
75
|
makeObservable(this);
|
|
90
76
|
}
|
|
91
|
-
async
|
|
92
|
-
|
|
93
|
-
await when(() => !this.result.isFetching);
|
|
94
|
-
// @ts-ignore
|
|
95
|
-
return this.result.data;
|
|
77
|
+
async start(input) {
|
|
78
|
+
return await super.start(buildOptionsFromInput(this.endpoint, input));
|
|
96
79
|
}
|
|
97
80
|
getInputFromContext(ctx) {
|
|
98
81
|
return (ctx.queryKey.at(-2) || {});
|
|
99
82
|
}
|
|
100
83
|
}
|
|
84
|
+
const buildOptionsFromInput = (endpoint, input, uniqKey) => {
|
|
85
|
+
const { requiredParams } = endpoint.configuration;
|
|
86
|
+
let hasRequiredParams = false;
|
|
87
|
+
if (requiredParams.length > 0) {
|
|
88
|
+
hasRequiredParams =
|
|
89
|
+
!!input && requiredParams.every((param) => param in input);
|
|
90
|
+
}
|
|
91
|
+
else {
|
|
92
|
+
hasRequiredParams = true;
|
|
93
|
+
}
|
|
94
|
+
return {
|
|
95
|
+
enabled: hasRequiredParams,
|
|
96
|
+
queryKey: hasRequiredParams
|
|
97
|
+
? endpoint.getQueryKey(input || {}, uniqKey)
|
|
98
|
+
: skipToken,
|
|
99
|
+
};
|
|
100
|
+
};
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { DefaultError } from '@tanstack/query-core';
|
|
2
|
+
import { QueryConfig } from 'mobx-tanstack-query';
|
|
2
3
|
import { FnValue } from 'yummies/common';
|
|
3
4
|
import { AnyObject, Maybe, MaybeFalsy } from 'yummies/utils/types';
|
|
4
|
-
import {
|
|
5
|
+
import { AnyEndpoint } from './endpoint.types.js';
|
|
5
6
|
export interface EndpointQueryMeta {
|
|
6
7
|
endpointId: string;
|
|
7
8
|
endpointQuery: true;
|
|
@@ -11,10 +12,9 @@ export interface EndpointQueryMeta {
|
|
|
11
12
|
pathDeclaration: string;
|
|
12
13
|
}
|
|
13
14
|
export type EndpointQueryUnitKey = Maybe<FnValue<string | number | AnyObject | boolean>>;
|
|
14
|
-
export type EndpointQueryOptions<
|
|
15
|
-
input?: () => MaybeFalsy<
|
|
16
|
-
} & Omit<QueryConfig<
|
|
15
|
+
export type EndpointQueryOptions<TEndpoint extends AnyEndpoint, TQueryFnData = unknown, TError = DefaultError, TData = TQueryFnData, TQueryData = TQueryFnData> = {
|
|
16
|
+
input?: () => MaybeFalsy<TEndpoint['__input_type']>;
|
|
17
|
+
} & Omit<QueryConfig<TQueryFnData, TError, TData, TQueryData>, 'options' | 'queryFn' | 'queryClient' | 'queryKey'> & {
|
|
17
18
|
uniqKey?: EndpointQueryUnitKey;
|
|
18
|
-
options?: (query: NoInfer<Query<NoInfer<TResponse>, NoInfer<TResponse['error']>, NoInfer<TOutput>, NoInfer<TResponse>, NoInfer<any[]>>>) => Omit<QueryDynamicOptions<TResponse, TResponse['error'], TOutput, TResponse, any[]>, 'queryKey' | 'queryFn' | 'queryHash' | '_defaulted' | 'experimental_prefetchInRender' | '_optimisticResults'>;
|
|
19
19
|
};
|
|
20
20
|
//# sourceMappingURL=endpoint-query.types.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"endpoint-query.types.d.ts","sourceRoot":"","sources":["../../src/runtime/endpoint-query.types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"endpoint-query.types.d.ts","sourceRoot":"","sources":["../../src/runtime/endpoint-query.types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAC;AACpD,OAAO,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAClD,OAAO,EAAE,OAAO,EAAE,MAAM,gBAAgB,CAAC;AACzC,OAAO,EAAE,SAAS,EAAE,KAAK,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAEnE,OAAO,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAElD,MAAM,WAAW,iBAAiB;IAChC,UAAU,EAAE,MAAM,CAAC;IACnB,aAAa,EAAE,IAAI,CAAC;IACpB,IAAI,EAAE,MAAM,EAAE,CAAC;IACf,WAAW,EAAE,MAAM,CAAC;IACpB,IAAI,EAAE,MAAM,EAAE,CAAC;IACf,eAAe,EAAE,MAAM,CAAC;CACzB;AAED,MAAM,MAAM,oBAAoB,GAAG,KAAK,CACtC,OAAO,CAAC,MAAM,GAAG,MAAM,GAAG,SAAS,GAAG,OAAO,CAAC,CAC/C,CAAC;AAEF,MAAM,MAAM,oBAAoB,CAC9B,SAAS,SAAS,WAAW,EAC7B,YAAY,GAAG,OAAO,EACtB,MAAM,GAAG,YAAY,EACrB,KAAK,GAAG,YAAY,EACpB,UAAU,GAAG,YAAY,IACvB;IACF,KAAK,CAAC,EAAE,MAAM,UAAU,CAAC,SAAS,CAAC,cAAc,CAAC,CAAC,CAAC;CACrD,GAAG,IAAI,CACN,WAAW,CAAC,YAAY,EAAE,MAAM,EAAE,KAAK,EAAE,UAAU,CAAC,EACpD,SAAS,GAAG,SAAS,GAAG,aAAa,GAAG,UAAU,CACnD,GAAG;IACA,OAAO,CAAC,EAAE,oBAAoB,CAAC;CAChC,CAAC"}
|
package/runtime/endpoint.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { InvalidateOptions, InvalidateQueryFilters } from '@tanstack/query-core';
|
|
1
|
+
import { DefaultError, InvalidateOptions, InvalidateQueryFilters } from '@tanstack/query-core';
|
|
2
2
|
import { AllPropertiesOptional, AnyObject } from 'yummies/utils/types';
|
|
3
3
|
import { EndpointMutation, EndpointMutationOptions } from './endpoint-mutation.js';
|
|
4
4
|
import { EndpointQueryClient } from './endpoint-query-client.js';
|
|
@@ -14,6 +14,8 @@ export declare class Endpoint<TResponse extends HttpResponse<any, any>, TInput e
|
|
|
14
14
|
protected queryClient: EndpointQueryClient;
|
|
15
15
|
protected http: HttpClient;
|
|
16
16
|
endpointId: string;
|
|
17
|
+
__input_type: TInput;
|
|
18
|
+
__response_type: TResponse;
|
|
17
19
|
meta: TMetaData;
|
|
18
20
|
constructor(configuration: EndpointConfiguration<NoInfer<TInput>, TMetaData>, queryClient: EndpointQueryClient, http: HttpClient);
|
|
19
21
|
getFullUrl(...args: AllPropertiesOptional<TInput> extends true ? [input?: TInput] : [input: TInput]): string;
|
|
@@ -38,6 +40,6 @@ export declare class Endpoint<TResponse extends HttpResponse<any, any>, TInput e
|
|
|
38
40
|
queryKeyIndex?: number;
|
|
39
41
|
}, options?: InvalidateOptions): Promise<void>;
|
|
40
42
|
toMutation<TOutput = TResponse, TMutationMeta extends AnyObject | void = void>(options: EndpointMutationOptions<TOutput, TInput, TResponse, TMutationMeta>): EndpointMutation<TOutput, TInput, TResponse, TMutationMeta>;
|
|
41
|
-
toQuery<
|
|
43
|
+
toQuery<TQueryFnData = TResponse, TError = DefaultError, TData = TResponse['data'], TQueryData = TResponse['data']>(options: EndpointQueryOptions<this, TQueryFnData, TError, TData, TQueryData>): EndpointQuery<this, TQueryFnData, TError, TData, TQueryData>;
|
|
42
44
|
}
|
|
43
45
|
//# sourceMappingURL=endpoint.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"endpoint.d.ts","sourceRoot":"","sources":["../../src/runtime/endpoint.ts"],"names":[],"mappings":"AACA,OAAO,EACL,iBAAiB,EACjB,sBAAsB,EACvB,MAAM,sBAAsB,CAAC;AAE9B,OAAO,EAAE,qBAAqB,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAC;AAEvE,OAAO,EACL,gBAAgB,EAChB,uBAAuB,EACxB,MAAM,wBAAwB,CAAC;AAChC,OAAO,EAAE,mBAAmB,EAAE,MAAM,4BAA4B,CAAC;AACjE,OAAO,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAC;AACpD,OAAO,EACL,oBAAoB,EACpB,oBAAoB,EACrB,MAAM,2BAA2B,CAAC;AACnC,OAAO,EAAE,qBAAqB,EAAE,MAAM,qBAAqB,CAAC;AAC5D,OAAO,KAAK,EAAE,UAAU,EAAE,YAAY,EAAE,MAAM,kBAAkB,CAAC;AAEjE,MAAM,WAAW,QAAQ,CACvB,SAAS,SAAS,YAAY,CAAC,GAAG,EAAE,GAAG,CAAC,EACxC,MAAM,SAAS,SAAS,EACxB,SAAS,SAAS,SAAS,GAAG,SAAS;IAEvC,CACE,GAAG,IAAI,EAAE,qBAAqB,CAAC,MAAM,CAAC,SAAS,IAAI,GAC/C,CAAC,KAAK,CAAC,EAAE,MAAM,CAAC,GAChB,CAAC,KAAK,EAAE,MAAM,CAAC,GAClB,UAAU,CAAC,QAAQ,CAAC,SAAS,EAAE,MAAM,EAAE,SAAS,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC;CAClE;AAED,qBAAa,QAAQ,CACnB,SAAS,SAAS,YAAY,CAAC,GAAG,EAAE,GAAG,CAAC,EACxC,MAAM,SAAS,SAAS,EACxB,SAAS,SAAS,SAAS,GAAG,SAAS;
|
|
1
|
+
{"version":3,"file":"endpoint.d.ts","sourceRoot":"","sources":["../../src/runtime/endpoint.ts"],"names":[],"mappings":"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"}
|