Sigmajs.js 2.6 KB
Newer Older
Abinaya Sudhir's avatar
Abinaya Sudhir committed
1
'use strict';
2 3 4 5
exports.goToImpl = function(cam) {
  return function(props) {
    return cam.goTo(props);
  };
6
};
7 8 9 10 11 12 13 14 15 16 17
exports.pauseForceAtlas2 = function() {
  var s = window.sigmaGargInstance;
  if (s) {
    if (s.isForceAtlas2Running()) {
      s.stopForceAtlas2()
    }
    else {
      s.startForceAtlas2()
    }
  }
};
18

19
var trackMouse = function(cursorSize, e) {
20

21
    if(!e.shiftKey) {
Alexandre Delanoë's avatar
Alexandre Delanoë committed
22
      var partialGraph = window.sigmaGargInstance;
Alexandre Delanoë's avatar
Alexandre Delanoë committed
23 24 25 26 27 28 29 30 31 32 33 34 35 36
      // new sigma.js 2D mouse context
      var ctx = partialGraph.renderers[0].contexts.mouse;
      ctx.globalCompositeOperation = "source-over";

      // clear zone each time to prevent repeated frame artifacts
      ctx.clearRect(50, 50,
                    partialGraph.renderers[0].container.offsetWidth,
                    partialGraph.renderers[0].container.offsetHeight);

      // classic mousemove event or other similar non-sigma events

      var coord = window.sigma.utils.mouseCoords(e)
      var x = (coord.x + coord.clientX) / 2 // ; // sigma.utils.getX(e);
      var y = (coord.y + coord.clientY) /2 // ; // sigma.utils.getY(e);
37
      console.log('trackMouse', coord);
Alexandre Delanoë's avatar
Alexandre Delanoë committed
38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
      // optional: make more labels appear on circle hover (/!\ costly /!\ esp. on large graphs)
//      if (partialGraph.conf.moreLabelsUnderArea) {
//        // convert screen => mouse => cam
//        var mouseCoords = (50,50); // sigma.utils.mouseCoords(e)
//        var camCoords = partialGraph.cam.cameraPosition(mouseCoords.x, mouseCoords.y)
//
//        var exactNodeset = circleGetAreaNodes(camCoords.x,camCoords.y)
//        // console.log("nodes under circle:", exactNodeset)
//
//        // we'll use labelThreshold / 3 as the "boosted" cam:size threshold
//        var pfx = partialGraph.cam.readPrefix
//        var toRedraw = []
//        for (var k in exactNodeset) {
//          var n = partialGraph.graph.nodes(exactNodeset[k])
//          if(!n.hidden && n[pfx+'size'] > (partialGraph.customSettings.labelThreshold / 3)) {
//            toRedraw.push(n)
//          }
//        }
//        redrawNodesInHoverLayer(toRedraw, "hovers")
//      }

      // draw the circle itself
      ctx.strokeStyle = '#000';
      ctx.lineWidth = 1;
      ctx.fillStyle = "#71C3FF";
      ctx.globalAlpha = 0.5;
      ctx.beginPath();
65
      ctx.arc(x, y, cursorSize, 0, Math.PI * 2, true);
Alexandre Delanoë's avatar
Alexandre Delanoë committed
66 67 68 69 70
      ctx.closePath();
      ctx.fill();
      ctx.stroke();
      ctx.globalAlpha = 1

71
    }
Alexandre Delanoë's avatar
Alexandre Delanoë committed
72

73 74
};

75 76
exports.sigmaOnMouseMove = function(props) {
  return function(e) {
77 78
    return function() {
      if(typeof(window.sigmaGargInstance) !== "undefined") {
79
          if(props.cursorSize > 0) trackMouse(props.cursorSize, e);
80 81
      }
    };
82
  };
83
};