| 1 | # d3-dispatch
|
|---|
| 2 |
|
|---|
| 3 | Dispatching is a convenient mechanism for separating concerns with loosely-coupled code: register named callbacks and then call them with arbitrary arguments. A variety of D3 components, such as [d3-drag](https://github.com/d3/d3-drag), use this mechanism to emit events to listeners. Think of this like Node’s [EventEmitter](https://nodejs.org/api/events.html), except every listener has a well-defined name so it’s easy to remove or replace them.
|
|---|
| 4 |
|
|---|
| 5 | For example, to create a dispatch for *start* and *end* events:
|
|---|
| 6 |
|
|---|
| 7 | ```js
|
|---|
| 8 | const dispatch = d3.dispatch("start", "end");
|
|---|
| 9 | ```
|
|---|
| 10 |
|
|---|
| 11 | You can then register callbacks for these events using [*dispatch*.on](#dispatch_on):
|
|---|
| 12 |
|
|---|
| 13 | ```js
|
|---|
| 14 | dispatch.on("start", callback1);
|
|---|
| 15 | dispatch.on("start.foo", callback2);
|
|---|
| 16 | dispatch.on("end", callback3);
|
|---|
| 17 | ```
|
|---|
| 18 |
|
|---|
| 19 | Then, you can invoke all the *start* callbacks using [*dispatch*.call](#dispatch_call) or [*dispatch*.apply](#dispatch_apply):
|
|---|
| 20 |
|
|---|
| 21 | ```js
|
|---|
| 22 | dispatch.call("start");
|
|---|
| 23 | ```
|
|---|
| 24 |
|
|---|
| 25 | Like *function*.call, you may also specify the `this` context and any arguments:
|
|---|
| 26 |
|
|---|
| 27 | ```js
|
|---|
| 28 | dispatch.call("start", {about: "I am a context object"}, "I am an argument");
|
|---|
| 29 | ```
|
|---|
| 30 |
|
|---|
| 31 | Want a more involved example? See how to use [d3-dispatch for coordinated views](http://bl.ocks.org/mbostock/5872848).
|
|---|
| 32 |
|
|---|
| 33 | ## Installing
|
|---|
| 34 |
|
|---|
| 35 | If you use npm, `npm install d3-dispatch`. You can also download the [latest release on GitHub](https://github.com/d3/d3-dispatch/releases/latest). For vanilla HTML in modern browsers, import d3-dispatch from Skypack:
|
|---|
| 36 |
|
|---|
| 37 | ```html
|
|---|
| 38 | <script type="module">
|
|---|
| 39 |
|
|---|
| 40 | import {dispatch} from "https://cdn.skypack.dev/d3-dispatch@3";
|
|---|
| 41 |
|
|---|
| 42 | const d = dispatch("start", "end");
|
|---|
| 43 |
|
|---|
| 44 | </script>
|
|---|
| 45 | ```
|
|---|
| 46 |
|
|---|
| 47 | For legacy environments, you can load d3-dispatch’s UMD bundle from an npm-based CDN such as jsDelivr; a `d3` global is exported:
|
|---|
| 48 |
|
|---|
| 49 | ```html
|
|---|
| 50 | <script src="https://cdn.jsdelivr.net/npm/d3-dispatch@3"></script>
|
|---|
| 51 | <script>
|
|---|
| 52 |
|
|---|
| 53 | const d = d3.dispatch("start", "end");
|
|---|
| 54 |
|
|---|
| 55 | </script>
|
|---|
| 56 | ```
|
|---|
| 57 |
|
|---|
| 58 | [Try d3-dispatch in your browser.](https://observablehq.com/collection/@d3/d3-dispatch)
|
|---|
| 59 |
|
|---|
| 60 | ## API Reference
|
|---|
| 61 |
|
|---|
| 62 | <a name="dispatch" href="#dispatch">#</a> d3.<b>dispatch</b>(<i>types…</i>) · [Source](https://github.com/d3/d3-dispatch/blob/master/src/dispatch.js)
|
|---|
| 63 |
|
|---|
| 64 | Creates a new dispatch for the specified event *types*. Each *type* is a string, such as `"start"` or `"end"`.
|
|---|
| 65 |
|
|---|
| 66 | <a name="dispatch_on" href="#dispatch_on">#</a> *dispatch*.<b>on</b>(<i>typenames</i>[, <i>callback</i>]) · [Source](https://github.com/d3/d3-dispatch/blob/master/src/dispatch.js)
|
|---|
| 67 |
|
|---|
| 68 | Adds, removes or gets the *callback* for the specified *typenames*. If a *callback* function is specified, it is registered for the specified (fully-qualified) *typenames*. If a callback was already registered for the given *typenames*, the existing callback is removed before the new callback is added.
|
|---|
| 69 |
|
|---|
| 70 | The specified *typenames* is a string, such as `start` or `end.foo`. The type may be optionally followed by a period (`.`) and a name; the optional name allows multiple callbacks to be registered to receive events of the same type, such as `start.foo` and `start.bar`. To specify multiple typenames, separate typenames with spaces, such as `start end` or `start.foo start.bar`.
|
|---|
| 71 |
|
|---|
| 72 | To remove all callbacks for a given name `foo`, say `dispatch.on(".foo", null)`.
|
|---|
| 73 |
|
|---|
| 74 | If *callback* is not specified, returns the current callback for the specified *typenames*, if any. If multiple typenames are specified, the first matching callback is returned.
|
|---|
| 75 |
|
|---|
| 76 | <a name="dispatch_copy" href="#dispatch_copy">#</a> *dispatch*.<b>copy</b>() · [Source](https://github.com/d3/d3-dispatch/blob/master/src/dispatch.js)
|
|---|
| 77 |
|
|---|
| 78 | Returns a copy of this dispatch object. Changes to this dispatch do not affect the returned copy and <i>vice versa</i>.
|
|---|
| 79 |
|
|---|
| 80 | <a name="dispatch_call" href="#dispatch_call">#</a> *dispatch*.<b>call</b>(<i>type</i>[, <i>that</i>[, <i>arguments…</i>]]) · [Source](https://github.com/d3/d3-dispatch/blob/master/src/dispatch.js)
|
|---|
| 81 |
|
|---|
| 82 | Like [*function*.call](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function/call), invokes each registered callback for the specified *type*, passing the callback the specified *arguments*, with *that* as the `this` context. See [*dispatch*.apply](#dispatch_apply) for more information.
|
|---|
| 83 |
|
|---|
| 84 | <a name="dispatch_apply" href="#dispatch_apply">#</a> *dispatch*.<b>apply</b>(<i>type</i>[, <i>that</i>[, <i>arguments</i>]]) · [Source](https://github.com/d3/d3-dispatch/blob/master/src/dispatch.js)
|
|---|
| 85 |
|
|---|
| 86 | Like [*function*.apply](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function/call), invokes each registered callback for the specified *type*, passing the callback the specified *arguments*, with *that* as the `this` context. For example, if you wanted to dispatch your *custom* callbacks after handling a native *click* event, while preserving the current `this` context and arguments, you could say:
|
|---|
| 87 |
|
|---|
| 88 | ```js
|
|---|
| 89 | selection.on("click", function() {
|
|---|
| 90 | dispatch.apply("custom", this, arguments);
|
|---|
| 91 | });
|
|---|
| 92 | ```
|
|---|
| 93 |
|
|---|
| 94 | You can pass whatever arguments you want to callbacks; most commonly, you might create an object that represents an event, or pass the current datum (*d*) and index (*i*). See [function.call](https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Function/Call) and [function.apply](https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Function/Apply) for further information.
|
|---|