Simple library for caching more complex function calls.
Can be used with react not to trigger rerendering by constantly creating new functors for components props.
Yet it has no dependencies to React or any other lib.
npm install --save Cacher
Let's say You have a component that receives a functor and renders N subcomponents.
Each subcomponent receives a callback which is the functor called with the subcomponents index.
You could write:
class Component extends React.Component {
// ...
render() {
return Array(this.props.N).map(function(_, index) {
return (
<SubComponent
callback={function() { this.props.functor(index); }}
/>
);
});
}
}
But this way every time You render Component each Subcomponent receives a new functor as callback and needs to rerender.
What if You could get the same functor every time You know You already had one like that?
Now you can! :)
import Cacher from 'Cacher';
class Component extends React.Component {
// ...
cacher = new Cacher()
.functor(this.props.functor)
.create();
render() {
return Array(this.props.N).map(function(_, index) {
return (
<SubComponent
callback={function() { this.cacher(index); }}
/>
);
});
}
}
Voilà!
The first time this.cacher is called with an index it creates one callback function and returns it.
Every next time for the same index it just returns the one created before (same object/reference).
You can also add a context to the main functor.
Just use
.constext(object)
to make Cacher call
object.functor(index)
instead of functor(index)
.
Cacher is configurable to accept an additional function (called action) aside with index.
You just need to tell him which parameter will it be.
E.g.:
import Cacher from 'Cacher';
class Component extends React.Component {
// ...
cacher = new Cacher()
.context(someObject)
.functor(this.props.functor)
.action(1)
.create();
render() {
return arrayOfFunctions.map(function(someFunction, index) {
return (
<SubComponent
callback={function() { this.cacher(index, someFunction); }}
/>
);
});
}
}
Now this.cacher(index, someFunction)
will return something functionally identical to:
function() {
someFunction();
return this.props.functor.call(someObject, index);
}
You can clear the inside cache:
function someFn(/* some arguments */) {
/* do sth */
}
const cacher = new Cacher().functor(someFn);
const getter = cacher.create();
const f34 = getter('34');
/* use getter */
cacher.clear();
const f34_prim = getter('34');
// Here ( f34 !== f34_prim )
Also additional arguments can be passed.
const base = {};
function addError(component, error) {
if (!base[component]) { base[component] = [] }
if (base[component].includes(error)) { return; }
base[component].push(error);
}
const getter = new Cacher().functor(addError).create();
getter('component1')('sth');
getter('component1')('probably');
getter('component2')('could be');
getter('component1')('wrong');
getter('component1')('wrong');
expect(base).to.deep.equal({
'component1': ['sth', 'probably', 'wrong'],
'component2': ['could be']
});
You can index by any simple type:
- number
- string
- reference
The function returned by create assumes the first argument it gets is the index, by which Cacher distinguishes cached material.
Feel free to comment and add suggestions.
This is my first lib I created and published to see how NPM works.
I am eager to enhance it if it proves useful to someone.