Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/curran/d3-component
A lightweight component abstraction for D3.js.
https://github.com/curran/d3-component
component data-visualization html5 interaction interactive-visualizations user-interface web-application
Last synced: about 1 month ago
JSON representation
A lightweight component abstraction for D3.js.
- Host: GitHub
- URL: https://github.com/curran/d3-component
- Owner: curran
- License: bsd-3-clause
- Created: 2015-08-22T02:06:59.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-12-18T23:21:28.000Z (almost 7 years ago)
- Last Synced: 2024-10-31T14:46:06.514Z (about 1 month ago)
- Topics: component, data-visualization, html5, interaction, interactive-visualizations, user-interface, web-application
- Language: JavaScript
- Homepage:
- Size: 245 KB
- Stars: 108
- Watchers: 10
- Forks: 10
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
- awesome-d3 - d3-component - Lightweight component abstraction (Utils)
- awesome-d3 - d3-component - Lightweight component abstraction (Utils)
- awesome-d3 - d3-component - Lightweight component abstraction (Utils)
README
# d3-component
A lightweight component abstraction for [D3.js](d3js.org).
**Features:**
* Encapsulates the [General Update Pattern](https://github.com/d3/d3-selection#selection_merge).
* Composable (even [recursive](https://bl.ocks.org/curran/2aafab81bb2029e1f4f24d258b790ce4)!) stateless functional components.
* Reliable `destroy` hook for cleaning things up.
* Works great with [Redux](http://redux.js.org/).**Examples:**
Todos
Clock
Airport Clocks
example-viewer (Redux, ES6)
Fractal Pie Chart (ES6)
Using this component abstraction, you can easily encapsulate data-driven user interface components as conceptual "boxes-within-boxes", cleanly isolating concerns for various levels of your DOM tree. This component abstraction is similar in concept and functionality to [React Stateless Functional Components](https://hackernoon.com/react-stateless-functional-components-nine-wins-you-might-have-overlooked-997b0d933dbc#.dc21r5uj4). Everything a component needs to render itself and interact with application state gets passed down through the component tree at render time. Components don't store any local state; this is the main difference between d3-component and the [Towards Reusable Charts](https://bost.ocks.org/mike/chart/) pattern. No special treatment is given to events or event delegation, because the intended use is within a unidirectional data flow architecture like [Redux](http://redux.js.org/).
## Installing
If you use NPM, `npm install d3-component`. Otherwise, download the [latest release](https://github.com/curran/d3-component/releases/latest). You can also load directly from [unpkg.com](https://unpkg.com) as a [standalone library](https://unpkg.com/d3-component@1). AMD, CommonJS, and vanilla environments are supported. In vanilla, a `d3` global is exported:
```html
var myComponent = d3.component("div");
```
## API Reference
**Note:** There was a recent [major version release](https://github.com/curran/d3-component/releases/tag/v3.0.0), and along with it there were substantial [API Changes](https://github.com/curran/d3-component/issues/70).
In summary, the API looks like this:
```js
var myComponent = d3.component("div", "some-class")
.create((selection, d, i) => { ... }) // Invoked for entering component instances.
.render((selection, d, i) => { ... }) // Invoked for entering AND updating component instances.
.destroy((selection, d, i) => { ... }); // Invoked for exiting instances, may return a transition.// To invoke the component,
d3.select("body") // create a selection with a single element,
.call(myComponent, "Hello d3-component!"); // then use selection.call().
```To see the full API in action, check out this ["Hello d3-component" example](https://bl.ocks.org/curran/c3d9783e641636479fa8e07a480e7233).
# component(tagName[, className]))
Creates a new component generator that manages and renders into DOM elements of the specified *tagName*.
The optional parameter *className* determines the value of the `class` attribute on the DOM elements managed.
# component.create(function(selection, d, i))
Sets the create *function* of this component generator, which will be invoked whenever a new component instance is created, being passed a *selection* containing the current DOM element, the current datum (*d*), and the index of the current datum (*i*).
# component.render(function(selection, d, i))
Sets the render *function* of this component generator. This *function* will be invoked for each component instance during rendering, being passed a *selection* containing the current DOM element, the current datum (*d*), and the index of the current datum (*i*).
# component.destroy(function(selection, d, i))
Sets the destroy *function* of this component generator, which will be invoked whenever a component instance is destroyed, being passed a *selection* containing the current DOM element, the current datum (*d*), and the index of the current datum (*i*).
When a component instance gets destroyed, the destroy *function* of all its children is also invoked (recursively), so you can be sure that this *function* will be invoked before the compoent instance is removed from the DOM.
The destroy *function* may optionally return a transition, which will defer DOM element removal until after the transition is finished (but only if the parent component instance is not destroyed). Deeply nested component instances may have their DOM nodes removed before the transition completes, so it's best not to depend on the DOM node existing after the transition completes.
# component.key(function)
Sets the key *function* used in the internal [data join](https://github.com/d3/d3-selection#selection_data) when managing DOM elements for component instances. Specifying a key *function* is optional (the array index is used as the key by default), but will make re-rendering more efficient in cases where *data* arrays get reordered or spliced over time.
# component(selection[,data[,context]])
Renders the component to the given *selection*, a D3 selection containing a single DOM element. A raw DOM element may also be passed in as the *selection* argument. Returns a D3 selection containing the merged Enter and Update selections for component instances.
* If *data* is specified and is an array, one component instance will be rendered for each element of the array, and the *[render function](component_render)* will receive a single element of the *data* array as its *d* argument.
* **Useful case:** If *data* is specified as an empty array `[]`, all previously rendered component instances will be removed.
* If *data* is specified and is not an array, exactly one component instance will be rendered, and the *[render function](component_render)* will receive the *data* value as its *d* argument.
* If *data* is not specified, exactly one component instance will be rendered, and the *[render function](component_render)* will receive `undefined` as its *d* argument.In summary, components can be rendered using the following signatures:
* `selection.call(myComponent, dataObject)` → One instance, render function *d* will be `dataObject`.
* `selection.call(myComponent, dataArray)` → `dataArray.length` instances, render function *d* will be `dataArray[i]`
* `selection.call(myComponent)` → One instance, render function *d* will be `undefined`.If a *context* object is specified, each data element in the data array will be shallow merged into a new object whose prototype is the *context* object, and the resulting array will be used in place of the *data* array. This is useful for passing down callback functions through your component tree. To clarify, the following two invocations are equivalent:
```js
var context = {
onClick: function (){ console.log("Clicked!");
};
selection.call(myComponent, dataArray.map(function (d){
return Object.assign(Object.create(context), d);
}));
``````js
var context = {
onClick: function (){ console.log("Clicked!");
};
selection.call(myComponent, dataArray, context);
```