forked from ni-kismet/engineering-flot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jquery.flot.navigate.js
695 lines (572 loc) · 23.7 KB
/
jquery.flot.navigate.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
/* Flot plugin for adding the ability to pan and zoom the plot.
Copyright (c) 2007-2014 IOLA and Ole Laursen.
Copyright (c) 2016 Ciprian Ceteras.
Copyright (c) 2017 Raluca Portase.
Licensed under the MIT license.
*/
/**
## jquery.flot.navigate.js
This flot plugin is used for adding the ability to pan and zoom the plot.
A higher level overview is available at [interactions](interactions.md) documentation.
The default behaviour is scrollwheel up/down to zoom in, drag
to pan. The plugin defines plot.zoom({ center }), plot.zoomOut() and
plot.pan( offset ) so you easily can add custom controls. It also fires
"plotpan" and "plotzoom" events, useful for synchronizing plots.
The plugin supports these options:
```js
zoom: {
interactive: false,
active: false,
amount: 1.5 // 2 = 200% (zoom in), 0.5 = 50% (zoom out)
}
pan: {
interactive: false,
active: false,
cursor: "move", // CSS mouse cursor value used when dragging, e.g. "pointer"
frameRate: 20,
mode: "smart" // enable smart pan mode
}
xaxis: {
axisZoom: true, //zoom axis when mouse over it is allowed
plotZoom: true, //zoom axis is allowed for plot zoom
axisPan: true, //pan axis when mouse over it is allowed
plotPan: true //pan axis is allowed for plot pan
}
yaxis: {
axisZoom: true, //zoom axis when mouse over it is allowed
plotZoom: true, //zoom axis is allowed for plot zoom
axisPan: true, //pan axis when mouse over it is allowed
plotPan: true //pan axis is allowed for plot pan
}
```
**interactive** enables the built-in drag/click behaviour. If you enable
interactive for pan, then you'll have a basic plot that supports moving
around; the same for zoom.
**active** is true after a touch tap on plot. This enables plot navigation.
Once activated, zoom and pan cannot be deactivated. When the plot becomes active,
"plotactivated" event is triggered.
**amount** specifies the default amount to zoom in (so 1.5 = 150%) relative to
the current viewport.
**cursor** is a standard CSS mouse cursor string used for visual feedback to the
user when dragging.
**frameRate** specifies the maximum number of times per second the plot will
update itself while the user is panning around on it (set to null to disable
intermediate pans, the plot will then not update until the mouse button is
released).
Example API usage:
```js
plot = $.plot(...);
// zoom default amount in on the pixel ( 10, 20 )
plot.zoom({ center: { left: 10, top: 20 } });
// zoom out again
plot.zoomOut({ center: { left: 10, top: 20 } });
// zoom 200% in on the pixel (10, 20)
plot.zoom({ amount: 2, center: { left: 10, top: 20 } });
// pan 100 pixels to the left and 20 down
plot.pan({ left: -100, top: 20 })
```
Here, "center" specifies where the center of the zooming should happen. Note
that this is defined in pixel space, not the space of the data points (you can
use the p2c helpers on the axes in Flot to help you convert between these).
**amount** is the amount to zoom the viewport relative to the current range, so
1 is 100% (i.e. no change), 1.5 is 150% (zoom in), 0.7 is 70% (zoom out). You
can set the default in the options.
*/
/* eslint-enable */
(function($) {
'use strict';
var options = {
zoom: {
interactive: false,
active: false,
amount: 1.5 // how much to zoom relative to current position, 2 = 200% (zoom in), 0.5 = 50% (zoom out)
},
pan: {
interactive: false,
active: false,
cursor: "move",
frameRate: 60
},
xaxis: {
axisZoom: true, //zoom axis when mouse over it is allowed
plotZoom: true, //zoom axis is allowed for plot zoom
axisPan: true, //pan axis when mouse over it is allowed
plotPan: true //pan axis is allowed for plot pan
},
yaxis: {
axisZoom: true,
plotZoom: true,
axisPan: true,
plotPan: true
}
};
var saturated = $.plot.saturated;
var browser = $.plot.browser;
var SNAPPING_CONSTANT = $.plot.uiConstants.SNAPPING_CONSTANT;
var PANHINT_LENGTH_CONSTANT = $.plot.uiConstants.PANHINT_LENGTH_CONSTANT;
function init(plot) {
var panAxes = null;
function onZoomClick(e, zoomOut, amount) {
var page = browser.getPageXY(e);
var c = plot.offset();
c.left = page.X - c.left;
c.top = page.Y - c.top;
var ec = plot.getPlaceholder().offset();
ec.left = page.X - ec.left;
ec.top = page.Y - ec.top;
var axes = plot.getXAxes().concat(plot.getYAxes()).filter(function (axis) {
var box = axis.box;
if (box !== undefined) {
return (ec.left > box.left) && (ec.left < box.left + box.width) &&
(ec.top > box.top) && (ec.top < box.top + box.height);
}
});
if (axes.length === 0) {
axes = undefined;
}
if (zoomOut) {
plot.zoomOut({
center: c,
axes: axes,
amount: amount
});
} else {
plot.zoom({
center: c,
axes: axes,
amount: amount
});
}
}
var prevCursor = 'default',
panHint = null,
panTimeout = null,
plotState,
isPanAction = false;
function onMouseWheel(e, delta) {
var maxAbsoluteDeltaOnMac = 1,
isMacScroll = Math.abs(e.originalEvent.deltaY) <= maxAbsoluteDeltaOnMac,
defaultNonMacScrollAmount = null,
macMagicRatio = 50,
amount = isMacScroll ? 1 + Math.abs(e.originalEvent.deltaY) / macMagicRatio : defaultNonMacScrollAmount;
if (isPanAction) {
onDragEnd(e);
}
if (plot.getOptions().zoom.active) {
e.preventDefault();
onZoomClick(e, delta < 0, amount);
return false;
}
}
plot.navigationState = function(startPageX, startPageY) {
var axes = this.getAxes();
var result = {};
Object.keys(axes).forEach(function(axisName) {
var axis = axes[axisName];
result[axisName] = {
navigationOffset: { below: axis.options.offset.below || 0,
above: axis.options.offset.above || 0},
axisMin: axis.min,
axisMax: axis.max,
diagMode: false
}
});
result.startPageX = startPageX || 0;
result.startPageY = startPageY || 0;
return result;
}
function isLeftMouseButtonPressed(e) {
return browser.isSafari() ? e.which === 1 : e.buttons === 1;
}
function onDragStart(e) {
if (!isLeftMouseButtonPressed(e)) {
return false;
}
isPanAction = true;
var page = browser.getPageXY(e);
var ec = plot.getPlaceholder().offset();
ec.left = page.X - ec.left;
ec.top = page.Y - ec.top;
panAxes = plot.getXAxes().concat(plot.getYAxes()).filter(function (axis) {
var box = axis.box;
if (box !== undefined) {
return (ec.left > box.left) && (ec.left < box.left + box.width) &&
(ec.top > box.top) && (ec.top < box.top + box.height);
}
});
if (panAxes.length === 0) {
panAxes = undefined;
}
var c = plot.getPlaceholder().css('cursor');
if (c) {
prevCursor = c;
}
plot.getPlaceholder().css('cursor', plot.getOptions().pan.cursor);
plotState = plot.navigationState(page.X, page.Y);
}
function onDrag(e) {
var page = browser.getPageXY(e);
var frameRate = plot.getOptions().pan.frameRate;
if (frameRate === -1) {
plot.smartPan({
x: plotState.startPageX - page.X,
y: plotState.startPageY - page.Y
}, plotState, panAxes);
return;
}
if (panTimeout || !frameRate) return;
panTimeout = setTimeout(function() {
plot.smartPan({
x: plotState.startPageX - page.X,
y: plotState.startPageY - page.Y
}, plotState, panAxes);
panTimeout = null;
}, 1 / frameRate * 1000);
}
function onDragEnd(e) {
if (panTimeout) {
clearTimeout(panTimeout);
panTimeout = null;
}
isPanAction = false;
var page = browser.getPageXY(e);
plot.getPlaceholder().css('cursor', prevCursor);
plot.smartPan({
x: plotState.startPageX - page.X,
y: plotState.startPageY - page.Y
}, plotState, panAxes);
panHint = null;
}
function onDblClick(e) {
plot.activate();
var axes = plot.getTouchedAxis(e.clientX, e.clientY),
event;
if (axes[0]) {
event = new jQuery.Event('re-center', { detail: {
axisTouched: axes[0]
}});
} else {
event = new jQuery.Event('re-center', {detail: e});
}
plot.getPlaceholder().trigger(event);
}
function onClick(e) {
plot.activate();
if (isPanAction) {
onDragEnd(e);
}
return false;
}
plot.activate = function() {
var o = plot.getOptions();
if (!o.pan.active || !o.zoom.active) {
o.pan.active = true;
o.zoom.active = true;
plot.getPlaceholder().trigger("plotactivated", [plot]);
}
}
function bindEvents(plot, eventHolder) {
var o = plot.getOptions();
if (o.zoom.interactive) {
eventHolder.mousewheel(onMouseWheel);
}
if (o.pan.interactive) {
eventHolder.bind("dragstart", {
distance: 10
}, onDragStart);
eventHolder.bind("drag", onDrag);
eventHolder.bind("dragend", onDragEnd);
}
eventHolder.dblclick(onDblClick);
eventHolder.click(onClick);
}
plot.zoomOut = function(args) {
if (!args) {
args = {};
}
if (!args.amount) {
args.amount = plot.getOptions().zoom.amount;
}
args.amount = 1 / args.amount;
plot.zoom(args);
};
plot.zoom = function(args) {
if (!args) {
args = {};
}
var c = args.center,
amount = args.amount || plot.getOptions().zoom.amount,
w = plot.width(),
h = plot.height(),
axes = args.axes || plot.getAxes();
if (!c) {
c = {
left: w / 2,
top: h / 2
};
}
var xf = c.left / w,
yf = c.top / h,
minmax = {
x: {
min: c.left - xf * w / amount,
max: c.left + (1 - xf) * w / amount
},
y: {
min: c.top - yf * h / amount,
max: c.top + (1 - yf) * h / amount
}
};
for (var key in axes) {
if (!axes.hasOwnProperty(key)) {
continue;
}
var axis = axes[key],
opts = axis.options,
min = minmax[axis.direction].min,
max = minmax[axis.direction].max,
navigationOffset = axis.options.offset;
//skip axis without axisZoom when zooming only on certain axis or axis without plotZoom for zoom on entire plot
if ((!opts.axisZoom && args.axes) || (!args.axes && !opts.plotZoom)) {
continue;
}
min = $.plot.saturated.saturate(axis.c2p(min));
max = $.plot.saturated.saturate(axis.c2p(max));
if (min > max) {
// make sure min < max
var tmp = min;
min = max;
max = tmp;
}
var offsetBelow = $.plot.saturated.saturate(navigationOffset.below - (axis.min - min));
var offsetAbove = $.plot.saturated.saturate(navigationOffset.above - (axis.max - max));
opts.offset = { below: offsetBelow, above: offsetAbove };
};
plot.setupGrid();
plot.draw();
if (!args.preventEvent) {
plot.getPlaceholder().trigger("plotzoom", [plot, args]);
}
};
plot.pan = function(args) {
var delta = {
x: +args.left,
y: +args.top
};
if (isNaN(delta.x)) delta.x = 0;
if (isNaN(delta.y)) delta.y = 0;
$.each(args.axes || plot.getAxes(), function(_, axis) {
var opts = axis.options,
d = delta[axis.direction];
//skip axis without axisPan when panning only on certain axis or axis without plotPan for pan the entire plot
if ((!opts.axisPan && args.axes) || (!opts.plotPan && !args.axes)) {
return;
}
if (d !== 0) {
var navigationOffsetBelow = saturated.saturate(axis.c2p(axis.p2c(axis.min) - d) - axis.c2p(axis.p2c(axis.min))),
navigationOffsetAbove = saturated.saturate(axis.c2p(axis.p2c(axis.max) - d) - axis.c2p(axis.p2c(axis.max)));
if (!isFinite(navigationOffsetBelow)) {
navigationOffsetBelow = 0;
}
if (!isFinite(navigationOffsetAbove)) {
navigationOffsetAbove = 0;
}
opts.offset = {
below: saturated.saturate(navigationOffsetBelow + (opts.offset.below || 0)),
above: saturated.saturate(navigationOffsetAbove + (opts.offset.above || 0))
};
}
});
plot.setupGrid();
plot.draw();
if (!args.preventEvent) {
plot.getPlaceholder().trigger("plotpan", [plot, args]);
}
};
plot.recenter = function(args) {
$.each(args.axes || plot.getAxes(), function(_, axis) {
if (args.axes) {
if (this.direction === 'x') {
axis.options.offset = { below: 0 };
} else if (this.direction === 'y') {
axis.options.offset = { above: 0 };
}
} else {
axis.options.offset = { below: 0, above: 0 };
}
});
plot.setupGrid();
plot.draw();
};
var shouldSnap = function(delta) {
return (Math.abs(delta.y) < SNAPPING_CONSTANT && Math.abs(delta.x) >= SNAPPING_CONSTANT) ||
(Math.abs(delta.x) < SNAPPING_CONSTANT && Math.abs(delta.y) >= SNAPPING_CONSTANT);
}
// adjust delta so the pan action is constrained on the vertical or horizontal direction
// it the movements in the other direction are small
var adjustDeltaToSnap = function(delta) {
if (Math.abs(delta.x) < SNAPPING_CONSTANT && Math.abs(delta.y) >= SNAPPING_CONSTANT) {
return {x: 0, y: delta.y};
}
if (Math.abs(delta.y) < SNAPPING_CONSTANT && Math.abs(delta.x) >= SNAPPING_CONSTANT) {
return {x: delta.x, y: 0};
}
return delta;
}
var isDiagonalMode = function(delta) {
if (Math.abs(delta.x) > 0 && Math.abs(delta.y) > 0) {
return true;
}
return false;
}
var restoreAxisOffset = function(axes, initialState, delta) {
var axis;
Object.keys(axes).forEach(function(axisName) {
axis = axes[axisName];
if (delta[axis.direction] === 0) {
axis.options.offset.below = initialState[axisName].navigationOffset.below;
axis.options.offset.above = initialState[axisName].navigationOffset.above;
}
});
}
var prevDelta = { x: 0, y: 0 };
plot.smartPan = function(delta, initialState, panAxes, preventEvent) {
var snap = shouldSnap(delta),
axes = plot.getAxes(),
opts;
delta = adjustDeltaToSnap(delta);
if (isDiagonalMode(delta)) {
initialState.diagMode = true;
}
if (snap && initialState.diagMode === true) {
initialState.diagMode = false;
restoreAxisOffset(axes, initialState, delta);
}
if (snap) {
panHint = {
start: {
x: initialState.startPageX - plot.offset().left + plot.getPlotOffset().left,
y: initialState.startPageY - plot.offset().top + plot.getPlotOffset().top
},
end: {
x: initialState.startPageX - delta.x - plot.offset().left + plot.getPlotOffset().left,
y: initialState.startPageY - delta.y - plot.offset().top + plot.getPlotOffset().top
}
}
} else {
panHint = {
start: {
x: initialState.startPageX - plot.offset().left + plot.getPlotOffset().left,
y: initialState.startPageY - plot.offset().top + plot.getPlotOffset().top
},
end: false
}
}
if (isNaN(delta.x)) delta.x = 0;
if (isNaN(delta.y)) delta.y = 0;
if (panAxes) {
axes = panAxes;
}
var axis, axisMin, axisMax, p, d;
Object.keys(axes).forEach(function(axisName) {
axis = axes[axisName];
axisMin = axis.min;
axisMax = axis.max;
opts = axis.options;
d = delta[axis.direction];
p = prevDelta[axis.direction];
//skip axis without axisPan when panning only on certain axis or axis without plotPan for pan the entire plot
if ((!opts.axisPan && panAxes) || (!panAxes && !opts.plotPan)) {
return;
}
if (d !== 0) {
var navigationOffsetBelow = saturated.saturate(axis.c2p(axis.p2c(axisMin) - (p - d)) - axis.c2p(axis.p2c(axisMin))),
navigationOffsetAbove = saturated.saturate(axis.c2p(axis.p2c(axisMax) - (p - d)) - axis.c2p(axis.p2c(axisMax)));
if (!isFinite(navigationOffsetBelow)) {
navigationOffsetBelow = 0;
}
if (!isFinite(navigationOffsetAbove)) {
navigationOffsetAbove = 0;
}
axis.options.offset.below = saturated.saturate(navigationOffsetBelow + (axis.options.offset.below || 0));
axis.options.offset.above = saturated.saturate(navigationOffsetAbove + (axis.options.offset.above || 0));
}
});
prevDelta = delta;
plot.setupGrid();
plot.draw();
if (!preventEvent) {
plot.getPlaceholder().trigger("plotpan", [plot, delta, panAxes, initialState]);
}
};
function shutdown(plot, eventHolder) {
eventHolder.unbind("mousewheel", onMouseWheel);
eventHolder.unbind("dragstart", onDragStart);
eventHolder.unbind("drag", onDrag);
eventHolder.unbind("dragend", onDragEnd);
eventHolder.unbind("dblclick", onDblClick);
eventHolder.unbind("click", onClick);
if (panTimeout) clearTimeout(panTimeout);
}
function drawOverlay(plot, ctx) {
if (panHint) {
ctx.strokeStyle = 'rgba(96, 160, 208, 0.7)';
ctx.lineWidth = 2;
ctx.lineJoin = "round";
var startx = Math.round(panHint.start.x),
starty = Math.round(panHint.start.y),
endx, endy;
if (panAxes) {
if (panAxes[0].direction === 'x') {
endy = Math.round(panHint.start.y);
endx = Math.round(panHint.end.x);
} else if (panAxes[0].direction === 'y') {
endx = Math.round(panHint.start.x);
endy = Math.round(panHint.end.y);
}
} else {
endx = Math.round(panHint.end.x);
endy = Math.round(panHint.end.y);
}
ctx.beginPath();
if (panHint.end === false) {
ctx.moveTo(startx, starty - PANHINT_LENGTH_CONSTANT);
ctx.lineTo(startx, starty + PANHINT_LENGTH_CONSTANT);
ctx.moveTo(startx + PANHINT_LENGTH_CONSTANT, starty);
ctx.lineTo(startx - PANHINT_LENGTH_CONSTANT, starty);
} else {
var dirX = starty === endy;
ctx.moveTo(startx - (dirX ? 0 : PANHINT_LENGTH_CONSTANT), starty - (dirX ? PANHINT_LENGTH_CONSTANT : 0));
ctx.lineTo(startx + (dirX ? 0 : PANHINT_LENGTH_CONSTANT), starty + (dirX ? PANHINT_LENGTH_CONSTANT : 0));
ctx.moveTo(startx, starty);
ctx.lineTo(endx, endy);
ctx.moveTo(endx - (dirX ? 0 : PANHINT_LENGTH_CONSTANT), endy - (dirX ? PANHINT_LENGTH_CONSTANT : 0));
ctx.lineTo(endx + (dirX ? 0 : PANHINT_LENGTH_CONSTANT), endy + (dirX ? PANHINT_LENGTH_CONSTANT : 0));
}
ctx.stroke();
}
}
plot.getTouchedAxis = function(touchPointX, touchPointY) {
var ec = plot.getPlaceholder().offset();
ec.left = touchPointX - ec.left;
ec.top = touchPointY - ec.top;
var axis = plot.getXAxes().concat(plot.getYAxes()).filter(function (axis) {
var box = axis.box;
if (box !== undefined) {
return (ec.left > box.left) && (ec.left < box.left + box.width) &&
(ec.top > box.top) && (ec.top < box.top + box.height);
}
});
return axis;
}
plot.hooks.drawOverlay.push(drawOverlay);
plot.hooks.bindEvents.push(bindEvents);
plot.hooks.shutdown.push(shutdown);
}
$.plot.plugins.push({
init: init,
options: options,
name: 'navigate',
version: '1.3'
});
})(jQuery);