GithubHelp home page GithubHelp logo

d3 / d3-dispatch Goto Github PK

View Code? Open in Web Editor NEW
76.0 76.0 26.0 185 KB

Register named callbacks and call them with arguments.

Home Page: https://d3js.org/d3-dispatch

License: ISC License

JavaScript 100.00%

d3-dispatch's Introduction

D3: Data-Driven Documents

D3 (or D3.js) is a free, open-source JavaScript library for visualizing data. Its low-level approach built on web standards offers unparalleled flexibility in authoring dynamic, data-driven graphics. For more than a decade D3 has powered groundbreaking and award-winning visualizations, become a foundational building block of higher-level chart libraries, and fostered a vibrant community of data practitioners around the world.

Resources

d3-dispatch's People

Contributors

curran avatar dependabot[bot] avatar fil avatar mbostock avatar stof avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

d3-dispatch's Issues

Strange behavior in Safari v9

I'm hesitant to report this here because the issue is so intermittent that I'm positive it's a safari bug.

If you run the following gist (gist: https://gist.github.com/Hypercubed/c4276ed96ff4bd575933c7ad390a7a92, block: http://bl.ocks.org/Hypercubed/c4276ed96ff4bd575933c7ad390a7a92) in chrome or firefox you see the expected result. "called 3000 times total" is written to the DOM.

But run in Safari v9, (and this is crucial) with the debugging console closed, I see undefined value at XXXX. The value that the undefined value starts and ends varies between refreshes.

Seems like a browser bug, but I only see this behavior in d3-dispatch: https://github.com/Hypercubed/EventsSpeedTests/blob/master/results/safari-v9.md

Don’t expose the dispatch.type.

The problem is the dynamic type field pollutes the public interface: I can never add a new method (e.g., dispatch.copy) because it might conflict with an event of the same type. That even applies to private fields! For example, trying to create an event type named “_” currently fails.

I should change the API as follows:

dispatch.foo.call(object, arg1, arg2); // BEFORE
dispatch.call("foo", object, arg1, arg2); // AFTER

dispatch.foo.apply(object, [arg1, arg2]); // BEFORE
dispatch.apply("foo", object, [arg1, arg2]); // AFTER

Rewrite without using closures.

The closures here make it a lil’ expensive to construct a new dispatch object. It’d be nice, say for transitions, to make constructing the dispatcher as cheap as possible. Probably means changing the API from this:

dispatch.foo.call(that, arg1, arg2); 

To this:

dispatch.call("foo", that, arg1, arg2); 

Or maybe dispatch.dispatch? You get the idea.

Don’t allow whitespace or periods in dispatch(types).

This would be bad:

var dispatch = d3.dispatch("start end");

As would this:

var dispatch = d3.dispatch("start.foo");

It might be nice if we treated the former as equivalent to:

var dispatch = d3.dispatch("start", "end");

And threw an error on the latter.

dispatch.once?

It might be nice to have a dispatch.once method that automatically removes the callback after it is invoked once.

Compose submodule with ES6

I write the issue here because d3/d3 issues are closed, but this is a general problem of submodules.

I'm trying to use ES6 to make my own bundle of d3 because I don't need the whole library. I know that d3 use the global/exposed d3 object to allocate some data or flags. I think there is the problem.

Because If I use this:

import * as d3dispatch from 'd3-dispatch'
import * as d3drag from 'd3-drag'
import * as d3selection from 'd3-selection'
import * as d3transition from 'd3-transition'
import * as d3zoom from 'd3-zoom'

const d3 = Object.assign({}, d3dispatch, d3drag, d3drag, d3selection, d3zoom)

Won't work in some situations. Any Idea of how to use the same d3 object for all the imports?

Support for multiple callbacks

If a callback was already registered for the given typenames, the existing callback is removed before the new callback is added.

Have you considered allowing multiple callbacks for a given typename?

API Proposal

When using this library, I have found it cumbersome to always specify the second argument of dispatch.call, which I have never had a use for so ends up being null, like this:

dispatch.call("start", null, "I am an argument")

Proposal for additional API, which would not support any this arg:

dispatch("start", "I am an argument")

Any thoughts?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.