
Security News
Software Engineering Daily Podcast: Feross on AI, Open Source, and Supply Chain Risk
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.
redux-simple-container
Advanced tools
It has happened to me very often to realize only at the end of the creation of a component of needing to connect it with redux. This HOC speed up the container creation.
npm install --save redux-simple-container
or
yarn add redux-simple-container
import reduxSimpleContainer from "redux-simple-container";
const TitleComponent = ({ title, changeTitle, changeTitleSecondButton }) => (
<div>
<h1>{title}</h1>
<button onClick={() => changeTitle("NEW TITLE")}>Change Title</button>
<button onClick={() => changeTitleSecondButton()}>Change Title</button>
</div>
);
const changeTitleSecondButton = () => dispatch =>
dispatch({ type: "CHANGE_TITLE", title: "SECOND TITLE" })
};
export default reduxSimpleContainer(
[{ type: "CHANGE_TITLE", params: ["title"] }, "dispatch",
changeTitleSecondButton],
["titleState.title"],
TitleComponent
);
import { connect } from "react-redux";
import TitleComponent from "../components/TitleComponent";
import { bindActionCreators } from "redux";
const mapStateToProps = (state, ownProps) => ({
title: state.titleState.title
});
const mapDispatchToProps = dispatch => ({
changeTitle: title => dispatch({ type: "CHANGE_TITLE", title }),
dispatch,
...bindActionCreators({ changeTitleSecondButton }, dispatch)
});
export default connect(
mapStateToProps,
mapDispatchToProps
)(TitleComponent);
to summarize is a function that takes these 3 parameters.
actions: First parameter. An array of actions that will create the mapDispatchToProps object. they can be of three type:
string: the prop name is the camelCase value of the string and it is a function that dispatch an action with the string passed as a type. you can pass "dispatch" and you will get the dispatch function as a prop. example of passing "CHANGE_TITLE"
{
...
changeTitle: () => dispatch({ type: "CHANGE_TITLE" }),
...
}
object: action can be an object with the type of the action to dispatch and an array of params that you want to attach to the function. example an action like
{
type: "CHANGE_TITLE",
params: ["title"],
}
creates a key in the mapDispatchToProps like this
{
...
changeTitle: (title) => dispatch({ type: "CHANGE_TITLE", title }),
...
}
otherwise you can simply pass function that will be bind as a props with redux bindActionCreators
stateRequested: Second parameter. Is an array of string. you have to pass a list of state key to map as a props. you can request nested state key split keys with a point. example if you pass an array like this
["book", "book.title", "book.author"]
it will create a mapStateToProps object like this
{
book: state.book,
title: state.book.title,
author: state.book.author
}
Component: Third parameter. the component to connect.
if you want to contribute to the development of the package feel free to do it.
npm install
// to build the demo folder
npm run dev
// to build the source
npm run build
FAQs
HOC to automate the creation of redux containers
We found that redux-simple-container demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.

Security News
GitHub has revoked npm classic tokens for publishing; maintainers must migrate, but OpenJS warns OIDC trusted publishing still has risky gaps for critical projects.

Security News
Rust’s crates.io team is advancing an RFC to add a Security tab that surfaces RustSec vulnerability and unsoundness advisories directly on crate pages.