Dealing with APIs in React with ReactRemoteData

Last year I wrote about RemoteDataJS, a library I released on GitHub that made it really easy to deal with data from APIs in JavaScript.
This library lets you represent remote pieces of data properly, dealing with all the different states it can be in,…

Last year I wrote about RemoteDataJS, a library I released on GitHub that made it really easy to deal with data from APIs in JavaScript.

This library lets you represent remote pieces of data properly, dealing with all the different states it can be in, and any errors that might occur. Since writing that library I’ve been doing a lot of work with React, which has fast become my framework of choice, and I’ve now written a React library for RemoteData.

React Remote Data

React Remote Data provides a React component that will deal with loading some data and showing you the results. You tell it what to render for each possible state that your data might be in, and it does the rest.

You can install the library from npm by running npm install react-remote-data-js. Let’s see how we can use this component, by writing a component that renders your data from the GitHub API.

You have to give the RemoteData five props:

  • url, which is the URL that should be fetched. This can be a function instead, but we’ll tackle that later.

The other four props all map to the states of the API request, which can be one for states:

  • notAsked – the request has not been made yet
  • pending – the request is in progress
  • success – the request has succeeded
  • failure – the request has failed

The RemoteData component expects a function for each of these possible states, and it will render the right component based on the right state.

First, let’s define a function for the notAsked state. This gets called with a prop called fetch, which is the function called to trigger the request. Our notAsked function looks like so:

const notAsked = props => (
<div>
<button onClick={props.fetch}>Make Request</button>
</div>
);

Next, we’ll write a function for the pending state, which will simply show some loading text (you could render a spinner here, for example):

const pending = () => <p>Loading...</p>;

Next, our success case. When a request has succeeded the data will be provided via the request prop, which contains all the information about the request, including a data key, which has the parsed data as JSON, which we can render:

const success = props => (
<div>
<p>Name: {props.request.data.login}</p>
</div>
);

In this case one of the properties that Github gives us is login, so I’ll render that onto the screen.

Finally, we can deal with the failure case by logging an error. In this case, request.data will be the HTTP error, and we can output the message property:

const failure = props => (
<div>
<p>Error: {props.request.data.message}</p>
</div>
);

And with that we now have all the properties required to create the RemoteData instance:

import RemoteData from 'react-remote-data-js';

const GithubData = () => (
<RemoteData
url="http://api.github.com/users/jackfranklin"
notAsked={notAsked}
pending={pending}
success={success}
failure={failure}
/>
);

Under the hood, RemoteData keeps track of the request’s state and ensures that the component renders the correct function depending on the state of the HTTP request.

Thoughts on creating ReactRemoteData and abstracting with React

I think that this library also shows just how powerful React is and how we can use it to abstract libraries behind components. The entire source of the library is only 55 lines long, and I’ve come to really enjoy using React in this way. Hiding complexity in components that are then easily reused is a great way to help developers build applications quicker and with more clarity, because you can read the components being used in the code and take an educated guess on what they do.

Another benefit of creating components like this is that it’s very easy for you to create customised versions of them. Let’s say you have a standard HttpError component, that takes an error and shows a nice message to the user. You want to add ReactRemoteData to your app, and you want every single instance of it to render your HttpError component when something goes wrong. You can simply wrap ReactRemoteData with your own version:

import HttpError from 'your/app/components'

const MyRemoteData = props => (
  <ReactRemoteData {...props} failure={props => <HttpError {...props} />} />
)

export default MyRemoteData

This makes it easy to deal with errors in one place, and be able to change it in just one place if your requirements change later on.

Conclusion

If you’d like an easy library that takes all the hassle out of remote HTTP requests, then I think ReactRemoteData might be for you. You can find further instructions on its usage on the GitHub repository and I’d love to hear any of your thoughts via Twitter or as a GitHub issue.


Print Share Comment Cite Upload Translate
APA
Jack Franklin | Sciencx (2024-03-28T22:14:55+00:00) » Dealing with APIs in React with ReactRemoteData. Retrieved from https://www.scien.cx/2017/03/02/dealing-with-apis-in-react-with-reactremotedata/.
MLA
" » Dealing with APIs in React with ReactRemoteData." Jack Franklin | Sciencx - Thursday March 2, 2017, https://www.scien.cx/2017/03/02/dealing-with-apis-in-react-with-reactremotedata/
HARVARD
Jack Franklin | Sciencx Thursday March 2, 2017 » Dealing with APIs in React with ReactRemoteData., viewed 2024-03-28T22:14:55+00:00,<https://www.scien.cx/2017/03/02/dealing-with-apis-in-react-with-reactremotedata/>
VANCOUVER
Jack Franklin | Sciencx - » Dealing with APIs in React with ReactRemoteData. [Internet]. [Accessed 2024-03-28T22:14:55+00:00]. Available from: https://www.scien.cx/2017/03/02/dealing-with-apis-in-react-with-reactremotedata/
CHICAGO
" » Dealing with APIs in React with ReactRemoteData." Jack Franklin | Sciencx - Accessed 2024-03-28T22:14:55+00:00. https://www.scien.cx/2017/03/02/dealing-with-apis-in-react-with-reactremotedata/
IEEE
" » Dealing with APIs in React with ReactRemoteData." Jack Franklin | Sciencx [Online]. Available: https://www.scien.cx/2017/03/02/dealing-with-apis-in-react-with-reactremotedata/. [Accessed: 2024-03-28T22:14:55+00:00]
rf:citation
» Dealing with APIs in React with ReactRemoteData | Jack Franklin | Sciencx | https://www.scien.cx/2017/03/02/dealing-with-apis-in-react-with-reactremotedata/ | 2024-03-28T22:14:55+00:00
https://github.com/addpipe/simple-recorderjs-demo