Socket
Socket
Sign inDemoInstall

@aspida/react-query

Package Overview
Dependencies
Maintainers
3
Versions
27
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@aspida/react-query

React Query wrapper for aspida


Version published
Maintainers
3
Created
Source

@aspida/react-query


aspida
npm version npm download Node.js CI Codecov Language grade: JavaScript

React Query wrapper for aspida.


Getting Started

Installation

  • Using npm:

    $ npm install @aspida/react-query @aspida/axios react-query axios
    # $ npm install @aspida/react-query @aspida/fetch react-query
    # $ npm install @aspida/react-query @aspida/node-fetch react-query node-fetch
    
  • Using Yarn:

    $ yarn add @aspida/react-query @aspida/axios react-query axios
    # $ yarn add @aspida/react-query @aspida/fetch react-query
    # $ yarn add @aspida/react-query @aspida/node-fetch react-query node-fetch
    

Make HTTP request from application

src/index.ts

import { useQueryClient, useMutation, QueryClient, QueryClientProvider } from 'react-query'
import { useAspidaQuery } from "@aspida/react-query"
import aspida from "@aspida/axios" // "@aspida/fetch", "@aspida/node-fetch"
import api from "../api/$api"

const client = api(aspida())
const queryClient = new QueryClient()

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

function postTodo(body: { id: number; title: string }) {
  return client.todos.$post({ body })
}

function Todos() {
  // Access the client
  const queryClient = useQueryClient()

  // Queries
  const query = useAspidaQuery(client.todos, { query: { limit: 10 }})

  // Mutations
  const mutation = useMutation(postTodo, {
    onSuccess: () => {
      // Invalidate and refetch
      queryClient.invalidateQueries(client.todos.$path({ query: { limit: 10 }}))
    },
  })

  return (
    <div>
      <ul>
        {query.data.map(todo => (
          <li key={todo.id}>{todo.title}</li>
        ))}
      </ul>

      <button
        onClick={() => {
          mutation.mutate({
            id: Date.now(),
            title: 'Do Laundry',
          })
        }}
      >
        Add Todo
      </button>
    </div>
  )
}

render(<App />, document.getElementById('root'))

Get response body/status/headers

src/index.ts

import { useMutation, QueryClient, QueryClientProvider } from 'react-query'
import { useAspidaQuery } from "@aspida/react-query"
import aspida from "@aspida/axios" // "@aspida/fetch", "@aspida/node-fetch"
import api from "../api/$api"

const client = api(aspida())
const queryClient = new QueryClient()

function App() {
  return (
    <QueryClientProvider client={queryClient}>
      <Profile />
    </QueryClientProvider>
  )
}

function Profile() {
  const { data, error } = useAspidaQuery(
    client.user._userId(123),
    'get',
    { query: { name: 'mario' } }
  )

  if (error) return <div>failed to load</div>
  if (!data) return <div>loading...</div>
  return (
    <>
      <div>Status: {data.status}</div>
      <div>Headers: {JSON.stringify(data.headers)}</div>
      <div>Name: {data.body.name}</div>
    </>
  )
}

render(<App />, document.getElementById('root'))

useAspidaQuery(client.user._userId(123), { query }) is an alias of useAspidaQuery(client.user._userId(123), "$get", { query })

Use with React Query options

src/index.ts

import { useMutation, QueryClient, QueryClientProvider } from 'react-query'
import { useAspidaQuery } from "@aspida/react-query"
import aspida from "@aspida/axios" // "@aspida/fetch", "@aspida/node-fetch"
import api from "../api/$api"

const client = api(aspida())
const queryClient = new QueryClient()

function App() {
  return (
    <QueryClientProvider client={queryClient}>
      <Profile />
    </QueryClientProvider>
  )
}

function Profile() {
  const { data, error } = useAspidaQuery(
    client.user._userId(123),
    {
      query: { name: 'mario' },
      refetchOnMount: true,
      initialData: { name: 'anonymous' }
    }
  )

  if (error) return <div>failed to load</div>
  return <div>hello {data.name}!</div>
}

render(<App />, document.getElementById('root'))

License

@aspida/react-query is licensed under a MIT License.

Keywords

FAQs

Package last updated on 26 Jul 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc