Security News
Opengrep Emerges as Open Source Alternative Amid Semgrep Licensing Controversy
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
redux-recompose
Advanced tools
A Redux utility belt for reducers and actions. Inspired by acdlite/recompose.
redux-recompose
provide tools to write less reducers/actions code.
Here is a blog post about it.
Usually, we are used to write:
// actions.js
function increment(anAmount) {
return { type: 'INCREMENT', payload: anAmount };
}
// reducer.js
function reducer(state = initialState, action) {
switch(action.type) {
case 'INCREMENT':
return { ...state, counter: state.counter + action.payload };
default:
return state;
}
}
With the new concept of target of an action, we could write something like:
// actions.js
// Define an action. It will place the result on state.counter
function increment(anAmount) {
return { type: 'INCREMENT', target: 'counter', payload: anAmount };
}
// reducer.js
// Create a new effect decoupled from the state structure at all.
const onAdd = (state, action) => ({ ...state, [action.target]: state[action.target] + action.payload });
// Describe your reducer - without the switch
const reducerDescription = {
'INCREMENT': onAdd()
}
// Create it !
const reducer = createReducer(initialState, reducerDescription);
Effects are functions that describe how the state changes, but are agnostic of what part of the state is being changed.
redux-recompose
provides some effects to ease reducer definitions. These are:
New effects are welcome ! Feel free to open an issue or even a PR.
There are a few creators that also ease writing Redux reducers and async actions.
Since state handling is decoupled from its state, we could create some more complex async actions, or even map an effect with an action type to create families of actions.
More crazy and useful ideas are welcome too!
You could use completers to reduce your code size. Completers are functions that take partial definitions (i.e. descriptors) and help to construct the whole definition.
Completers in general looks like this:
There are a few completers that can be used:
There's currently documentation for the following:
Middlewares allow to inject logic between dispatching the action and the actual desired change in the store. Middlewares are particularly helpful when handling asynchronous actions.
The following are currently available:
The way redux-recompose
updates the redux state can be configured. The default configuration is
(state, newContent) => ({ ...state, ...newContent })
You can use configureMergeState
to override the way redux-recompose
handles state merging. This is specially useful when you are using immutable libraries.
For example, if you are using seamless-immutable
to keep your store immutable, you'll want to use it's merge
function. You can do so with the following configuration:
import { configureMergeState } from 'redux-recompose';
configureMergeState((state, newContent) => state.merge(newContent))
This library was inspired by acdlite/recompose. Let's keep creating tools for ease development.
git checkout -b my-new-feature
)git commit -am 'Add some feature'
)git push origin my-new-feature
)This project was written by Manuel Battan and it is maintained by Wolox.
redux-recompose is available under the MIT license.
Copyright (c) 2017 Manuel Battan <manuel.battan@wolox.com.ar>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
[3.0.0] - 2021-03-15
completeState({a:1,b:2}, ['b'])
is now completeState({description: {a: 1}, ignoredTargets: {b: 2})
completeTypes(['LOGIN'], ['AUTH_INIT', 'LOGOUT'])
is now completeTypes({primaryActions: ['LOGIN'], ignoredActions: ['AUTH_INIT', 'LOGOUT'])
onSubscribe
and onUnsubscribe
effectsFAQs
A Redux utility belt for reducers and actions. Inspired by acdlite/recompose.
The npm package redux-recompose receives a total of 237 weekly downloads. As such, redux-recompose popularity was classified as not popular.
We found that redux-recompose demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 28 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.