Giter Site home page Giter Site logo

immer-produce-pipeline's Introduction

Immer produce pipeline

Pipe's an array of producer functions through immer producer

Install

npm i -S immer immer-produce-pipeline

Prerequisite: Requires Immer to be pre-installed as a dependency

Usage

import producePipeline from 'immer-produce-pipeline'

Advantages

Using a pipeline is a good practice when processing data, each function is small, easily testable and immutable. This provides pure consistent results. Same input and pipeline = same output.

Example

In this example we are going to apply a percentage discount and then calculate vat for some products.

First we create our pipeline functions

const percentageDiscount = discount => draft => {
  draft.discounted = false
  draft.pricePostDiscount = draft.price
  if (draft.dicountable === 1) {
    draft.discounted = true
    draft.pricePostDiscount = draft.price * (1 - discount)
  }
  draft.discount = draft.price - draft.pricePostDiscount
}

const vat = draft => {
  draft.vat = draft.pricePostDiscount * draft.vatRate
  draft.priceIncVat = draft.pricePostDiscount + draft.vat
}

Then we will build our pipeline, to run against each product

// A pipeline is just an array of functions wrapped in producers
const pipeline = producePipeline([percentageDiscount(0.05), vat])

const products = [
  { price: 110, vatRate: 0.05, dicountable: 0 },
  { price: 37.5, vatRate: 0.2, dicountable: 1 },
  { price: 987, vatRate: 0.2, dicountable: 1 }
]

// run the pipeline against each product
const processed = products.map(pipeline)

Result

[
  { 
    "price": 110,
    "vatRate": 0.05,
    "dicountable": 0,
    "discounted": false,
    "pricePostDiscount": 110,
    "discount": 0,
    "vat": 5.5,
    "priceIncVat": 115.5
  },
  {
    "price": 37.5,
    "vatRate": 0.2,
    "dicountable": 1,
    "discounted": true,
    "pricePostDiscount": 35.625,
    "discount": 1.875,
    "vat": 7.125,
    "priceIncVat": 42.75
  },
  {
    "price": 987,
    "vatRate": 0.2,
    "dicountable": 1,
    "discounted": true,
    "pricePostDiscount": 937.65,
    "discount": 49.35000000000002,
    "vat": 187.53,
    "priceIncVat": 1125.18
  }
]

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.