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-breeze-plugin-better-promise

v2.0.0

Published

redux-better-promise plugin for redux-breeze

Downloads

3

Readme

redux-breeze-plugin-better-promise

redux-better-promise plugin for redux-breeze

CircleCI

Usage

Install

npm i redux-breeze-plugin-better-promise

Apply plugin

import createBreeze from 'redux-breeze';
import reduxBetterPromisePlugin from 'redux-breeze-plugin-better-promise';

export const breezeInstance = createBreeze(actionsDefinitions, config, reduxBetterPromisePlugin);

Create simple async or sync action

Add action definition:

const actionsDefinitions = {
  foo: {
    bar: {
      type: 'better-promise',
      async: actionParam => Promise.resolve(actionParam)
    },
    baz: {
      type: 'better-promise',
      sync: actionParam => actionParam * 2,
    },
  },
};

Then you will see initial state that looks like this:

{
  foo: {
    pending: {
      bar: false,
      baz: false,
    },
    lastSucceeded: {
      bar: false,
      baz: false,
    },
    lastFailed: {
      bar: false,
      baz: false,
    },
    failed: {
      bar: false,
      baz: false,
    },
    succeeded: {
      bar: false,
      baz: false,
    },
    lastSucceeded: {
      bar: false,
      baz: false,
    },
    error: {
      bar: null,
      baz: null,
    },
    result: {
      bar: null,
      baz: null,
    },
  },
}

Use it:

import breezeInstance from 'breezeInstance';

...

handleClick = () => {
  this.props.bar(param);
}

...

connect(
  state => ({
    pending: state.foo.pending.bar, // boolean, if true action has started but has not been resolved or rejected yet
    succeeded: state.foo.succeeded.bar, // boolean, if true action has succeeded at least once since last reload
    failed: state.foo.failed.bar, // boolean, if true action has failed at least once since last reload
    lastSucceeded: state.foo.lastSucceeded.bar, // boolean, if true action suceeded last time
    lastFailed: state.foo.lastFailed.bar, // boolean, if true action failed last time
    error: state.foo.error.bar, // null|any, contains last error (reason of promise rejection or caught error) or null if action has never failed
    result: state.foo.result.bar, // null|any, contains last result or null if action has never succeeded
  }),
  {
    bar: breezeInstance.getAction('bar'),
  }
)(MyComponent);

Passing parameters to action

In the example above, first param passed to the action when dispatching, will be available as the first parameter of the async function:

this.props.bar('someData'); // promise will be resolved with 'someData' value and that value will be available in `state.foo.result.bar`

To provide more data you can use object:

this.props.myFancyAction({ foo, bar, baz });

Custom result or error handling

You can define what happens to result or errors (data which Promise is resolved or rejected with) in action definition:

const actionsDefinitions = {
  foo: {
    bar: {
      type: 'better-promise',
      async: actionParam => IWillReturnPromise(actionParam),
      result: {
        pathInState: 'result.pathInAction',
        fieldOne: 'result',
        fieldTwo: 'result.someCustomField',
        'fieldThree.subField': 'result.anotherFieldInResult',
      },
      error: {
        differentPathInState: 'error.pathInError',
        errorOne: 'error',
        errorTwo: 'error.someCustomField',
        'errorThree.subField': 'error.anotherFieldInError',
      }
    },
  },
};

Then you will see initial state that looks like this:

{
  foo: {
    pending: {
      bar: false,
    },
    lastSucceeded: {
      bar: false,
    },
    lastFailed: {
      bar: false,
    },
    failed: {
      bar: false,
    },
    succeeded: {
      bar: false,
    },
    lastSucceeded: {
      bar: false,
    },
    pathInState: null,
    fieldOne: null,
    fieldTwo: null,
    fieldThree: {
      subfield: null,
    },
    differentPathInState: null,
    errorOne: null,
    errorTwo: null,
    errorThree: {
      subField: null,
    },
  }
}

Advanced result and error handling

result and error fields in action definitions works exactly the same.

const actionsDefinitions = {
  foo: {
    bar: {
      type: 'better-promise',
      async: actionParam => IWillReturnPromise(actionParam),
      result: {
        fieldOne: { source: 'result.somePathInAction', default: 'valueToBeSetIfNoneFoundInTheAction', initial: 'someInitialValue' },
        fieldTwo: { source: (action, currentValue) => [...currentValue, action.result], initial: 'anotherInitialValue' },
      },
    },
  },
};

Then you will see initial state that looks like this:

{
  foo: {
    pending: {
      bar: false,
    },
    lastSucceeded: {
      bar: false,
    },
    lastFailed: {
      bar: false,
    },
    failed: {
      bar: false,
    },
    succeeded: {
      bar: false,
    },
    lastSucceeded: {
      bar: false,
    },
    fieldOne: 'someInitialValue',
    fieldTwo: 'anotherInitialValue',
  }
}

Setting custom initial values for default fields

const actionsDefinitions = {
  foo: {
    bar: {
      type: 'better-promise',
      async: actionParam => IWillReturnPromise(actionParam),
      initial: {
        'pending.bar': 'initialPending',
        'result.bar': [],
      },
    },
  },
};

Then you will see initial state that looks like this:

{
  foo: {
    pending: {
      bar: 'initialPending',
    },
    lastSucceeded: {
      bar: false,
    },
    lastFailed: {
      bar: false,
    },
    failed: {
      bar: false,
    },
    succeeded: {
      bar: false,
    },
    lastSucceeded: {
      bar: false,
    },
    error: {
      bar: null,
    },
    result: {
      bar: [],
    },
  },
}

Adding custom hooks to action

You can use custom hooks on any action just by passing hooks object as a second argument when dispatching the action. You don't have to change anything in action definition:

this.props.myFancyAction(
  someParams,
  {
    success: ({ result }) => console.log('fancy action succeeded', result)
  }
);

FAQ

I found a bug! What should I do?

There are at least 3 options:

  1. Add an issue, write test(s) for bug you found, write fix that will make your test(s) pass, submit pull request
  2. Add an issue, write test(s) for bug you found, submit pull request with you test(s)
  3. Add an issue