A lightweight solution to handle your redux state, reducers, listeners and sagas in a convenient way.
Redux and redux-saga are commonly use to handle globals states in moderns JavaScript applications. Their integrations in projects on the long term can be painfull and lead to complex files structures that make code edition a headache. IceCream takes up the idea of models by the framework dvaJs to centralize all the logic but with a less opiniated behavior. It's why iceCream is not considered a framework, but more a tool to simplify and organize your code logic.
// index.js
import iceCreamPlease from "icecream-please";
import userModel from "./src/models/userModel";
import authModel from "./src/models/authModel";
const store = iceCreamPlease({
models: [userModel, authModel],
});
...
IceCreamPlease is a function that you import in the root file of your project. This function returns the redux store object that you normally get with the redux's createStore
function. And that's it.
Use your favorite packages manager:
yarn add icecream-please
or
npm i --save icecream-please
Let's start by writting a model.
A model is a classic JavaScript object key/value
that will contains all the necessary logic for a part of your application to works.
You can have only one model for your entire application, but it usually useful to organize your application by splitting it in differents parts.
Let's create a model to handle a basic counter:
// counterModel.js
export default {
modelname: "counter",
state: {
number: 0
},
reducers: {
add(state) {
return {
...state,
number: state.number + 1
};
},
sub(state) {
return {
...state,
number: state.number - 1
};
},
reset(state) {
return {
...state,
number: 0
};
}
},
effects: {},
listeners: {}
};
You have in this model the state of the counter with his initial value and the reducers to mutate the state. Even if we don't use any effects or listeners, keys must be there with an empty object. Model's structure are immutable, if you want to know more about it, you can directly click here.
Ok, you remember the code at the top of this page? Well we do exactly the same thing here:
// index.js
import iceCreamPlease from "icecream-please";
import counterModel from "./counterModel";
const store = iceCreamPlease({
models: [counterModel],
});
...
IceCreamPlease is working with redux and redux-saga, that's all. It means that you can use it with any kind of JavaScript libraries and frameworks. We use React here:
// index.js
import React from "react";
import ReactDOM from "react-dom";
import { Provider } from "react-redux";
import iceCreamPlease from "icecream-please";
import counterModel from "./counterModel";
import App from "./components/App";
const store = iceCreamPlease({ models: [counterModel] });
const Container = () => (
<Provider store={store}>
<App />
</Provider>
);
ReactDOM.render(<Container />, document.getElementById("root"));
Here the code of the App.js file:
// App.js
import React from "react";
import { connect } from "react-redux";
const App = props => {
const {
counter: { number },
dispatch
} = props;
return (
<div style={{ textAlign: "center" }}>
<h2>Use the counter:</h2>
<h2>{number}</h2>
<div>
<button
onClick={() => {
dispatch({ type: "counter/sub" });
}}
>
SUB
</button>
<button
onClick={() => {
dispatch({ type: "counter/reset" });
}}
>
RESET
</button>
<button
onClick={() => {
dispatch({ type: "counter/add" });
}}
>
ADD
</button>
</div>
</div>
);
};
export default connect(({ counter }) => ({ counter }))(App);
And VoilĂ ! You can find this example here and a less basic here.
IceCreamPlease takes as argument an object which can have the models
key that we just saw above and two others: middlewares
and enhancers
.
To have the same behavior that:
import { createStore, applyMiddleware, compose } from "redux";
import logger from "redux-logger";
import DevTools from "./containers/DevTools";
import reducer from "../reducers";
const store = createStore(
reducer,
compose(
applyMiddleware(logger),
DevTools.instrument()
)
);
Do:
import iceCreamPlease from "icecream-please";
import logger from "redux-logger";
import DevTools from "./containers/DevTools";
import myModel from "./myModel";
const store = iceCreamPlease({
models: [myModel],
middlewares: [logger],
enhancers: [DevTools.instrument()]
});