Security News
New Python Packaging Proposal Aims to Solve Phantom Dependency Problem with SBOMs
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.
conditional-callback
Advanced tools
Call a function conditionally with a state-object of a certain shape.
Call a function conditionally with a state-object of a certain shape.
When maintaining an implicit state during the runtime of your application, you might want to have a function — causing side-effects — called only, when the current state fulfills certain conditions.
Additionally you might want to have that function called only once. And leave it be until the (valid) state changes.
If this describes your need, conditional-callback
is your package!
Install it via NPM:
$ npm install -S conditional-callback
Import it into your script with one of the following styles:
// ES2015 module syntax
import createConditionalCallback from 'conditional-callback';
// CommonJS syntax
const createConditionalCallback = require('conditional-callback');
This could be the simple approach to handle the current state:
// Assume we have this function which expects a atate-object
// of a certain shape.
const logCertainState = state => {
if (state.log === true && typeof state.value === 'string') {
console.log('Current value:', state.value);
}
};
// This function gets passed into the subscribe-method
// of our stream-defintion; may this be RxJS, Bacon, or whatever.
(...).subscribe(logCertainState);
There are two problems with this approach:
To address these issues, createConditionalCallback
is here for the rescue:
// First of all describe the desired shape of the
// state with a selector object.
// The given keys reflect the keys of the state-object,
// that shall be selected and passed to the callback function.
// The associated values are functions, validating the
// state's values.
const selector = {
log: x => x === true,
value: x => typeof x === 'string'
};
// Next, you define that callback function
// without the nested condition.
const callback = state => console.log('Current value:', state.value);
// After that you combine both to a conditional callback. This
// creates a new function, that takes a state-object and calls
// the side-effect when the condition is fulfilled.
// It also always returns the passed in state-object without
// touching it!!
const conditionalCallback = createConditionalCallback(selector, callback);
const invalidState = {...};
const result = conditionalCallback(invalidState);
// result === invalidState => `true`
The derived function can now be used to have your side-effect function be called when the conditions are met.
Internally createConditionalCallback
uses Ramda's allPass
-function to check the condition(s) for a key. It's thus possible to pass in an array of validator-functions:
// We want the count-property to be a
// number, that is greater than 5.
const selector = {
count: [
x => typeof x === 'number',
x => x > 5
]
};
Given the example above you want to have the value
-property of the state be logged to console every time the valid state is passed in. For this purpose, createConditionalCallback
takes an optional third Boolean parameter needsChange
, that indicates that the given state-object not only has to meet the conditions, but also has to be different than the previous one.
By passing false
as the third parameter this behaviour is deactivated and the callback is called every time a valid state-object is passed in.
const conditionalCallback = createConditionalCallback(selector, callback, false);
const validState = {...};
conditionalCallback(validState) // Callback is called
conditionalCallback(validState) // Callback is called again!
The MIT License (MIT)
Copyright (c) 2016 Emanuel Kluge
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
FAQs
Call a function conditionally with a state-object of a certain shape.
The npm package conditional-callback receives a total of 1 weekly downloads. As such, conditional-callback popularity was classified as not popular.
We found that conditional-callback demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.
Security News
Socket CEO Feross Aboukhadijeh discusses open source security challenges, including zero-day attacks and supply chain risks, on the Cyber Security Council podcast.
Security News
Research
Socket researchers uncover how threat actors weaponize Out-of-Band Application Security Testing (OAST) techniques across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.