Giter VIP home page Giter VIP logo

redux-fp's People

Contributors

rvikmanis avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

Forkers

orangelv

redux-fp's Issues

Destructing import fails

When trying to import using destructing pattern it fails:

import { handleAction } from 'redux-fp' // handleAction is undefined

Can be fixed by using .js version instead of .mjs in package.json.

add matchAction

Hi,

What about a matchAction function ?

Like match, but instead of taking a predicate updater, just taking a simple action predicate.

implementation

const { match } = require('redux-fp');

const matchAction = (predicate, leftUpdater, rightUpdater) => (
  match((action) => () => predicate(action), leftUpdater, rightUpdater)
);

module.exports = matchAction;

example

const R = require('ramda');
const { matchAction } = require('redux-fp');

const handleDebug = matchAction(R.path(['meta', 'debug']))
const logsReducer = handleDebug(action => R.concat([action]));

Does that sound right ?
Can I make a PR ?


By the way, thanks for this awesome elm-ish redux library.
I'm enjoying using it to implement updaters with ramda and ramda-adjunct

A new state object is always returned, even if nothing has changed

As per this line, it appears that a new state object is always returned, even if passed an action type which isn't handled by any updater (or if it is handled, but the same state is returned). This can have a negative effect on performance, since it can trigger unneeded selector calculations and even re-renders, if connected improperly + it renders some tools useless, like redux-unhandled-action.

Do you see this as unwanted behavior, and if so, are you interested in fixing it?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.