brocoders / redux-async-connect

It allows you to request async data, store them in redux state and connect them to your react component.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

If route has params, how these params are transferred to redux-async-connect?

whatifif opened this issue · comments

For example, if the route is /widget/:id, how the id value is transferred to redux-async-connect?

If you want to fetch data for your component based on URL params this is how I'm doing it:

@asyncConnect([{
  promise: (options) => {
    const {
      store: { dispatch },
      params: { id },
    } = options;

    return dispatch(loadYourDataWidget(id));
  },
}])

As you can see you have params in options object. You should have the :id passed by URL

@andresgutgon Thank you for posting this. I just found myself needing to figure this out too. I'm newish to ES6, so this syntax threw me off a bit.

For anyone else struggling with this, here is my syntax that currently working.

// Ensure all articles are loaded regardless of route params. Equivalent to: options.store.dispatch
@asyncConnect([{
  promise: ({store: {dispatch}}) => {
    const promises = [];
    promises.push(dispatch(getArticles())); 
    ...
    return Promise.all(promises);
  }
}])

As opposed to:

// Include the route params too - Equivalent to: options.params,  options.store.dispatch
@asyncConnect([{
  promise: ({params, store: {dispatch}}) => {
    const promises = [];
    promises.push(dispatch(getArticleBySlug(params.slug)));
    ...
    return Promise.all(promises)
  }

Here are the full set of properties on that options object passed in.

  • store - commonly accessed props dispatch and getState
  • params - the route params
  • helpers
  • matchContext
  • router
  • history
  • location
  • routes

Thank you @andresgutgon - this was extremely helpful!

You're welcome :)

@blainegarrett Thanks for elaborating with your example. My existing syntax looked more like yours, so this massively helped me!