Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix react query bindings #15

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 10 additions & 3 deletions docs/api-reference.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# API Reference

---

- [`Provider.createClient()`](#providercreateclient)
- [`Provider.make()`](#providermake)
- [`DevTools.make(...)`](#devtoolsmake)
Expand All @@ -10,7 +12,6 @@
- [`useMutation`](#usemutation)
- [`mutationOptions`](#mutationoptions)


### `Provider.createClient()`

The function responsible to create the query client
Expand All @@ -22,7 +23,9 @@ Definition:
let createClient: unit => queryClientValue
}
```

Usage:

```rescript
let client = Provider.createClient()
```
Expand Down Expand Up @@ -84,9 +87,11 @@ Usage:
```

### `queryClient`

Type responsible for the return of the useQueryClient hook

Definition:

```rescript
type queryClient<'queryKey, 'queryData, 'queryError, 'pageParams> = {
fetchQuery: fetchQueryOptions<'queryKey, 'queryData, 'queryError, 'pageParams> => Js.Promise.t<
Expand Down Expand Up @@ -167,9 +172,11 @@ Usage:
```

### `queryOptions`

Type responsible for hold parameters for the useQuery hook

Definition:

```rescript
type queryOptions<'queryKey, 'queryData, 'queryError, 'pageParam> = {
queryKey?: array<'queryKey>,
Expand All @@ -182,7 +189,7 @@ Definition:
retryDelay?: ReactQuery_Types.retryDelayValue<'queryError>,
staleTime?: ReactQuery_Types.timeValue,
queryKeyHashFn?: array<'queryKey> => string,
refetchInterval?: ReactQuery_Types.refetchIntervalValue,
refetchInterval?: 'queryData => ReactQuery_Types.refetchIntervalValue,
refetchIntervalInBackground?: bool,
refetchOnMount?: ReactQuery_Types.boolOrAlwaysValue,
refetchOnWindowFocus?: ReactQuery_Types.boolOrAlwaysValue,
Expand Down Expand Up @@ -214,7 +221,6 @@ Usage:

```


### `useMutation`

The hook responsible to mutate a query, when update/create/delete anything
Expand All @@ -240,6 +246,7 @@ Usage:
```

### `mutationOptions`

Type responsible for hold the parameters for the useMutation hook

Definition:
Expand Down
2 changes: 1 addition & 1 deletion src/ReactQuery_Client.res
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ type queryObserverOptions<'error, 'data, 'queryData, 'queryKey, 'pageParam> = {
_defaulted?: bool,
enabled?: bool,
staleTime?: int,
refetchInterval?: ReactQuery_Types.refetchIntervalValue,
refetchInterval?: 'queryData => ReactQuery_Types.refetchIntervalValue,
refetchIntervalInBackground?: bool,
refetchOnWindowFocus?: ReactQuery_Types.boolOrAlwaysValue,
refetchOnReconnect?: ReactQuery_Types.boolOrAlwaysValue,
Expand Down
3 changes: 2 additions & 1 deletion src/ReactQuery_InfiniteQuery.res
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,11 @@ type infiniteQueryOptions<'queryKey, 'queryData, 'queryError> = {
enabled?: bool,
retry?: ReactQuery_Types.retryValue<'queryError>,
retryOnMount?: bool,
initialPageParam?: int,
retryDelay?: ReactQuery_Types.retryDelayValue<'queryError>,
staleTime?: ReactQuery_Types.timeValue,
queryKeyHashFn?: 'queryKey => string,
refetchInterval?: ReactQuery_Types.refetchIntervalValue,
refetchInterval?: 'queryData => ReactQuery_Types.refetchIntervalValue,
refetchIntervalInBackground?: bool,
refetchOnMount?: ReactQuery_Types.boolOrAlwaysValue,
refetchOnWindowFocus?: ReactQuery_Types.boolOrAlwaysValue,
Expand Down
7 changes: 4 additions & 3 deletions src/ReactQuery_Query.res
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ type queryOptions<'queryKey, 'queryData, 'queryError, 'pageParam> = {
retryDelay?: ReactQuery_Types.retryDelayValue<'queryError>,
staleTime?: ReactQuery_Types.timeValue,
queryKeyHashFn?: array<'queryKey> => string,
refetchInterval?: ReactQuery_Types.refetchIntervalValue,
refetchInterval?: 'queryData => ReactQuery_Types.refetchIntervalValue,
refetchIntervalInBackground?: bool,
refetchOnMount?: ReactQuery_Types.boolOrAlwaysValue,
refetchOnWindowFocus?: ReactQuery_Types.boolOrAlwaysValue,
Expand All @@ -21,7 +21,6 @@ type queryOptions<'queryKey, 'queryData, 'queryError, 'pageParam> = {
onSettled?: ('queryData, 'queryError) => unit,
select?: 'queryData => 'queryData,
suspense?: bool,
keepPreviousData?: bool,
structuralSharing?: bool,
useErrorBoundary?: bool,
initialData?: 'queryData => 'queryData,
Expand All @@ -39,7 +38,6 @@ type rec queryResult<'queryError, 'queryData> = {
isLoading: bool,
isLoadingError: bool,
isPlaceholderData: bool,
isPreviousData: bool,
isRefetchError: bool,
isStale: bool,
isSuccess: bool,
Expand All @@ -62,6 +60,9 @@ type queriesOptions<'queryKey, 'queryData, 'queryError, 'pageParam> = {
queries: array<queryOptions<'queryKey, 'queryData, 'queryError, 'pageParam>>,
}

@module("@tanstack/react-query")
external keepPreviousData: 'queryData = "keepPreviousData"

@module("@tanstack/react-query")
external useQueries: queriesOptions<'queryKey, 'queryData, 'queryError, 'pageParam> => array<
queryResult<'queryError, 'queryData>,
Expand Down
2 changes: 1 addition & 1 deletion src/ReactQuery_Types.res
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ type infiniteData<'queryData> = {
pageParams: array<int>,
}

type queryStatus = [#loading | #success | #error | #initialData]
type queryStatus = [#pending | #success | #error]

type placeholderData<'queryData, 'queryResult> = [
| #data('queryData)
Expand Down