Giter Club home page Giter Club logo

react-hook-remotedata's Introduction

react-hook-remotedata

A set of react hooks to fetch remote data following the pattern exposed in Slaying a UI Antipattern in Fantasyland

Install

npm install --save daggy react react-hook-remotedata

Examples

useRemoteData

This hook gives you a RemoteData object + a set of callbacks to update its state

import React, { useEffect } from "react";
import { useRemoteData } from "react-hook-remotedata";

function App() {
  const [data, { setLoading, setSuccess, setFailure }] = useRemoteData();

  useEffect(() => {
    setLoading();
    fetchSomething().then(json => setSuccess(json), err => setFailure(err));
  }, []);

  return (
    <div className="App">
      <h1>RemoteData Hook</h1>
      {data.cata({
        NotAsked: () => <p>Please start</p>,
        Loading: () => <p>Loading</p>,
        Failure: error => <p>Error: {JSON.stringify(error)}</p>,
        Success: data => <code>{JSON.stringify(data, null, 2)}</code>
      })}
    </div>
  );
}

function fetchSomething() {
  return new Promise(res => setTimeout(res, 3000))
    .then(() => fetch("https://jsonplaceholder.typicode.com/todos/1"))
    .then(response => response.json());
}

useFetchRemoteData

For this hook, you provide a promise returning function, and when you call runFetch(), the RemoteData object state is updated for you.

import React, { useEffect } from "react";
import { useFetchRemoteData } from "react-hook-remotedata";

function App() {
  const [data, runFetch] = useFetchRemoteData(() => fetchSomething());

  useEffect(() => {
    runFetch();
  }, []);

  return (
    <div className="App">
      <h1>RemoteData Hook</h1>
      {data.cata({
        NotAsked: () => <p>Please start</p>,
        Loading: () => <p>Loading</p>,
        Failure: error => <p>Error: {JSON.stringify(error)}</p>,
        Success: data => <code>{JSON.stringify(data, null, 2)}</code>
      })}
    </div>
  );
}

function fetchSomething() {
  return new Promise(res => setTimeout(res, 3000))
    .then(() => fetch("https://jsonplaceholder.typicode.com/todos/1"))
    .then(response => response.json());
}

react-hook-remotedata's People

Contributors

yannickdot avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 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.