我应该如何在d3中排队?

时间:2013-08-16 07:44:19

标签: d3.js

我正在使用我编写的一些d3代码处理小型图表库。我一直在为我的图表添加配置/自定义选项以用于各种用例,而我一直遇到的是冲突的事件处理程序。

转型有时给我带来麻烦,但我的问题比这更普遍。在我的图表中执行一组事件处理程序的好方法是什么?

我使用的一种方法是构建一个文字处理程序数组,然后迭代列表,执行每个处理程序:

function chart(selection) {
  selection.each(function(data) {

    // initial config and options, including the handlers array
    var margin = {top: 20, right: 20, bottom: 50, left: 40},
        ...
        fadeOnHover = true,
        barMouseoutHandlers = [],
        barMouseoverHandlers = [];


    // create the chart


    // an option
    if (fadeOnHover) {
      barMousemoveHandlers.push(function(d, i) {
        selection.selectAll('.bar').filter(function(d, j){return i!=j;})
          .transition().duration(100).style('opacity', '.5');
        selection.selectAll('.bar').filter(function(d, j){return i==j;})
          .transition().duration(100).style('opacity', '1');
      });

      barMouseoutHandlers.push(function() {
        selection.selectAll('.bar').transition().duration(100).style('opacity', '1');
      });
    }

    // other options, which may add handlers

    // then at the end of the function, execute all handlers
    g.selectAll('.bar')
      .on('mouseover', function(d, i) {
        barMouseoverHandlers.forEach(function(handler) { handler(d, i); });
      })
      .on('mouseout', function(d, i) {
        barMouseoutHandlers.forEach(function(handler) { handler(d, i); });
      });
  });
}

这就是我刚刚在我的图表中抛出一些功能时出现的内容,但它显然不是非常模块化或组织良好。也许有空间将这些部分中的一部分提取到单独的对象中。

还有其他方法吗?我很想听听你对此的看法。

1 个答案:

答案 0 :(得分:2)

我认为你只需要“命名”多个事件,这样它们就不会覆盖先前注册的事件。像这样:

g.selectAll('.bar')
  .on('mouseover.one', function(d, i) {
    // do something
  })
  .on('mouseover.two', function(d, i) {
    // something else
  });

来自API

  

要为同一事件类型注册多个侦听器,该类型后面可以跟一个可选的命名空间,例如“click.foo”和“click.bar”。