urlPushInAction(actionType, queryParam, valueType)
A helper function to create action creators that can create actions interpretable by urlQueryMiddleware and urlQueryReducer to push a change to one query parameter into the URL, adding an entry to the history stack. The standard format of an action produced by the action creators this function creates is:
{
type: actionType,
meta: {
updateType: UrlUpdateTypes.pushIn,
urlQuery: true
},
payload: {
queryParam: String,
encodedValue: String,
decodedValue: Any,
type: valueType,
}
}
Arguments
actionType
(String): The standard redux action type, maps totype
in the action.queryParam
(String): The name of the query parameter to update in the URL.valueType
(String|Function|Object): The type of the data. This is used to encode the data viaencode
.
Returns
(Function): An action creator that will produce an action that is recognizable by urlQueryMiddleware and urlQueryReducer.
Remarks
- The default urlQueryReducer provided by React URL Query interprets the
updateType
property in the meta of the action to update the URL accordingly. If you are not using it, you'll need to do so manually.
Examples
const changeFoo = urlPushInAction('CHANGE_FOO', 'foo', UrlQueryParamTypes.number);
dispatch(changeFoo(137));
/*
dispatches action of form:
{
type: 'CHANGE_FOO',
meta: {
urlQuery: true,
updateType: UrlUpdateTypes.pushIn
},
payload: {
queryParam: 'foo',
encodedValue: '137',
decodeValue: 137,
type: UrlQueryParamTypes.number
}
}
*/