This HOC will pass to your React Component form props from react-final-form and props fromconnectResources
Also this HOC will predefine onSubmit function. In case your are using customresource, then it will use this.props[namespace].request. Otherwise it will send POST or PATCH HTTP request based on endpoint and props.
Interceptor function that can help you to modify react-final-form values before sending submit action.
Here you also has props from your Component so that to can merge form values and props if needed.
function(values, props, form):Object
import{ withFinalForm }from'@cranium/resource'
exportdefaultwithFinalForm(
{
valuesInterceptor:(values, props, form)=>{
return{
...values,
city: props.city,
name: values.name.toUpperCase()
}
}
},
'users'
)
caution
Please pay attention that you can not call any function that will change store or form state in valuesInterceptor function. This should be pure function without any side effects!
//In this case `withFinalForm` will send GET /api/users/me request and setup initial values as a response from API call.
// initial values as const
import{ withFinalForm }from'@cranium/resource'
exportdefaultwithFinalForm({
initialValues:{
account:'Conductor'
}
},'users/me')(FormViewComponent)
// initial values as a function
import{ withFinalForm }from'@cranium/resource'
exportdefaultwithFinalForm({
initialValues:(props)=>{
return{
account: props.account
}
}
},'users/me')(FormViewComponent)
caution
Please pay attention that you can not call any function that will change store or react state in initialValues function. This should be pure function without any side effects!
prefetch:true//this is default value. and it is here just for example
})(MyReactElement)
importMyFormfrom'myform'
functionApp(){
return<MyForm uuid="234"/>
}
That means that it is form for updating existing user.
In this case u will have:
1. Send GET /users/:uuid on mount
2. Pass response data as initial values
3. Send PATCH /users/:uuid on submit
prefetch:true//this is default value. and it is here just for example
})(MyReactElement)
importMyFormfrom'myform'
functionApp(){
return<MyForm/>
}
That means that it is form to create new user.
In this case it will have different scenario:
1. prefetch: true option will skip. There will not be GET request on mount
2. initial values will be empty.
3. Send POST /users on submit
Using this configuration it will call myCustomFetch function on mount component and on Submit.
Please, pay attention that prefetch option and REST API flow has same flow as with using simple resource the only one difference is that you can define your own async action.