
Product
Announcing Socket Fix 2.0
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
Here's a thing you have to do a lot when using D3 data joins:
// Here, you provide a function to that gets an id from a datum so that D3
// can correctly identify a corresponding element to update.
var thingElements = rootSelectAll('.leaf').data(
things, function getId(thing) { return thing.id; }
);
thingElements.enter().append('option');
// Here, you provide a function get gets a label from a datum so that D3
// can set the text for each element.
thingElements.text(function getLabel(thing) { return thing.label; });
thingElements.exit().remove();
While those accessor functions aren't hard to write, it's easier to just use something that makes them for you, like this:
var thingElements = rootSelectAll('.leaf').data(data, accessor());
thingElements.enter().append('option');
thingElements.text(accessor('label'));
thingElements.exit().remove();
If you want to write accessors that traverse a path in an object to get properties, do this:
thingElements.text(accessor({ path: 'data/meta/label'));
That will make it look for an object named data
, then look for an object named meta
in that, then look for a property named label
within that. If you need to traverse arrays you can use array indexes in the path, e.g. data/list/3/label
.
npm install accessor
var accessor = require('accessor');
Accessor takes an argument, property
, and returns a function that takes an object and returns that object.property
. If you provide no argument property
will default to id
.
e.g.
var accessor = require('accessor');
rootSelectAll('.leaf').data(things, accessor('foo'));
You can specify a second argument, a default value. The accessor will return the default value if the property you're accessing is undefined on the object. (It will never cache accessors that have a default value, BTW.)
If you just want the identity function (x => x), you can use accessor('identity')
. An inline x => x
definition may actually be fine for your case; accessor('identity')
just creates fewer copies of that function than that.
Run tests with make test
.
MIT.
FAQs
Provides accessor functions for convenience in D3 programming
The npm package accessor receives a total of 29 weekly downloads. As such, accessor popularity was classified as not popular.
We found that accessor 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.
Product
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
Security News
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.
Product
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.