floppy-disk 2.5.0-beta.2 → 2.5.0
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/esm/preact/create-mutation.d.ts +2 -2
- package/esm/preact/create-mutation.js +3 -3
- package/esm/preact/create-query.d.ts +45 -33
- package/esm/preact/create-query.js +10 -10
- package/esm/preact/create-stores.d.ts +1 -2
- package/esm/react/create-mutation.d.ts +2 -2
- package/esm/react/create-mutation.js +3 -3
- package/esm/react/create-query.d.ts +45 -33
- package/esm/react/create-query.js +10 -10
- package/esm/react/create-stores.d.ts +1 -2
- package/esm/utils/index.d.ts +1 -0
- package/lib/preact/create-mutation.d.ts +2 -2
- package/lib/preact/create-mutation.js +3 -3
- package/lib/preact/create-query.d.ts +45 -33
- package/lib/preact/create-query.js +10 -10
- package/lib/preact/create-stores.d.ts +1 -2
- package/lib/react/create-mutation.d.ts +2 -2
- package/lib/react/create-mutation.js +3 -3
- package/lib/react/create-query.d.ts +45 -33
- package/lib/react/create-query.js +10 -10
- package/lib/react/create-stores.d.ts +1 -2
- package/lib/utils/index.d.ts +1 -0
- package/package.json +1 -1
|
@@ -14,9 +14,9 @@ const INITIAL_QUERY_STATE = {
|
|
|
14
14
|
isOptimisticData: false,
|
|
15
15
|
data: undefined,
|
|
16
16
|
response: undefined,
|
|
17
|
-
responseUpdatedAt:
|
|
17
|
+
responseUpdatedAt: undefined,
|
|
18
18
|
error: undefined,
|
|
19
|
-
errorUpdatedAt:
|
|
19
|
+
errorUpdatedAt: undefined,
|
|
20
20
|
retryCount: 0,
|
|
21
21
|
isGoingToRetry: false,
|
|
22
22
|
pageParam: undefined,
|
|
@@ -53,11 +53,11 @@ export const createQuery = (queryFn, options = {}) => {
|
|
|
53
53
|
return { shouldRetry: retryCount < maxRetryCount, delay };
|
|
54
54
|
};
|
|
55
55
|
const forceFetch = () => new Promise((resolve) => {
|
|
56
|
+
const state = get();
|
|
56
57
|
const responseAllPages = [];
|
|
57
|
-
const newPageParams = [
|
|
58
|
-
let pageParam =
|
|
58
|
+
const newPageParams = [state.pageParams[0]];
|
|
59
|
+
let pageParam = state.pageParams[0];
|
|
59
60
|
clearTimeout(refetchIntervalTimeoutId.get(keyHash));
|
|
60
|
-
const state = get();
|
|
61
61
|
const { isWaiting, isLoading, pageParams } = state;
|
|
62
62
|
if (isWaiting || !getValueOrComputedValue(enabled, key))
|
|
63
63
|
return resolve(state);
|
|
@@ -112,7 +112,7 @@ export const createQuery = (queryFn, options = {}) => {
|
|
|
112
112
|
response,
|
|
113
113
|
responseUpdatedAt: Date.now(),
|
|
114
114
|
error: undefined,
|
|
115
|
-
errorUpdatedAt:
|
|
115
|
+
errorUpdatedAt: undefined,
|
|
116
116
|
retryCount: 0,
|
|
117
117
|
pageParam: newPageParam,
|
|
118
118
|
pageParams: newPageParams,
|
|
@@ -177,7 +177,7 @@ export const createQuery = (queryFn, options = {}) => {
|
|
|
177
177
|
});
|
|
178
178
|
const fetch = () => {
|
|
179
179
|
const { responseUpdatedAt } = get();
|
|
180
|
-
const isStale = Date.now() >
|
|
180
|
+
const isStale = Date.now() > (responseUpdatedAt || 0) + staleTime;
|
|
181
181
|
if (!isStale)
|
|
182
182
|
return;
|
|
183
183
|
forceFetch();
|
|
@@ -335,7 +335,7 @@ export const createQuery = (queryFn, options = {}) => {
|
|
|
335
335
|
isSuccess: true,
|
|
336
336
|
isError: false,
|
|
337
337
|
response,
|
|
338
|
-
responseUpdatedAt: skipRevalidation ? Date.now() :
|
|
338
|
+
responseUpdatedAt: skipRevalidation ? Date.now() : undefined,
|
|
339
339
|
data: select(response, { key: key, data: undefined }),
|
|
340
340
|
pageParam: newPageParam,
|
|
341
341
|
pageParams: [undefined, newPageParam],
|
|
@@ -355,14 +355,14 @@ export const createQuery = (queryFn, options = {}) => {
|
|
|
355
355
|
useQuery.invalidate = () => {
|
|
356
356
|
useQuery.getStores().forEach((store) => {
|
|
357
357
|
const { get, set, getSubscribers } = store;
|
|
358
|
-
set({ responseUpdatedAt:
|
|
358
|
+
set({ responseUpdatedAt: undefined });
|
|
359
359
|
if (getSubscribers().size > 0)
|
|
360
360
|
get().forceFetch();
|
|
361
361
|
});
|
|
362
362
|
};
|
|
363
363
|
useQuery.invalidateSpecificKey = (key) => {
|
|
364
364
|
const { get, set, getSubscribers } = useQuery.getStore(key);
|
|
365
|
-
set({ responseUpdatedAt:
|
|
365
|
+
set({ responseUpdatedAt: undefined });
|
|
366
366
|
if (getSubscribers().size > 0)
|
|
367
367
|
get().forceFetch();
|
|
368
368
|
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
+
import { Maybe } from '../utils';
|
|
1
2
|
import { InitStoreOptions, InitStoreReturn, SelectDeps, SetStoreData, StoreData, Subscribers } from '../vanilla';
|
|
2
3
|
import { WatchProps } from './create-store';
|
|
3
|
-
type Maybe<T> = T | null | undefined;
|
|
4
4
|
export type StoreKey = Record<string, any> | undefined;
|
|
5
5
|
export type StoresInitializer<TKey extends StoreKey = StoreKey, T extends StoreData = StoreData> = (api: {
|
|
6
6
|
get: () => T;
|
|
@@ -50,4 +50,3 @@ export type CreateStoresOptions<TKey extends StoreKey = StoreKey, T extends Stor
|
|
|
50
50
|
* @see https://floppy-disk.vercel.app/docs/api#createstores
|
|
51
51
|
*/
|
|
52
52
|
export declare const createStores: <TKey extends StoreKey = StoreKey, T extends StoreData = StoreData>(initializer: StoresInitializer<TKey, T>, options?: CreateStoresOptions<TKey, T>) => UseStores<TKey, T>;
|
|
53
|
-
export {};
|
package/esm/utils/index.d.ts
CHANGED
|
@@ -3,3 +3,4 @@ export declare const identityFn: <T>(value: T) => T;
|
|
|
3
3
|
export declare const hasValue: (value: any) => boolean;
|
|
4
4
|
export declare const hashStoreKey: (obj?: any) => string;
|
|
5
5
|
export declare const getValueOrComputedValue: <T, P extends any[]>(valueOrComputeValueFn: T | ((...params: P) => T), ...params: P) => T;
|
|
6
|
+
export type Maybe<T> = T | null | undefined;
|
|
@@ -8,9 +8,9 @@ export type MutationState<TVar, TResponse = any, TError = unknown> = {
|
|
|
8
8
|
isSuccess: boolean;
|
|
9
9
|
isError: boolean;
|
|
10
10
|
response: TResponse | undefined;
|
|
11
|
-
responseUpdatedAt: number |
|
|
11
|
+
responseUpdatedAt: number | undefined;
|
|
12
12
|
error: TError | undefined;
|
|
13
|
-
errorUpdatedAt: number |
|
|
13
|
+
errorUpdatedAt: number | undefined;
|
|
14
14
|
/**
|
|
15
15
|
* Mutate function.
|
|
16
16
|
*
|
|
@@ -13,9 +13,9 @@ const createMutation = (mutationFn, options = {}) => {
|
|
|
13
13
|
isSuccess: false,
|
|
14
14
|
isError: false,
|
|
15
15
|
response: undefined,
|
|
16
|
-
responseUpdatedAt:
|
|
16
|
+
responseUpdatedAt: undefined,
|
|
17
17
|
error: undefined,
|
|
18
|
-
errorUpdatedAt:
|
|
18
|
+
errorUpdatedAt: undefined,
|
|
19
19
|
mutate: ((variables) => {
|
|
20
20
|
set({ isWaiting: true });
|
|
21
21
|
const stateBeforeMutate = get();
|
|
@@ -30,7 +30,7 @@ const createMutation = (mutationFn, options = {}) => {
|
|
|
30
30
|
response,
|
|
31
31
|
responseUpdatedAt: Date.now(),
|
|
32
32
|
error: undefined,
|
|
33
|
-
errorUpdatedAt:
|
|
33
|
+
errorUpdatedAt: undefined,
|
|
34
34
|
});
|
|
35
35
|
onSuccess(response, variables, stateBeforeMutate);
|
|
36
36
|
resolve({ response, variables });
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { FunctionComponent } from 'preact';
|
|
3
|
+
import { Maybe } from '../utils';
|
|
3
4
|
import { CreateStoresOptions, StoreKey, UseStores } from './create-stores';
|
|
4
|
-
export type QueryState<TKey extends StoreKey = StoreKey, TResponse = any, TData = TResponse, TError = unknown> = {
|
|
5
|
+
export type QueryState<TKey extends StoreKey = StoreKey, TResponse = any, TData = TResponse, TError = unknown, TPageParam = any> = {
|
|
5
6
|
/**
|
|
6
7
|
* Query store key, an object that will be hashed into a string as a query store identifier.
|
|
7
8
|
*/
|
|
@@ -19,17 +20,17 @@ export type QueryState<TKey extends StoreKey = StoreKey, TResponse = any, TData
|
|
|
19
20
|
*
|
|
20
21
|
* @returns Promise that will always get resolved.
|
|
21
22
|
*/
|
|
22
|
-
forceFetch: () => Promise<QueryState<TKey, TResponse, TData, TError>>;
|
|
23
|
+
forceFetch: () => Promise<QueryState<TKey, TResponse, TData, TError, TPageParam>>;
|
|
23
24
|
/**
|
|
24
25
|
* Fetch next page if has next page.
|
|
25
26
|
*
|
|
26
27
|
* If the data is empty, it will just fetch the first page.
|
|
27
28
|
*
|
|
28
|
-
* You can ignore this if your query is not
|
|
29
|
+
* You can ignore this if your query is not an infinite query.
|
|
29
30
|
*
|
|
30
31
|
* @returns Promise that will always get resolved.
|
|
31
32
|
*/
|
|
32
|
-
fetchNextPage: () => Promise<QueryState<TKey, TResponse, TData, TError>>;
|
|
33
|
+
fetchNextPage: () => Promise<QueryState<TKey, TResponse, TData, TError, TPageParam>>;
|
|
33
34
|
/**
|
|
34
35
|
* Set query state (data, error, etc) to initial state.
|
|
35
36
|
*/
|
|
@@ -41,7 +42,7 @@ export type QueryState<TKey extends StoreKey = StoreKey, TResponse = any, TData
|
|
|
41
42
|
*
|
|
42
43
|
* IMPORTANT NOTE: This won't work well on infinite query.
|
|
43
44
|
*/
|
|
44
|
-
optimisticUpdate: (response: TResponse | ((prevState: QueryState<TKey, TResponse, TData, TError>) => TResponse)) => {
|
|
45
|
+
optimisticUpdate: (response: TResponse | ((prevState: QueryState<TKey, TResponse, TData, TError, TPageParam>) => TResponse)) => {
|
|
45
46
|
revert: () => void;
|
|
46
47
|
invalidate: () => void;
|
|
47
48
|
};
|
|
@@ -55,14 +56,19 @@ export type QueryState<TKey extends StoreKey = StoreKey, TResponse = any, TData
|
|
|
55
56
|
isWaitingNextPage: boolean;
|
|
56
57
|
isRefetching: boolean;
|
|
57
58
|
isRefetchError: boolean;
|
|
59
|
+
/**
|
|
60
|
+
* Will be `true` if the response/data comes from the previous query key.
|
|
61
|
+
*
|
|
62
|
+
* @see `keepPreviousData` option
|
|
63
|
+
*/
|
|
58
64
|
isPreviousData: boolean;
|
|
59
65
|
isOptimisticData: boolean;
|
|
60
66
|
error: TError | undefined;
|
|
61
|
-
errorUpdatedAt: number |
|
|
67
|
+
errorUpdatedAt: number | undefined;
|
|
62
68
|
retryCount: number;
|
|
63
69
|
isGoingToRetry: boolean;
|
|
64
|
-
pageParam:
|
|
65
|
-
pageParams:
|
|
70
|
+
pageParam: Maybe<TPageParam>;
|
|
71
|
+
pageParams: Maybe<TPageParam>[];
|
|
66
72
|
hasNextPage: boolean;
|
|
67
73
|
retryNextPageCount: number;
|
|
68
74
|
isGoingToRetryNextPage: boolean;
|
|
@@ -78,6 +84,8 @@ export type QueryState<TKey extends StoreKey = StoreKey, TResponse = any, TData
|
|
|
78
84
|
*
|
|
79
85
|
* It has no relation with network fetching state.
|
|
80
86
|
* If you're looking for network fetching state, use `isWaiting` instead.
|
|
87
|
+
*
|
|
88
|
+
* @see https://floppy-disk.vercel.app/docs/query/introduction#query-state--network-fetching-state
|
|
81
89
|
*/
|
|
82
90
|
status: 'loading';
|
|
83
91
|
/**
|
|
@@ -85,6 +93,8 @@ export type QueryState<TKey extends StoreKey = StoreKey, TResponse = any, TData
|
|
|
85
93
|
*
|
|
86
94
|
* It has no relation with network fetching state.
|
|
87
95
|
* If you're looking for network fetching state, use `isWaiting` instead.
|
|
96
|
+
*
|
|
97
|
+
* @see https://floppy-disk.vercel.app/docs/query/introduction#query-state--network-fetching-state
|
|
88
98
|
*/
|
|
89
99
|
isLoading: true;
|
|
90
100
|
/**
|
|
@@ -101,7 +111,7 @@ export type QueryState<TKey extends StoreKey = StoreKey, TResponse = any, TData
|
|
|
101
111
|
isError: false;
|
|
102
112
|
data: undefined;
|
|
103
113
|
response: undefined;
|
|
104
|
-
responseUpdatedAt:
|
|
114
|
+
responseUpdatedAt: undefined;
|
|
105
115
|
} | {
|
|
106
116
|
status: 'success';
|
|
107
117
|
isLoading: false;
|
|
@@ -109,7 +119,7 @@ export type QueryState<TKey extends StoreKey = StoreKey, TResponse = any, TData
|
|
|
109
119
|
isError: false;
|
|
110
120
|
data: TData;
|
|
111
121
|
response: TResponse;
|
|
112
|
-
responseUpdatedAt: number |
|
|
122
|
+
responseUpdatedAt: number | undefined;
|
|
113
123
|
} | {
|
|
114
124
|
status: 'error';
|
|
115
125
|
isLoading: false;
|
|
@@ -117,10 +127,10 @@ export type QueryState<TKey extends StoreKey = StoreKey, TResponse = any, TData
|
|
|
117
127
|
isError: true;
|
|
118
128
|
data: undefined;
|
|
119
129
|
response: undefined;
|
|
120
|
-
responseUpdatedAt:
|
|
130
|
+
responseUpdatedAt: undefined;
|
|
121
131
|
});
|
|
122
|
-
export type CreateQueryOptions<TKey extends StoreKey = StoreKey, TResponse = any, TData = TResponse, TError = unknown> = CreateStoresOptions<TKey, QueryState<TKey, TResponse, TData, TError>> & {
|
|
123
|
-
select?: (response: TResponse, state: Pick<QueryState<TKey, TResponse, TData, TError>, 'data' | 'key'>) => TData;
|
|
132
|
+
export type CreateQueryOptions<TKey extends StoreKey = StoreKey, TResponse = any, TData = TResponse, TError = unknown, TPageParam = any> = CreateStoresOptions<TKey, QueryState<TKey, TResponse, TData, TError, TPageParam>> & {
|
|
133
|
+
select?: (response: TResponse, state: Pick<QueryState<TKey, TResponse, TData, TError, TPageParam>, 'data' | 'key'>) => TData;
|
|
124
134
|
/**
|
|
125
135
|
* Stale time in miliseconds.
|
|
126
136
|
*
|
|
@@ -161,29 +171,31 @@ export type CreateQueryOptions<TKey extends StoreKey = StoreKey, TResponse = any
|
|
|
161
171
|
*
|
|
162
172
|
* Defaults to `1`.
|
|
163
173
|
*/
|
|
164
|
-
retry?: number | ((error: TError, prevState: QueryState<TKey, TResponse, TData, TError>) => number);
|
|
174
|
+
retry?: number | ((error: TError, prevState: QueryState<TKey, TResponse, TData, TError, TPageParam>) => number);
|
|
165
175
|
/**
|
|
166
176
|
* Error retry delay in miliseconds.
|
|
167
177
|
*
|
|
168
178
|
* Defaults to `2000` (2 seconds).
|
|
169
179
|
*/
|
|
170
|
-
retryDelay?: number | ((error: TError, prevState: QueryState<TKey, TResponse, TData, TError>) => number);
|
|
180
|
+
retryDelay?: number | ((error: TError, prevState: QueryState<TKey, TResponse, TData, TError, TPageParam>) => number);
|
|
171
181
|
/**
|
|
172
|
-
*
|
|
182
|
+
* Used for lagged query.
|
|
173
183
|
*
|
|
174
|
-
*
|
|
184
|
+
* If set to `true`, then:
|
|
185
|
+
* when the query key changed and there is no `data` in the next query key cache,
|
|
186
|
+
* the previous query key cache `data` will be used while fetching new data.
|
|
175
187
|
*/
|
|
176
188
|
keepPreviousData?: boolean;
|
|
177
189
|
/**
|
|
178
190
|
* Only set this if you have an infinite query.
|
|
179
191
|
*
|
|
180
|
-
* This function should return a variable that will be used when fetching next page
|
|
192
|
+
* This function should return a variable that will be stored as `pageParam` that can be used when fetching next page.
|
|
181
193
|
*/
|
|
182
|
-
getNextPageParam?: (lastPage: TResponse, index: number) =>
|
|
183
|
-
onBeforeFetch?: (cancel: () => void, state: QueryState<TKey, TResponse, TData, TError>) => void;
|
|
184
|
-
onSuccess?: (response: TResponse, stateBeforeCallQuery: QueryState<TKey, TResponse, TData, TError>) => void;
|
|
185
|
-
onError?: (error: TError, stateBeforeCallQuery: QueryState<TKey, TResponse, TData, TError>) => void;
|
|
186
|
-
onSettled?: (stateBeforeCallQuery: QueryState<TKey, TResponse, TData, TError>) => void;
|
|
194
|
+
getNextPageParam?: (lastPage: TResponse, index: number) => Maybe<TPageParam>;
|
|
195
|
+
onBeforeFetch?: (cancel: () => void, state: QueryState<TKey, TResponse, TData, TError, TPageParam>) => void;
|
|
196
|
+
onSuccess?: (response: TResponse, stateBeforeCallQuery: QueryState<TKey, TResponse, TData, TError, TPageParam>) => void;
|
|
197
|
+
onError?: (error: TError, stateBeforeCallQuery: QueryState<TKey, TResponse, TData, TError, TPageParam>) => void;
|
|
198
|
+
onSettled?: (stateBeforeCallQuery: QueryState<TKey, TResponse, TData, TError, TPageParam>) => void;
|
|
187
199
|
/**
|
|
188
200
|
* Cache time in miliseconds.
|
|
189
201
|
*
|
|
@@ -204,9 +216,9 @@ export type CreateQueryOptions<TKey extends StoreKey = StoreKey, TResponse = any
|
|
|
204
216
|
*
|
|
205
217
|
* @see https://floppy-disk.vercel.app/docs/query/polling
|
|
206
218
|
*/
|
|
207
|
-
refetchInterval?: number | false | ((state: QueryState<TKey, TResponse, TData, TError>) => number | false);
|
|
219
|
+
refetchInterval?: number | false | ((state: QueryState<TKey, TResponse, TData, TError, TPageParam>) => number | false);
|
|
208
220
|
};
|
|
209
|
-
export type UseQuery<TKey extends StoreKey = StoreKey, TResponse = any, TData = TResponse, TError = unknown> = UseStores<TKey, QueryState<TKey, TResponse, TData, TError>> & {
|
|
221
|
+
export type UseQuery<TKey extends StoreKey = StoreKey, TResponse = any, TData = TResponse, TError = unknown, TPageParam = any> = UseStores<TKey, QueryState<TKey, TResponse, TData, TError, TPageParam>> & {
|
|
210
222
|
/**
|
|
211
223
|
* Set query's initial response.
|
|
212
224
|
*
|
|
@@ -215,7 +227,7 @@ export type UseQuery<TKey extends StoreKey = StoreKey, TResponse = any, TData =
|
|
|
215
227
|
* IMPORTANT NOTE: Put this on the root component or parent component, before any component subscribed!
|
|
216
228
|
*/
|
|
217
229
|
setInitialResponse: (options: {
|
|
218
|
-
key?: TKey
|
|
230
|
+
key?: Maybe<TKey>;
|
|
219
231
|
response: TResponse;
|
|
220
232
|
skipRevalidation?: boolean;
|
|
221
233
|
}) => void;
|
|
@@ -226,7 +238,7 @@ export type UseQuery<TKey extends StoreKey = StoreKey, TResponse = any, TData =
|
|
|
226
238
|
/**
|
|
227
239
|
* Set query state (data, error, etc) to initial state.
|
|
228
240
|
*/
|
|
229
|
-
resetSpecificKey: (key?: TKey
|
|
241
|
+
resetSpecificKey: (key?: Maybe<TKey>) => void;
|
|
230
242
|
/**
|
|
231
243
|
* Invalidate query means marking a query as stale, and will refetch only if the query is active (has subscriber)
|
|
232
244
|
*/
|
|
@@ -234,7 +246,7 @@ export type UseQuery<TKey extends StoreKey = StoreKey, TResponse = any, TData =
|
|
|
234
246
|
/**
|
|
235
247
|
* Invalidate query means marking a query as stale, and will refetch only if the query is active (has subscriber)
|
|
236
248
|
*/
|
|
237
|
-
invalidateSpecificKey: (key?: TKey
|
|
249
|
+
invalidateSpecificKey: (key?: Maybe<TKey>) => void;
|
|
238
250
|
/**
|
|
239
251
|
* Optimistic update.
|
|
240
252
|
*
|
|
@@ -243,8 +255,8 @@ export type UseQuery<TKey extends StoreKey = StoreKey, TResponse = any, TData =
|
|
|
243
255
|
* IMPORTANT NOTE: This won't work well on infinite query.
|
|
244
256
|
*/
|
|
245
257
|
optimisticUpdate: (options: {
|
|
246
|
-
key?: TKey
|
|
247
|
-
response: TResponse | ((prevState: QueryState<TKey, TResponse, TData, TError>) => TResponse);
|
|
258
|
+
key?: Maybe<TKey>;
|
|
259
|
+
response: TResponse | ((prevState: QueryState<TKey, TResponse, TData, TError, TPageParam>) => TResponse);
|
|
248
260
|
}) => {
|
|
249
261
|
revert: () => void;
|
|
250
262
|
invalidate: () => void;
|
|
@@ -252,11 +264,11 @@ export type UseQuery<TKey extends StoreKey = StoreKey, TResponse = any, TData =
|
|
|
252
264
|
/**
|
|
253
265
|
* Use query with suspense mode.
|
|
254
266
|
*/
|
|
255
|
-
suspend: (key?: TKey
|
|
267
|
+
suspend: (key?: Maybe<TKey>) => Extract<QueryState<TKey, TResponse, TData, TError, TPageParam>, {
|
|
256
268
|
status: 'success';
|
|
257
269
|
}>;
|
|
258
270
|
Render: (props: {
|
|
259
|
-
queryKey?: TKey
|
|
271
|
+
queryKey?: Maybe<TKey>;
|
|
260
272
|
loading?: FunctionComponent<TKey>;
|
|
261
273
|
success?: FunctionComponent<TKey>;
|
|
262
274
|
error?: FunctionComponent<TKey>;
|
|
@@ -265,4 +277,4 @@ export type UseQuery<TKey extends StoreKey = StoreKey, TResponse = any, TData =
|
|
|
265
277
|
/**
|
|
266
278
|
* @see https://floppy-disk.vercel.app/docs/api#createquery
|
|
267
279
|
*/
|
|
268
|
-
export declare const createQuery: <TKey extends StoreKey = StoreKey, TResponse = any, TData = TResponse, TError = unknown>(queryFn: (key: TKey, state: QueryState<TKey, TResponse, TData, TError>) => Promise<TResponse>, options?: CreateQueryOptions<TKey, TResponse, TData, TError>) => UseQuery<TKey, TResponse, TData, TError>;
|
|
280
|
+
export declare const createQuery: <TKey extends StoreKey = StoreKey, TResponse = any, TData = TResponse, TError = unknown, TPageParam = any>(queryFn: (key: TKey, state: QueryState<TKey, TResponse, TData, TError, TPageParam>) => Promise<TResponse>, options?: CreateQueryOptions<TKey, TResponse, TData, TError, TPageParam>) => UseQuery<TKey, TResponse, TData, TError, TPageParam>;
|
|
@@ -18,9 +18,9 @@ const INITIAL_QUERY_STATE = {
|
|
|
18
18
|
isOptimisticData: false,
|
|
19
19
|
data: undefined,
|
|
20
20
|
response: undefined,
|
|
21
|
-
responseUpdatedAt:
|
|
21
|
+
responseUpdatedAt: undefined,
|
|
22
22
|
error: undefined,
|
|
23
|
-
errorUpdatedAt:
|
|
23
|
+
errorUpdatedAt: undefined,
|
|
24
24
|
retryCount: 0,
|
|
25
25
|
isGoingToRetry: false,
|
|
26
26
|
pageParam: undefined,
|
|
@@ -57,11 +57,11 @@ const createQuery = (queryFn, options = {}) => {
|
|
|
57
57
|
return { shouldRetry: retryCount < maxRetryCount, delay };
|
|
58
58
|
};
|
|
59
59
|
const forceFetch = () => new Promise((resolve) => {
|
|
60
|
+
const state = get();
|
|
60
61
|
const responseAllPages = [];
|
|
61
|
-
const newPageParams = [
|
|
62
|
-
let pageParam =
|
|
62
|
+
const newPageParams = [state.pageParams[0]];
|
|
63
|
+
let pageParam = state.pageParams[0];
|
|
63
64
|
clearTimeout(refetchIntervalTimeoutId.get(keyHash));
|
|
64
|
-
const state = get();
|
|
65
65
|
const { isWaiting, isLoading, pageParams } = state;
|
|
66
66
|
if (isWaiting || !(0, utils_1.getValueOrComputedValue)(enabled, key))
|
|
67
67
|
return resolve(state);
|
|
@@ -116,7 +116,7 @@ const createQuery = (queryFn, options = {}) => {
|
|
|
116
116
|
response,
|
|
117
117
|
responseUpdatedAt: Date.now(),
|
|
118
118
|
error: undefined,
|
|
119
|
-
errorUpdatedAt:
|
|
119
|
+
errorUpdatedAt: undefined,
|
|
120
120
|
retryCount: 0,
|
|
121
121
|
pageParam: newPageParam,
|
|
122
122
|
pageParams: newPageParams,
|
|
@@ -181,7 +181,7 @@ const createQuery = (queryFn, options = {}) => {
|
|
|
181
181
|
});
|
|
182
182
|
const fetch = () => {
|
|
183
183
|
const { responseUpdatedAt } = get();
|
|
184
|
-
const isStale = Date.now() >
|
|
184
|
+
const isStale = Date.now() > (responseUpdatedAt || 0) + staleTime;
|
|
185
185
|
if (!isStale)
|
|
186
186
|
return;
|
|
187
187
|
forceFetch();
|
|
@@ -339,7 +339,7 @@ const createQuery = (queryFn, options = {}) => {
|
|
|
339
339
|
isSuccess: true,
|
|
340
340
|
isError: false,
|
|
341
341
|
response,
|
|
342
|
-
responseUpdatedAt: skipRevalidation ? Date.now() :
|
|
342
|
+
responseUpdatedAt: skipRevalidation ? Date.now() : undefined,
|
|
343
343
|
data: select(response, { key: key, data: undefined }),
|
|
344
344
|
pageParam: newPageParam,
|
|
345
345
|
pageParams: [undefined, newPageParam],
|
|
@@ -359,14 +359,14 @@ const createQuery = (queryFn, options = {}) => {
|
|
|
359
359
|
useQuery.invalidate = () => {
|
|
360
360
|
useQuery.getStores().forEach((store) => {
|
|
361
361
|
const { get, set, getSubscribers } = store;
|
|
362
|
-
set({ responseUpdatedAt:
|
|
362
|
+
set({ responseUpdatedAt: undefined });
|
|
363
363
|
if (getSubscribers().size > 0)
|
|
364
364
|
get().forceFetch();
|
|
365
365
|
});
|
|
366
366
|
};
|
|
367
367
|
useQuery.invalidateSpecificKey = (key) => {
|
|
368
368
|
const { get, set, getSubscribers } = useQuery.getStore(key);
|
|
369
|
-
set({ responseUpdatedAt:
|
|
369
|
+
set({ responseUpdatedAt: undefined });
|
|
370
370
|
if (getSubscribers().size > 0)
|
|
371
371
|
get().forceFetch();
|
|
372
372
|
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
+
import { Maybe } from '../utils';
|
|
1
2
|
import { InitStoreOptions, InitStoreReturn, SelectDeps, SetStoreData, StoreData, Subscribers } from '../vanilla';
|
|
2
3
|
import { WatchProps } from './create-store';
|
|
3
|
-
type Maybe<T> = T | null | undefined;
|
|
4
4
|
export type StoreKey = Record<string, any> | undefined;
|
|
5
5
|
export type StoresInitializer<TKey extends StoreKey = StoreKey, T extends StoreData = StoreData> = (api: {
|
|
6
6
|
get: () => T;
|
|
@@ -50,4 +50,3 @@ export type CreateStoresOptions<TKey extends StoreKey = StoreKey, T extends Stor
|
|
|
50
50
|
* @see https://floppy-disk.vercel.app/docs/api#createstores
|
|
51
51
|
*/
|
|
52
52
|
export declare const createStores: <TKey extends StoreKey = StoreKey, T extends StoreData = StoreData>(initializer: StoresInitializer<TKey, T>, options?: CreateStoresOptions<TKey, T>) => UseStores<TKey, T>;
|
|
53
|
-
export {};
|
|
@@ -8,9 +8,9 @@ export type MutationState<TVar, TResponse = any, TError = unknown> = {
|
|
|
8
8
|
isSuccess: boolean;
|
|
9
9
|
isError: boolean;
|
|
10
10
|
response: TResponse | undefined;
|
|
11
|
-
responseUpdatedAt: number |
|
|
11
|
+
responseUpdatedAt: number | undefined;
|
|
12
12
|
error: TError | undefined;
|
|
13
|
-
errorUpdatedAt: number |
|
|
13
|
+
errorUpdatedAt: number | undefined;
|
|
14
14
|
/**
|
|
15
15
|
* Mutate function.
|
|
16
16
|
*
|
|
@@ -13,9 +13,9 @@ const createMutation = (mutationFn, options = {}) => {
|
|
|
13
13
|
isSuccess: false,
|
|
14
14
|
isError: false,
|
|
15
15
|
response: undefined,
|
|
16
|
-
responseUpdatedAt:
|
|
16
|
+
responseUpdatedAt: undefined,
|
|
17
17
|
error: undefined,
|
|
18
|
-
errorUpdatedAt:
|
|
18
|
+
errorUpdatedAt: undefined,
|
|
19
19
|
mutate: ((variables) => {
|
|
20
20
|
set({ isWaiting: true });
|
|
21
21
|
const stateBeforeMutate = get();
|
|
@@ -30,7 +30,7 @@ const createMutation = (mutationFn, options = {}) => {
|
|
|
30
30
|
response,
|
|
31
31
|
responseUpdatedAt: Date.now(),
|
|
32
32
|
error: undefined,
|
|
33
|
-
errorUpdatedAt:
|
|
33
|
+
errorUpdatedAt: undefined,
|
|
34
34
|
});
|
|
35
35
|
onSuccess(response, variables, stateBeforeMutate);
|
|
36
36
|
resolve({ response, variables });
|