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

redux-maroon

v0.1.3

Published

Redux maroon is a utility to create async middleware for redux that trys to decouple sideeffects from your application.

Downloads

9

Readme

Redux Maroon

Build Status

Middleware creator that allows you to generate async code and maroon it into middleware so it does not effect your application code.

Why

There are many ways to handle async processes in Redux and this is just another alternative. This is all promise based so you can use it with async/await and it make handing async calls pretty. It also try to force some good patterns by only exposing data over certain methods.

Install

npm i redux-maroon
# or
yarn add redux-maroon

Usage

Everything is functions! You just need to create a case which is just a function to handle a certain action type. Then pass that case the createMaroon function. A piece of middleware will be returned.

Creating middleware

// my-middleware.js
import { createMaroonCase, createMaroon } from 'redux-maroon';

export const fooCase = createMaroonCase('FOO', () => api.get('/foo'));
export const barCase = createMaroonCase('BAR', () => api.get('/bar'));
export const myMiddleware = createMaroon(fooCase);

Adding to redux store

Then attach it to your redux store.

// my-store.js
import { myMiddleware } from './my-middleware';
...
createStore(
  rootReducer,
  initialState,
  applyMiddleware(
    myMiddleware,
  )
);
...

Now calling an action that triggers FOO will trigger our api.get method. The action will also return a promise but the response is only dispatched in actions.

Setting up reducer

Maroon will create a few new actions based off of the initial action type given to a case. If you pass FOO as your action type, Maroon will create FOO_RESOLVE, FOO_REJECT, and FOO_FINALLY,

import { fooCase } from './my-middleware';

export const myReducer = (state = initialState, action) => {
  switch (action.type) {
    // maroon pass through all actions so you can handle initial states
    case fooCase.action.trigger: // FOO
      return {
        ...state,
        loading: true,
      };
    case fooCase.action.resolve: // FOO_RESOLVE
      return {
        ...state,
        response: action.response,
        loading: false,
      };
    case fooCase.action.reject: // FOO_REJECT
      return {
        ...state,
        error: action.error,
        loading: false,
      };
    // or alternatively use finally since finally is always called
    case fooCase.action.finally: // FOO_FINALLY
      return {
        ...state,
        response: action.response,
        error: action.error,
        loading: false,
      };
    default:
      return state;
  }
};

Terminology

Maroon

Maroon is just middleware. The term maroon is used to denote that the code is meant to be pushed away from other part of your application of code.

Case

A case is like a case in a case/switch statement. A case is just an interface for Maroon to consume. Here is what the interface is.

export type MaroonHandler = (action: any) => Promise<any>;

export interface MaroonCase {
  actions: {
    trigger: string;
    resolve: string;
    reject: string;
    finally: string;
  };
  handler: MaroonHandler;
}

Why not use...

Sagas

Sagas are great and have filled this void for a long time, but they use generators under the hood. Generators have more of a learning curve over promises or async/await. You should look into sagas if you need to.

  • pause or cancel async actions

Thunks/Promise Middleware

These are great pieces of middleware and have their purpose. The are very universal and allow consumers of them to do just about anything. This can lead to some patterns that lead to applications to do things like: data processing logic, specific api error handling, and promise resolving in components. On the surface these are not terrible patterns but can lead to fragmented information and silo'd data.