For the past weeks I've been trying to learn React and Redux. Now I have met a problem thay I haven't found a right answer to.
Suppose I have a page in React that gets props from the link.
const id = this.props.params.id;
Now on this page, I'd like to display an object from STORE with this ID.
const initialState = [
{
title: 'Goal',
author: 'admin',
id: 0
},
{
title: 'Goal vol2',
author: 'admin',
id: 1
}
]
My question is: should the function to query the the object from the STORE be in the page file, before the render method, or should I use action creators and include the function in reducers. I've noticed that the reduceres seem to contain only actions that have an impoact on store, but mine just queries the store.
Thank you in advance.
You could use the mapStateToProps function to query the store when you connect the component to redux:
import React from 'react';
import { connect } from 'react-redux';
import _ from 'lodash';
const Foo = ({ item }) => <div>{JSON.stringify(item)}</div>;
const mapStateToProps = (state, ownProps) => ({
item: _.find(state, 'id', ownProps.params.id)
});
export default connect(mapStateToProps)(Foo);
(This example uses lodash - _
)
The mapStateToProps function takes in the whole redux state and your component's props, and from that you can decide what to send as props to your component. So given all of our items, look for the one with the id matching our URL.
https://github.com/rackt/react-redux/blob/master/docs/api.md#arguments