I am using redux-form 6.0.0-rc.5 and I am trying to display the form values as they are entered by the user.
However, I want these values to be displayed from another component, not the redux form itself.
So, my simplified App architecture would be like that :
<App /> -> (main component -container ?-)
<List /> -> (connect to form values and pass them down)
<Elem /> -> (display form value)
<Form /> -> (enter form values)
The component is a redux-form mounted to 'form' and is working.
Form = reduxForm({
form: 'formName'
})(Form)
What would be a good way of getting the form values (from state form.formName.values) and send them to my Display component ?
Things I have tried :
Connect App to the store and mapStateToProps (form.formName.values) then pass it down to Display as a prop. But it throws an error since values does not exist in the form state until the user has typed anything.
Using the function getFormValues('formName') provided by redux-form inside the List component but it returns a function or undefined :
Elem
const Elem = ({ name }) => (
<li>{name}</li>
)
List
const List = ({ values }) => (
{values.map(value => <Elem name={value.name} />)}
)
List = connect(
state => ({
values: getFormValues('formName')
})
)(List)
There must be something I am missing or I still do not understand correctly whether it is with redux-form or redux itself... I hope someone will be able to enlighten me !
Thank you and have a great day.