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

kaczka

v1.0.8

Published

redux ducks system built with flowtype in mind

Downloads

19

Readme

Features

Shortest ever action define syntax:

import { createDuck } from 'kaczka';
const duck = createDuck('define-action-test');
const foo = duck.defineAction('FOO');
const bar = duck.defineAction('BAR');

That's it! Now you can create reducer and map your actions:

const INITIAL_STATE = { x: 0 };
const reducer = duck.createReducer(INITIAL_STATE);
reducer.withHandler(foo, s => s));
reducer.withHandler(bar, s => s);

Note: when you define an action, there's an internal property actionType added to the action creator function. Which makes the magic possible.

Also you can import a special constant ActionMatchers to match actions by a pattern:

import { createDuck, ActionMatchers } from 'kaczka';
reducer.withHandler(ActionMatchers.DEFAULT, s => s);

Right now the only supported matcher is DEFAULT, which allows you to handle all unmatched actions (as default case in plane swith/case reducer).

Short and and consistent typing syntax

// flow
import { createDuck } from 'kaczka';

const duck = createDuck('define-action-test');
const foo = duck.defineAction<{ x: number }, Error>('FOO');

kaczka enforces FSA convention, for that reason you should add type for both success and error payload to your actions. Also flow will warn you when you have not handled error case in your reducer:

const INITIAL_STATE = { x: 0, events: [] };
const reducer = duck.createReducer<typeof INITIAL_STATE>(INITIAL_STATE);
reducer.withHandler(foo, (state, action) => ({
  ...state,
  x: action.payload.x, // Error doesn't have field `x`
}));

To make it pass typecheck, you need to check if it's an error action:

const INITIAL_STATE = { x: 0 };
const reducer = duck.createReducer<typeof INITIAL_STATE>(INITIAL_STATE);
reducer.withHandler(foo, (state, action) => (action.error ? {
  ...state,
  events: [...state.events, action.payload.message],
} : {
  ...state,
  x: action.payload.x,
}));

However, you may want to add a handler for positive case only, you need to use method withSuccessHandler:

const INITIAL_STATE = { x: 0 };
const reducer = duck.createReducer<typeof INITIAL_STATE>(INITIAL_STATE);
reducer.withSuccessHandler(foo, (state, action) => ({
  ...state,
  x: action.payload.x,
}));

There's also method withErrorHandler, may be handy for example to log all errors, together with ActionMatchers:

const INITIAL_STATE = { x: 0 };
const reducer = duck.createReducer<typeof INITIAL_STATE>(INITIAL_STATE);
reducer.withErrorHandler(ActionMatchers.DEFAULT, (state, action) => ({
  ...state,
  events: [...state.events, action.payload.message],
}));

You can stop typing your handlers additionally, with kaczka both action creator, and reducer handlers, will be inferred from the action definition. Also you will never forget to ...state, or other shape related errors, thanks to typing inference.

Installation

yarn add kaczka

or

npm i -S kaczka

Examples

Still work in progress, but you can find some here.

P.S.

'kaczka' === toLatineLetters(translateToBelarus('duck'));