npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@one-view/api-client

v0.5.5

Published

API client helper

Downloads

851

Readme

@one-view/api-client

Installation

With NPM

$ npm install @one-view/api-client

With Yarn

$ yarn add @one-view/api-client

Usage

Fetch data in react component using useFetchData hook

import React from 'react'
import ReactDOM from 'react-dom'
import { ApiProvider, useFetchData } from '@one-view/api-client'

export App = () => {
  const { data, isLoading, error } = useFetchData('/endpoint')

  return (
    <div>
      {
        isLoading && <span>Fetching data...</span>
      }
      {
        error && <span>Error when fetching data</span>
      }
      {
        data && <span>{ data }</span>
      }
    </div>
  )
}

ReactDOM.render(
  <ApiProvider host="http://your-api-host">
    <App />
  </ApiProvider>,
  document.getElementById('container')
)

This example will fetch http://your-api-host/endpoint when App component is mounted.

Retry Request

By default the client will retry fetching 3 times. It is configurable in couple ways:

In ApiProvider

Adding retry prop in ApiProvider will affect all clients inside the component tree.

<ApiProvider host="..." retry={2}>
  <App />
</ApiProvider>

In useFetchData

useFetchData accept config object as second argument. This will override the config passed in ApiProvider.

const App = () => {
  const { data, isLoading, error } = useFetchData("/endpoint", {
    retry: 2,
    host: "http://other-api-host"
  });

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

Watch for Prop Changes

const App = (props) => {
  // re-fetch data if props.code changes
  const result = useFetchData(`/endpoint/${props.code}`, {}, [ props.code ])

  return <div>...<div>;
}

Sending POST Request

useFetchData also return an axios instance under client name. You can use it to send POST or PATCH request.

const App = () => {
  return ({ client, data } = useFetchData("/endpoint"));
  const update = () => {
    return client.post("/update");
  };

  return <button onClick={update}>...</button>;
};

You can also use useClient hook if you don't need fetching any data. useClient accepts config object as parameter.

import { useClient } from "@one-view/api-client";

const App = () => {
  const client = useClient({ retry: 2 });
  const submit = () => {
    return client.post("/submit-form");
  };

  return <form onSubmit={submit}>...</form>;
};

Include Access Token in Request Header

You can add accessToken and tokenType (default to Bearer) to config object and the client will automatically include Authorization.

The recommended way to get the access token is by using useAccessToken hook from @one-view/auth-helpers package.

import { useFetchData } from "@one-view/api-client";
import { useAccessToken } from "@one-view/auth-helpers"

const App = () => {
  const token = useAccessToken();
  const client = useFetchData("/endpoint", {
    accessToken: token.accessToken,
    tokenType: token.tokenType
  });

  return <form onSubmit={submit}>...</form>;
};

Config Object

| Name | Type | | :------ | :----- | | host | String | | retry | Number | | accessToken | String | | tokenType | String, default to Bearer |

Typescript Integration

This package provides declaration files to use inside typescript project. For better experience, it is recommended to declare interface for the API response and pass it to useFetchData hook.

import { useFetchData } from '@one-view/api-client'

interface ApiResponse {
  id: number
  name: string
  ...
}

const App: React.FC = () => {
  // data will be properly typed and can be autocompleted
  const { data } = useFetchData<ApiResponse>('/endpoint')

  return <div>...</div>
}