@rap-api/react-query3
TypeScript icon, indicating that this package has built-in type declarations

0.0.2 • Public • Published

@rap-api/react-query3

Combine Rapper3 with powerful React Query.

Getting Started


1. Install Rapper3 http, React Query and @rap-api/react-query3 in your project.

npm install --save @rap-api/cli @rap-api/request react-query@^3 @rap-api/react-query3

Generate TypeScript code in your project.

Remember to add QueryClientProvider. (React Query Quick Start)

import { QueryClient, QueryClientProvider } from 'react-query';

// Create a client
const queryClient = new QueryClient();

function App() {
  return (
    // Provide the client to your App
    <QueryClientProvider client={queryClient}>
      <Todos />
    </QueryClientProvider>
  );
}

Create the hooks using generated code.

import * as React from 'react';
import { createUseRapperQuery } from '@rap-api/react-query3';
import { fetch } from 'src/rapper';

const useRapperQuery = createUseRapperQuery(fetch);

const Component: React.FC = () => {
  const { data, isLoading } = useRapperQuery('GET/path/to/your/api', {
    param1: 'value',
  });

  if (isLoading) {
    return <div>Loading...</div>;
  }

  return <div>{data.data}</div>;
};

API Reference

createUseRapperQuery

Combine Rapper with useQuery in react-query. It's usually used for read-only APIs (GET method).

  • url: string: The URL of your API.
  • params?: object: The params of your API.
  • options?: UseQueryOptions: The options for useQuery.

createUseRapperQueries

Combine Rapper with useQueries in react-query. Most time, you can use several useQuery to fetch multiple APIs. Use useQueries if your count of requests is undetermined.

  • requests: [string, object][]
    • requests[number][0]: The URL of your API.
    • requests[number][1]: The params of your API.
  • options?: QueriesOptions: The options for useQueries.

createUseMutation

Combine Rapper with useMutation in react-query. It's usually used for mutation APIs (POST/PUT/PATCH/DELETE method).

  • url: string: The URL of your API.
  • options?: UseMutationOptions: The options for useMutation.

createUseInfiniteQuery

Combine Rapper with useInfiniteQuery in react-query. It's usually used for infinite pagination APIs. For normal page/number paginations, you can just use a useQuery.

  • url: string: The URL of your API.
  • params?: object: The params of your API.
  • options?: UseInfinityQueryOptions: The options for useInfinityQuery.

Readme

Keywords

none

Package Sidebar

Install

npm i @rap-api/react-query3

Weekly Downloads

0

Version

0.0.2

License

none

Unpacked Size

66.9 kB

Total Files

44

Last publish

Collaborators

  • bosnma