Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is Ramda ifElse an effective pattern if it abstracts a ternary operation

Risky question to be opinionated. I'm working on a project with Ramda.js. And I see many ifElse calls throughout the code.

const getEvent = R.ifElse(
  fireable,
  R.always(sendAnalyticsEvent),
  R.always(R.always(undefined))
);

Is this really worth the effort to wrap logic in a functional conditional like this? Is there a benefit?

If ultimately Ramda just abstracts a ternary operation and we return undefined on false match.

Ramdas ifElse

var ifElse = _curry3(function ifElse(condition, onTrue, onFalse) {
  return curryN(Math.max(condition.length, onTrue.length, onFalse.length),
    function _ifElse() {
      return condition.apply(this, arguments) ? onTrue.apply(this, arguments) : onFalse.apply(this, arguments);
    }
  );
});
export default ifElse;

This seems like an anitpattern in the FP world, always returning undefined or in some cases null

R.ifElse(hasUrl, promptToShare, R.always(null))

Regardless of the questionable return of undefined, wouldn't using ternary operators be more idiomatic to a javascript community?

hasUrl(urlObject) ? promptToShare() : null

This seems more succinct and legible to me, I want to refactor. But this could be due to my naivety of the FP world.

like image 955
Lex Avatar asked Sep 19 '18 02:09

Lex


People also ask

What is Ramda used for?

Ramda is a practical functional library for JavaScript programmers. The library focuses on immutability and side-effect free functions. Ramda functions are also automatically curried, which allows to build up new functions from old ones simply by not supplying the final parameters.

What is compose in ramda?

compose FunctionPerforms right-to-left function composition. The rightmost function may have any arity; the remaining functions must be unary. See also pipe.


1 Answers

Several points (disclaimer: I'm a Ramda author):

  • Far too often, you're right. Point-free code is overused when new users pick up FP in Javascript. I generally suggest that it's only useful when it improves readability.

  • An ifElse invocation is not equivalent to a Javascript conditional expression (ternary.) It can be equivalent to a lambda function that returns the value of a ternary, however. That is, the example would be more like (urlObject) => hasUrl(urlObject) ? promptToShare(urlObject) : null. At this point, the ifElse is at least possibly more readable. This brings us to the points from the comments about partial application/currying

  • There is little reason I can see to use ifElse with functions that have different signatures. That is, if promptToShare takes no arguments, then it probably doesn't belong in a call to ifElse.

  • That getEvent function looks quite bizarre. Given that it uses a name like sendAnalyticsEvent, I'm guessing that it creates some side-effect. And the other branch is a no-op. While the Ramda team doesn't really care how you use the library, this is not the sort of function we envision users creating with it.

  • I've seen other odd calls to ifElse passing identity for one of the branch functions. Those should presumably be replaced with when or unless, which would certainly be more semantic.

So I agree that your example does not need ifElse at all. But ifElse and its peers when and unless do have their places.

like image 86
Scott Sauyet Avatar answered Oct 27 '22 00:10

Scott Sauyet