Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can I send an AJAX call in React and Redux without action creators and reducers?

I have a few ajax requests that are not directly manipulating my apps state. In a react/redux application is it necessary (or is there any benefit) to dispatch an action for these ajax requests instead of just sending an ajax request directly in the component?

To simplify my scenario, I essentially have a list of objects on my redux state. I am using a form to post a new object to the database, upon successful post I am redirecting to the list page where a GET request is sent and the list is fetched and the state is updated.

The AJAX call to post a new object is not directly manipulating my state.

The team I am working with is going through the full 3 step redux async steps ex: 'FETCH_REQUESTED', 'FETCH_SUCCESS', 'FETCH_FAIL' along with the respective reducers for all the AJAX requests and it's a big hassle to add more and the reducers don't seem to make sense.

like image 746
jmancherje Avatar asked Apr 14 '16 23:04

jmancherje


People also ask

Can AJAX be used with React?

You can use any AJAX library you like with React. Some popular ones are Axios, jQuery AJAX, and the browser built-in window. fetch.

Which function we use in React to initiate an AJAX request?

In this method, we initiate the AJAX request using XMLHttpRequest . We use the GET method and https://programming-quotes-api.herokuapp.com/quotes/page/1 as the endpoint which returns a JSON output of first page quotes. readystatechange handler is called when the readyState of the request changes.

How do you make AJAX call in React hooks?

create a new React Hook. this Hook will accept an URL to fetch and a series of options (queries, method and body) this Hook will return an object with the AJAX response and a loading and error boolean values. Every time one of the options given to the hook is changed, the Hook will fetch again the URL.


1 Answers

You can absolutely send AJAX calls directly from components!

Redux is a tool for making shared state globally available to multiple components, and changed in predictable way. In any case where you don’t find this necessary, don’t do it.

Keeping AJAX calls in action creators is convenient when different components make the same API requests and then change the state in similar ways. It is also convenient if you want to avoid firing off a request when there is already some cached data available, and you want to keep such checks in a single place rather than scattered across the components.

That said Redux is only concerned with how global state is updated, and if you just need to make an AJAX request from some component, you don’t have to write an action creator or a reducer for it unless you find it convenient.

Generally saying Redux (and Flux) is what you might consider refactoring your code to when you have many complicated components; not what you should start every component with. You can use only the parts of it that you need (e.g. just the synchronous stuff), or even avoid it altogether in some cases (e.g. a collapsible panel doesn’t have to store its state in a store). Only use it when you understand the specific benefits it gives you in a particular situation, never “just in case” or because it is popular.

See also my answer to “How do dispatch a Redux action with a timeout?”

To address your specific example, you might want to use Redux for this if you use the benefits Redux gives you: maybe you dispatch an action to update the form optimistically and display the new list right away, and merge it with the fetched list when it is available so that the interaction appears instantaneous. That is the use case for async action creators. If you’re not looking at this kind of UX complexity, I’m not sure Redux is necessary at all.

like image 69
Dan Abramov Avatar answered Oct 16 '22 20:10

Dan Abramov