Organizes rendering specs into batches that can efficiently be rendered by d3-selection. Intended for use with d3-render-batch.
Requires v5.2 or higher in Node and ES6/Babelify in the browser.
npm install d3-batcher
var Batcher = require('d3-batcher');
var batcher = Batcher();
batcher.addSpecs([
{
tag: 'rect',
id: 'pipe-body',
attr: {
x: 10,
y: 10,
width: 200,
height: 80,
fill: 'hsla(0, 0%, 0%, 0.5)'
},
class: 'pipe'
},
{
tag: 'rect',
id: 'pipe-cap-A',
attr: {
x: 0,
y: 0,
width: 20,
height: 100,
fill: 'hsla(0, 0%, 0%, 0.5)'
},
class: 'pipe'
},
{
tag: 'rect',
id: 'pipe-cap-B',
attr: {
x: 200,
y: 0,
width: 20,
height: 100,
fill: 'hsla(0, 0%, 0%, 0.5)'
},
class: 'pipe'
},
{
tag: 'path',
id: 'pipe-hightlight',
attr: {
d: 'M 0 0 C 50 0 50 100 100 100',
fill: 'white'
},
class: 'pipe-hightlight'
}
]);
batcher.addSpecs([
{
tag: 'path',
id: 'vertical-squiggle',
attr: {
d: 'M 0 0 C 0 50 100 50 100 100 C 100 75 300 75 300 50 C 300 125 500 125 500 200',
fill: 'yellow'
},
class: 'lightning-rod'
},
{
tag: 'rect',
id: 'antenna',
attr: {
x: 100,
y: 0,
width: 10,
height: 100,
fill: 'hsla(0, 0%, 0%, 0.5)'
},
class: 'lightning-rod'
}
]);
batcher.getBatches();
getBatches
will return an object with keys 'rect' and 'path'. The values for each of them will be arrays of all of the rect
specs and all of the path
specs, respectively. Now, all of the rect
s together and all of the path
s together, even though they were added in separate calls.
Run tests with make test
. Tests require Node 6. The module itself works with Node 0.12 or up.
The MIT License (MIT)
Copyright (c) 2015 Jim Kang
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.