codeburst

Bursts of code to power through your day. Web Development articles, tutorials, and news.

Follow publication

How to deal with complex APIs

Hajime Yamasaki Vukelic
codeburst
Published in
8 min readJun 8, 2018

--

Example

const toTrueProps = propNames => 
propNames.reduce(
(out, propName) => ({ ...out, [propName]: true }),
{}
)
toTrueProps(['foo', 'bar'])
// => { foo: true, bar: true }

Disentangling the concerns

const toTrueProp = propName => ({ [propName]: true })const merge = (out, propVal) => ({ ...out, ...propVal })

Composing the two concerns

const reduceWith = (init, reducer, transformer, xs) => 
xs.reduce((out, x) => reducer(out, transformer(x)), init)
const toTrueProps = xs => reduceWith(
{},
Object.assign,
toTrueProp,
xs
)

Reusing the generic parts

const reduceToObject = reduceWith.bind(null, {}, Object.assign)
const toTrueProps = xs => reduceToObject(toTrueProp, xs)
const add = (x, y) => x + yconst identity = x => xconst sum = xs => reduceWith(0, add, identity, xs)sum([1, 2, 3]) // => 6

More is less

A note on reuse

// const toBooleanProp = propName => ({ [propName]: true })
const toBooleanProp = propName => [propName, true]
// const merge = (out, propVal) => ({ ...out, ...propVal })
const merge = (out, [key, val]) => ({ ...out, [key]: val })

--

--

Published in codeburst

Bursts of code to power through your day. Web Development articles, tutorials, and news.

Written by Hajime Yamasaki Vukelic

Helping build an inclusive and accessible web. Web developer and writer. Sometimes annoying, but mostly just looking to share knowledge.

No responses yet