npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

nested-combine-reducers

v2.0.0

Published

Allows you to create your root reducer in one go, instead of individually combine slice reducers

Downloads

2,597

Readme

GitHub Codecov GitHub Workflow Status

nested-combine-reducers

Allows you to create your root reducer in one go, instead of individually combine slice reducers.

Introduction

Tipically you divide your state tree in multiple slices, each handled by its own reducer.
For example:

const reducers = {
    ui: uiReducer,
    data: dataReducer
};

But if you want to further split your slices in even more slices you would have to do:

const postsReducer = combineReducers({
    items: itemsReducer,
    favourites: favouritePostsReducer
});

const commentsReducer = ...;

const dataReducer = combineReducers({
    posts: postsReducer,
    comments: commentsReducer
});

const rootReducer = combineReducers({
    data: dataReducer,
});

As you can see you have to call combineReducers multiple times, potentially losing the overview of your state shape.
In fact, from the example above, it is not immediately clear what the state shape looks like.

This library tries to simplify the creation process of the root reducer by allowing to use a reducers map with nested reducing functions.

The example above using nestedCombineReducers would become:

const rootReducer = nestedCombineReducers({
    data: {
        posts: {
            items: itemsReducer,
            favourites: favouritePostsReducer
        },
        comments: ...
    }
});

Thanks to nestedCombineReducers it is immediately clear what the state shape looks like when your are creating your root reducer.
You can also use nestedCombineReducers to create just a slice and then create the rest of your root reducer with combineReducer.

Usage

Simply pass your reducers map object to nestedCombineReducers to get back your root reducer, like so:

const rootReducer = nestedCombineReducers({
    data: {
        posts: {
            items: itemsReducer,
            favourites: favouritePostsReducer
        },
        comments: ...
    }
});

With CommonJS

const { nestedCombineReducers } = require('nested-combine-reducers/cjs');

Note: Import from /cjs folder !

With ES Modules

import { nestedCombineReducers } from 'nested-combine-reducers'

Installation

Note: This library requires at least Redux 4.

You can get nestedCombineReducers from NPM by running npm install nested-combine-reducers.
The NPM package is hybrid, that means that you get both the ES Modules and the CommonJS version.
nestedCombineReducers is written in TypeScript and typings are provided with the package.
Frankly, I'm not a fan of having small utility functions installed as a dependency, therefore I suggest to simply copy/paste the function.