Code Monkey home page Code Monkey logo

react-hook-async's Introduction

React-hook-async

  • Simple way to work with async in your react components, using new React hooks.
  • Support chaining async tasks.
  • Small with no dependency needed

INSTALLATION

yarn add react-hook-async

or

npm i react-hook-async --save

Usage

Performing an async task is common actions when working with React.

With hooks, we usually use something like const [loading, setLoading] = useState(false) to manipulate our UI: show a loading indicator, an error message, ... This thing is trying to make your life a little bit easier when working with async data.

import React, {useState} from 'react';
import axios from 'axios'
import { useAsync } from 'react-hook-async';

const Example = (props) => {

  const [text, setText] = useState("");

  const [apiData, fetchApi] = useAsync([], query => axios.get("<your_api_endpoint_here>", {
    params: {
      q: query
    }
  }))

  const onSearch = () => {
    fetchApi(text);
  };

  const {loading, result, error, lastFetch} = apiData;

  return (
    <div>
      <input type="text" value={text} onChange={e => setText(e.target.value)}/>
      {
        loading
        ? <div>Loading ...</div>
        : error
          ? <div>{error.message}</div>
          : <div>{result}</div>
      }
    </div>
  )
}

export default Example;

API

  • useAsync(initValue, func) : [apiData, execute, reset]

Params:

Name Type Description
func () => Promise A function return promise. The value from promise will be set to apiData.result
initValue any Initial value for apiData.result

Returned Value:

Name Type Description
apiData `{loading: boolean, error: null Error, result: any, lastFetch: Date}`
execute Function Function to perform an async task
reset Function Function to reset apiData

FAQ

Any pull requests & issues are warmly welcome :)

react-hook-async's People

Contributors

quannh25595 avatar dependabot[bot] avatar

Stargazers

 avatar  avatar Nguyễn Văn Cường avatar Alexis Jamet avatar Tomasz Gajda avatar Hoang Phu avatar

Watchers

James Cloos avatar Hoang Phu avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.