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 🙏

© 2026 – Pkg Stats / Ryan Hefner

react-redux-clarity

v2.1.2

Published

React and redux helper utilities for streamlining fetching

Readme

React Redux Clarity

NPM

CircleCI

React-redux-clarity provides helper utilities to standardize your reducers so that every action automatically has loading states and error handling.

Usage

yarn add react-redux-clarity \
  prop-types react-redux xhr

actions.js

We assume you are using redux-thunk to dispatch actions. Here in this example we use react-redux-clarity to do a get. It will take care of dispatching the fetching, success, and error states for us.

import clarity from 'react-redux-clarity';
import { READ } from './constants';

export const get = ({ id }) => (dispatch, getState) => clarity.action({
  dispatch,
  headers: {
    jwt: getState().auth.jwt,
  },
}).passthrough({
  customData: 'value',
}).get(`https://api.clarityhub.io/accounts/users/${id}`, {/* your payload for the url here */}, READ);

We support get, put, patch, post, and delete actions.

reducers.js

Here we'll use react-redux-clarity to handle the state and error for us. All we have to handle is the case where the request is successful. We'll also use the customData attribute that was passthrough'd above.

Note the .listen call in the chain. Since react-redux-clarity takes care of managing the request state for you, it needs to know which events you are explicitly listening for.

import clarity from 'react-redux-clarity';
import { READ } from './constants';

export default clarity.listen([
  READ,
]).reducer((state = {
  items: [],
}, action) => {
  switch(action.type) {
    case READ:
      return {
        customData: action.customData,
        items: action.payload,
      };
    default:
      return state;
  }
});

The .reducer() will pass passthrough the redux action with type @@INIT to your reducer.

You will also want to add our reducer to your store:

import { reducer } from 'react-redux-clarity';

export default combineReducers({
  requests: reducer,
});

component.js

We can use the get action we defined above in a helper Higher-Order Component called loader. Loader takes an action and an optional propMapper function (that maps props into an array). When you mount the wrapped MyComponent in the example below, the loader will take care of calling get for you.

loader also caches results so if many MyComponents get mounted with the same call signatures, get will only be called once.

import React from 'react';
import { loader } from 'react-redux-clarity';
import { get } from './actions';

const MyComponent = () => (<div />);

const propMapper = (props) => ([props.id]);
export default loader(get, propsMapper)()(MyComponent);

enhancers

These are located in react-redux-clarity/dist/enhancers. They will be removed in a future release.