codeburst

Bursts of code to power through your day. Web Development articles, tutorials, and news.

Follow publication

Less Redux Boilerplate with Union Types

Adam Recvlohe
codeburst
Published in
5 min readSep 2, 2017

Getting Started 🚀

$ create-react-app redux-union && cd redux-union && yarn add union-type redux react-redux ramda && yarn start

Get Going Already! 🏃🏻

import { combineReducers, createStore } from "redux";
import Type from "union-type";
import memoize from "ramda/src/memoize";
import path from "ramda/src/path";
case msg of
ButtonClick ->
model ! []

Messages 💬

const Msg = Type({ INCREMENT: [], DECREMENT: [] });
const nextState = Msg.caseOn({
INCREMENT: state => ({ count: state.count + 1 }),
DECREMENT: state => ({ count: state.count - 1 }),
_: state => state
});

State 📱

const initialState = {
count: 0
};

Update ⏰

function state(state = initialState, { type = Msg.DEFAULT, payload = null }) {
if (typeof type === "string") return state;
return nextState(type, state);
}

Store 🏪

// STOREconst store = createStore(
combineReducers({
state
}),
window.__REDUX_DEVTOOLS_EXTENSION__ && window.__REDUX_DEVTOOLS_EXTENSION__()
);

Actions 🤹‍

export const add = () => store.dispatch({ type: Msg.INCREMENT });
export const subtract = () => store.dispatch({ type: Msg.DECREMENT });

Selectors 👉

export const count = memoize(path(["state", "count"]));
export default store;

App Component 👩‍💻

import React from "react";
import { add, subtract, count } from "./store";
import { connect } from "react-redux";
const mapStateToProps = state => ({ count: count(state) });export default connect(mapStateToProps)(({ count }) => {
return (
<div className="App">
<button type="button" onClick={add}>
ADD
</button>
<button type="button" onClick={subtract}>
SUBTRACT
</button>
{count}
</div>
);
});
import React from "react";
import ReactDOM from "react-dom";
import { Provider } from "react-redux";
import "./index.css";
import App from "./App";
import registerServiceWorker from "./registerServiceWorker";
import store from "./store";ReactDOM.render(
<Provider store={store}>
<App />
</Provider>,
document.getElementById("root")
);
registerServiceWorker();

Summary ✅

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

Published in codeburst

Bursts of code to power through your day. Web Development articles, tutorials, and news.

Written by Adam Recvlohe

developer, writer of prose, educator of self and others

Responses (2)

Write a response