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

@katis/typed-redux-actions

v10.1.0

Published

Easy typed Redux actions without boilerplate

Downloads

22

Readme

npm version

Typed Redux actions

Install

yarn add @katis/typed-redux-actions

Description

FSA compliant type safe Redux action creator utilities.

Using vanilla Redux with TypeScript can be tedious, since you have to repeat yourself multiple times:

const PLUS = 'ADD';
const MINUS = 'SUBTRACT';
const DIV = 'DIVIDE';
const CLEAR = 'CLEAR';
const INVALID = 'INVALID';

interface PlusAction { type: 'ADD'; payload: { add: number }; }
interface MinusAction { type: 'SUBTRACT'; payload: { subtract: number }; }
type DivAction = { type: 'DIVIDE', payload: { divide: number } } | { type: 'DIVIDE', payload: Error, error: true };
interface ClearAction { type: 'CLEAR'; }
interface InvalidAction { type: 'INVALID'; error: true; payload: Error; }

type Action = PlusAction | MinusAction | DivAction | ClearAction | InvalidAction;

const Action = {
  plus: (payload: { add: number }): PlusAction => ({ type: PLUS, payload }),
  minus: (payload: { subtract: number }): MinusAction => ({ type: MINUS, payload }),
  div: (payload: { divide: number } | Error): DivAction => payload instanceof Error ? { type: DIV, payload, error: true } : { type: DIV, payload },
  clear: (): ClearAction => ({ type: CLEAR }),
  invalid: (error: Error): InvalidAction => ({ type: INVALID, error: true, payload: error }),
};

With typed-redux-actions, you can automatically derive action type constants and actions union type from your action creators:

Action creator builders

// actions.ts

import { action } from '@katis/typed-redux-actions';

export const plus = action('plus')
  .payload<{ add: number }>()

export const minus = action('minus')
  .payload<{ subtract: number }>()

export const div = action('div')
  .payload<{ divide: number }>()
  .canFail()

export const clear = action('clear')

export const invalid = action('invalid')
  .error()

Usage in a reducer:

// reducer.ts

import { ActionsUnion, isError } from '@katis/typed-redux-actions';
import * as Action from './actions.ts'

interface State {
  result: number;
  error: string;
}

type Action = ActionsUnion<typeof Action>;

function reducer(state: State = initialState, action: Action) {
  switch (action.type) {
    case Action.plus.type:
      return { ...state, result: state.result + action.payload.add };
    case Action.minus.type:
      return { ...state, result: state.result - action.payload.subtract };
    case Action.div.type:
      if (isError(action)) {
        return { ...state, error: 'Tried to divide by zero.' };
      }
      return { ...state, result: state.result / action.payload.divide };
    case Action.clear.type:
      return { ...state, result: 0 };
    case Action.invalid.type:
      return { ...state, error: 'Invalid operation' };
    default:
      return state
  }
}

makeReducer

makeReducer uses type inference effectively to remove explicit type annotations and switch cases in reducer definition, while still keeping everything statically typed:

import { makeReducer } from '@katis/typed-redux-actions'
import * as Action from './actions.ts'

const initialState = {
  result: 0,
  error: '',
};

const reducer = makeReducer(initialState, Action)({
  plus: (state, { payload }) => ({ ...state, result: 0 + 2 }),
  minus: (state, { payload }) => ({ ...state, result: state.result - payload.subtract }),
  div: (state, action) => isError(action) ?
    { ...state, error: 'Tried to divide by zero' } :
    { ...state, result: state.result / action.payload.divide },
  clear: state => ({ ...state, result: 0 }),
  invalid: state => ({ ...state, error: 'Invalid operation' }),
});

ReducerState

You can easily get the full combined Redux state with this type level "function":

import { combineReducers } from 'redux'
import { ReducerState } from '@katis/typed-redux-actions'
import { localeReducer } from './localeReducer';
import { calculatorReducer } from './calculatorReducer';

const reducer = combineReducers({
  locale: localeReducer,
  calculator: calculatorReducer,
});
type State = ReducerState<typeof reducer>;