Coder Social home page Coder Social logo

dispatch-recursive's Introduction

dispatch-recursive Build Status

Recursive command dispatch.

Install

$ npm install --save dispatch-recursive

What is Dispatch?

This module provides a way to construct a function which loops through a list of "command" functions, and calls each with a "target" value until one of the commands returns a value other than undefined. The command functions are polymorphic and adhere to the same interface. The point of dispatch is to simplify delegating to concrete command implementations.

The reason this is called "recursive dispatch" is because the contract of each command function is (target, fn) where fn is the function returned by dispatch. This allows each command to apply the dispatch chain to sub properties of the target.

There is also a similar module for performing dispatch non recursively, which forwards all arguments given to the resultant function to be forwarded to each command called dispatch-fn.

In addition, we can exploit the contract of dispatch commands to compose a terminating function that provides some default behavior by always returning a value or one that always throws an exception.

This pattern is sometimes also referred to as Chain of Command

Implementation of this module was heavily inspired by Chapter 5 of Functional Javascript: Introducing Functional Programming with Underscore.js by Michael Fogus.
Published by O'reilly Media (2013-06-01)
Book Source - Chapter 5

Usage

This example shows how you could use dispatch to construct a rev function. The behavior of rev changes depending on what type of object it is given.

'use strict';

var isArray = require('lodash/lang/isArray');
var isPlainObject = require('lodash/lang/isPlainObject');
var isString = require('lodash/lang/isString');
var mapValues = require('lodash/object/mapValues');
var dispatch = require('../es5');

var rev = dispatch(
  reverseString,
  reverseArray,
  reverseObjectProperties,
  irreversible
);

function reverseString(target) {
  if (isString(target)) {
    return target.split('').reverse().join('');
  }

  return undefined;
}

function reverseArray(target, rev) {
  // Recursion!!!
  // Reverses each member of the array, and then reverses the whole array.
  if (isArray(target)) {
    return target.map(rev).reverse();
  }

  return undefined;
}

function reverseObjectProperties(target, rev) {
  // Recursion!!!
  // Original rev function is used to transform the next layer
  // of object properties.
  if (isPlainObject(target)) {
    return mapValues(target, rev);
  }

  return undefined;
}

// If the target hasn't been caught by any rev commands
// it will fall through to this function which does nothing
// but return the original value passed in.
// This is us exploiting the command interface to provide default
// fall through behavior in the dispatch chain.
function irreversible(target) {
  return target;
}

console.log(rev(42)); // 42

console.log(rev('abc')); // 'cba'

console.log(rev(['a', 'b', 'c'])); // [ 'c', 'b', 'a' ]

console.log(rev([['c', 'b', 'a'], 'oof', 32, null, {foo: 'rab'}]));
// [ { foo: 'bar' }, null, 32, 'foo', [ 'a', 'b', 'c' ] ]

console.log(
  rev(
    {
      beep: ['p', 'o', 'o', 'b'],
      nested: {
        nope: null,
        abc: 'cba',
        abcArr: ['c', 'b', 'a']
      },
      missed: 0
    }
  )
);
//{
//  beep: [ 'b', 'o', 'o', 'p' ],
//  nested: {
//    nope: null,
//    abc: 'abc',
//    abcArr: [ 'a', 'b', 'c' ]
//  },
//  missed: 0
//}

dispatch-recursive's People

Contributors

nackjicholson avatar

Watchers

 avatar  avatar

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.