Commit | Line | Data |
---|---|---|
88e95c46 DV |
1 | /** |
2 | * @license | |
3 | * Copyright 2011 Robert Konigsberg (konigsberg@google.com) | |
4 | * MIT-licensed (http://opensource.org/licenses/MIT) | |
5 | */ | |
846f3d2d | 6 | |
88e95c46 | 7 | /** |
846f3d2d DV |
8 | * @fileoverview The default interaction model for Dygraphs. This is kept out |
9 | * of dygraph.js for better navigability. | |
10 | * @author Robert Konigsberg (konigsberg@google.com) | |
11 | */ | |
12 | ||
758a629f | 13 | /*global Dygraph:false */ |
c0f54d4f DV |
14 | "use strict"; |
15 | ||
6ecc0739 DV |
16 | import * as utils from './dygraph-utils'; |
17 | ||
846f3d2d | 18 | /** |
3f50dabb DV |
19 | * You can drag this many pixels past the edge of the chart and still have it |
20 | * be considered a zoom. This makes it easier to zoom to the exact edge of the | |
21 | * chart, a fairly common operation. | |
22 | */ | |
7a2b5176 | 23 | var DRAG_EDGE_MARGIN = 100; |
3f50dabb DV |
24 | |
25 | /** | |
846f3d2d DV |
26 | * A collection of functions to facilitate build custom interaction models. |
27 | * @class | |
28 | */ | |
6ecc0739 | 29 | var DygraphInteraction = {}; |
846f3d2d DV |
30 | |
31 | /** | |
3f50dabb DV |
32 | * Checks whether the beginning & ending of an event were close enough that it |
33 | * should be considered a click. If it should, dispatch appropriate events. | |
34 | * Returns true if the event was treated as a click. | |
35 | * | |
36 | * @param {Event} event | |
37 | * @param {Dygraph} g | |
38 | * @param {Object} context | |
39 | */ | |
6ecc0739 DV |
40 | DygraphInteraction.maybeTreatMouseOpAsClick = function(event, g, context) { |
41 | context.dragEndX = utils.dragGetX_(event, context); | |
42 | context.dragEndY = utils.dragGetY_(event, context); | |
3f50dabb DV |
43 | var regionWidth = Math.abs(context.dragEndX - context.dragStartX); |
44 | var regionHeight = Math.abs(context.dragEndY - context.dragStartY); | |
45 | ||
46 | if (regionWidth < 2 && regionHeight < 2 && | |
47 | g.lastx_ !== undefined && g.lastx_ != -1) { | |
6ecc0739 | 48 | DygraphInteraction.treatMouseOpAsClick(g, event, context); |
3f50dabb DV |
49 | } |
50 | ||
51 | context.regionWidth = regionWidth; | |
52 | context.regionHeight = regionHeight; | |
46fd9089 | 53 | }; |
3f50dabb DV |
54 | |
55 | /** | |
846f3d2d DV |
56 | * Called in response to an interaction model operation that |
57 | * should start the default panning behavior. | |
58 | * | |
59 | * It's used in the default callback for "mousedown" operations. | |
60 | * Custom interaction model builders can use it to provide the default | |
61 | * panning behavior. | |
62 | * | |
d67a4279 DV |
63 | * @param {Event} event the event object which led to the startPan call. |
64 | * @param {Dygraph} g The dygraph on which to act. | |
65 | * @param {Object} context The dragging context object (with | |
66 | * dragStartX/dragStartY/etc. properties). This function modifies the | |
67 | * context. | |
846f3d2d | 68 | */ |
6ecc0739 | 69 | DygraphInteraction.startPan = function(event, g, context) { |
758a629f | 70 | var i, axis; |
846f3d2d DV |
71 | context.isPanning = true; |
72 | var xRange = g.xAxisRange(); | |
5b9b2142 | 73 | |
5ec8b8ae | 74 | if (g.getOptionForAxis("logscale", "x")) { |
6ecc0739 DV |
75 | context.initialLeftmostDate = utils.log10(xRange[0]); |
76 | context.dateRange = utils.log10(xRange[1]) - utils.log10(xRange[0]); | |
5b9b2142 | 77 | } else { |
6e207211 | 78 | context.initialLeftmostDate = xRange[0]; |
5b9b2142 RK |
79 | context.dateRange = xRange[1] - xRange[0]; |
80 | } | |
846f3d2d DV |
81 | context.xUnitsPerPixel = context.dateRange / (g.plotter_.area.w - 1); |
82 | ||
b0963cdb DV |
83 | if (g.getNumericOption("panEdgeFraction")) { |
84 | var maxXPixelsToDraw = g.width_ * g.getNumericOption("panEdgeFraction"); | |
846f3d2d DV |
85 | var xExtremes = g.xAxisExtremes(); // I REALLY WANT TO CALL THIS xTremes! |
86 | ||
87 | var boundedLeftX = g.toDomXCoord(xExtremes[0]) - maxXPixelsToDraw; | |
88 | var boundedRightX = g.toDomXCoord(xExtremes[1]) + maxXPixelsToDraw; | |
89 | ||
90 | var boundedLeftDate = g.toDataXCoord(boundedLeftX); | |
91 | var boundedRightDate = g.toDataXCoord(boundedRightX); | |
92 | context.boundedDates = [boundedLeftDate, boundedRightDate]; | |
93 | ||
94 | var boundedValues = []; | |
b0963cdb | 95 | var maxYPixelsToDraw = g.height_ * g.getNumericOption("panEdgeFraction"); |
846f3d2d | 96 | |
758a629f DV |
97 | for (i = 0; i < g.axes_.length; i++) { |
98 | axis = g.axes_[i]; | |
846f3d2d DV |
99 | var yExtremes = axis.extremeRange; |
100 | ||
101 | var boundedTopY = g.toDomYCoord(yExtremes[0], i) + maxYPixelsToDraw; | |
102 | var boundedBottomY = g.toDomYCoord(yExtremes[1], i) - maxYPixelsToDraw; | |
103 | ||
f93af875 RK |
104 | var boundedTopValue = g.toDataYCoord(boundedTopY, i); |
105 | var boundedBottomValue = g.toDataYCoord(boundedBottomY, i); | |
846f3d2d DV |
106 | |
107 | boundedValues[i] = [boundedTopValue, boundedBottomValue]; | |
108 | } | |
109 | context.boundedValues = boundedValues; | |
110 | } | |
111 | ||
112 | // Record the range of each y-axis at the start of the drag. | |
6e207211 | 113 | // If any axis has a valueRange, then we want a 2D pan. |
97583b90 DV |
114 | // We can't store data directly in g.axes_, because it does not belong to us |
115 | // and could change out from under us during a pan (say if there's a data | |
116 | // update). | |
846f3d2d | 117 | context.is2DPan = false; |
97583b90 | 118 | context.axes = []; |
758a629f DV |
119 | for (i = 0; i < g.axes_.length; i++) { |
120 | axis = g.axes_[i]; | |
97583b90 | 121 | var axis_data = {}; |
846f3d2d DV |
122 | var yRange = g.yAxisRange(i); |
123 | // TODO(konigsberg): These values should be in |context|. | |
124 | // In log scale, initialTopValue, dragValueRange and unitsPerPixel are log scale. | |
1ca77443 RK |
125 | var logscale = g.attributes_.getForAxis("logscale", i); |
126 | if (logscale) { | |
6ecc0739 DV |
127 | axis_data.initialTopValue = utils.log10(yRange[1]); |
128 | axis_data.dragValueRange = utils.log10(yRange[1]) - utils.log10(yRange[0]); | |
846f3d2d | 129 | } else { |
97583b90 DV |
130 | axis_data.initialTopValue = yRange[1]; |
131 | axis_data.dragValueRange = yRange[1] - yRange[0]; | |
846f3d2d | 132 | } |
97583b90 DV |
133 | axis_data.unitsPerPixel = axis_data.dragValueRange / (g.plotter_.area.h - 1); |
134 | context.axes.push(axis_data); | |
846f3d2d DV |
135 | |
136 | // While calculating axes, set 2dpan. | |
6e207211 | 137 | if (axis.valueRange) context.is2DPan = true; |
846f3d2d DV |
138 | } |
139 | }; | |
140 | ||
141 | /** | |
142 | * Called in response to an interaction model operation that | |
143 | * responds to an event that pans the view. | |
144 | * | |
145 | * It's used in the default callback for "mousemove" operations. | |
146 | * Custom interaction model builders can use it to provide the default | |
147 | * panning behavior. | |
148 | * | |
d67a4279 DV |
149 | * @param {Event} event the event object which led to the movePan call. |
150 | * @param {Dygraph} g The dygraph on which to act. | |
151 | * @param {Object} context The dragging context object (with | |
152 | * dragStartX/dragStartY/etc. properties). This function modifies the | |
153 | * context. | |
846f3d2d | 154 | */ |
6ecc0739 DV |
155 | DygraphInteraction.movePan = function(event, g, context) { |
156 | context.dragEndX = utils.dragGetX_(event, context); | |
157 | context.dragEndY = utils.dragGetY_(event, context); | |
846f3d2d DV |
158 | |
159 | var minDate = context.initialLeftmostDate - | |
160 | (context.dragEndX - context.dragStartX) * context.xUnitsPerPixel; | |
161 | if (context.boundedDates) { | |
162 | minDate = Math.max(minDate, context.boundedDates[0]); | |
163 | } | |
164 | var maxDate = minDate + context.dateRange; | |
165 | if (context.boundedDates) { | |
166 | if (maxDate > context.boundedDates[1]) { | |
167 | // Adjust minDate, and recompute maxDate. | |
168 | minDate = minDate - (maxDate - context.boundedDates[1]); | |
169 | maxDate = minDate + context.dateRange; | |
170 | } | |
171 | } | |
172 | ||
5ec8b8ae | 173 | if (g.getOptionForAxis("logscale", "x")) { |
6ecc0739 DV |
174 | g.dateWindow_ = [ Math.pow(utils.LOG_SCALE, minDate), |
175 | Math.pow(utils.LOG_SCALE, maxDate) ]; | |
5b9b2142 | 176 | } else { |
6e207211 | 177 | g.dateWindow_ = [minDate, maxDate]; |
5b9b2142 | 178 | } |
846f3d2d DV |
179 | |
180 | // y-axis scaling is automatic unless this is a full 2D pan. | |
181 | if (context.is2DPan) { | |
f93af875 RK |
182 | |
183 | var pixelsDragged = context.dragEndY - context.dragStartY; | |
184 | ||
846f3d2d DV |
185 | // Adjust each axis appropriately. |
186 | for (var i = 0; i < g.axes_.length; i++) { | |
187 | var axis = g.axes_[i]; | |
97583b90 | 188 | var axis_data = context.axes[i]; |
97583b90 | 189 | var unitsDragged = pixelsDragged * axis_data.unitsPerPixel; |
920208fb | 190 | |
846f3d2d DV |
191 | var boundedValue = context.boundedValues ? context.boundedValues[i] : null; |
192 | ||
193 | // In log scale, maxValue and minValue are the logs of those values. | |
97583b90 | 194 | var maxValue = axis_data.initialTopValue + unitsDragged; |
846f3d2d DV |
195 | if (boundedValue) { |
196 | maxValue = Math.min(maxValue, boundedValue[1]); | |
197 | } | |
97583b90 | 198 | var minValue = maxValue - axis_data.dragValueRange; |
846f3d2d DV |
199 | if (boundedValue) { |
200 | if (minValue < boundedValue[0]) { | |
201 | // Adjust maxValue, and recompute minValue. | |
202 | maxValue = maxValue - (minValue - boundedValue[0]); | |
97583b90 | 203 | minValue = maxValue - axis_data.dragValueRange; |
846f3d2d DV |
204 | } |
205 | } | |
5b9b2142 | 206 | if (g.attributes_.getForAxis("logscale", i)) { |
6e207211 DV |
207 | axis.valueRange = [ Math.pow(utils.LOG_SCALE, minValue), |
208 | Math.pow(utils.LOG_SCALE, maxValue) ]; | |
846f3d2d | 209 | } else { |
6e207211 | 210 | axis.valueRange = [ minValue, maxValue ]; |
846f3d2d DV |
211 | } |
212 | } | |
213 | } | |
214 | ||
215 | g.drawGraph_(false); | |
216 | }; | |
217 | ||
218 | /** | |
219 | * Called in response to an interaction model operation that | |
220 | * responds to an event that ends panning. | |
221 | * | |
222 | * It's used in the default callback for "mouseup" operations. | |
223 | * Custom interaction model builders can use it to provide the default | |
224 | * panning behavior. | |
225 | * | |
d67a4279 DV |
226 | * @param {Event} event the event object which led to the endPan call. |
227 | * @param {Dygraph} g The dygraph on which to act. | |
228 | * @param {Object} context The dragging context object (with | |
229 | * dragStartX/dragStartY/etc. properties). This function modifies the | |
230 | * context. | |
846f3d2d | 231 | */ |
6ecc0739 | 232 | DygraphInteraction.endPan = DygraphInteraction.maybeTreatMouseOpAsClick; |
846f3d2d DV |
233 | |
234 | /** | |
235 | * Called in response to an interaction model operation that | |
236 | * responds to an event that starts zooming. | |
237 | * | |
238 | * It's used in the default callback for "mousedown" operations. | |
239 | * Custom interaction model builders can use it to provide the default | |
240 | * zooming behavior. | |
241 | * | |
d67a4279 DV |
242 | * @param {Event} event the event object which led to the startZoom call. |
243 | * @param {Dygraph} g The dygraph on which to act. | |
244 | * @param {Object} context The dragging context object (with | |
245 | * dragStartX/dragStartY/etc. properties). This function modifies the | |
246 | * context. | |
846f3d2d | 247 | */ |
6ecc0739 | 248 | DygraphInteraction.startZoom = function(event, g, context) { |
846f3d2d | 249 | context.isZooming = true; |
214083b4 | 250 | context.zoomMoved = false; |
846f3d2d DV |
251 | }; |
252 | ||
253 | /** | |
254 | * Called in response to an interaction model operation that | |
255 | * responds to an event that defines zoom boundaries. | |
256 | * | |
257 | * It's used in the default callback for "mousemove" operations. | |
258 | * Custom interaction model builders can use it to provide the default | |
259 | * zooming behavior. | |
260 | * | |
d67a4279 DV |
261 | * @param {Event} event the event object which led to the moveZoom call. |
262 | * @param {Dygraph} g The dygraph on which to act. | |
263 | * @param {Object} context The dragging context object (with | |
264 | * dragStartX/dragStartY/etc. properties). This function modifies the | |
265 | * context. | |
846f3d2d | 266 | */ |
6ecc0739 | 267 | DygraphInteraction.moveZoom = function(event, g, context) { |
214083b4 | 268 | context.zoomMoved = true; |
6ecc0739 DV |
269 | context.dragEndX = utils.dragGetX_(event, context); |
270 | context.dragEndY = utils.dragGetY_(event, context); | |
846f3d2d DV |
271 | |
272 | var xDelta = Math.abs(context.dragStartX - context.dragEndX); | |
273 | var yDelta = Math.abs(context.dragStartY - context.dragEndY); | |
274 | ||
275 | // drag direction threshold for y axis is twice as large as x axis | |
6ecc0739 | 276 | context.dragDirection = (xDelta < yDelta / 2) ? utils.VERTICAL : utils.HORIZONTAL; |
846f3d2d DV |
277 | |
278 | g.drawZoomRect_( | |
279 | context.dragDirection, | |
280 | context.dragStartX, | |
281 | context.dragEndX, | |
282 | context.dragStartY, | |
283 | context.dragEndY, | |
284 | context.prevDragDirection, | |
285 | context.prevEndX, | |
286 | context.prevEndY); | |
287 | ||
288 | context.prevEndX = context.dragEndX; | |
289 | context.prevEndY = context.dragEndY; | |
290 | context.prevDragDirection = context.dragDirection; | |
291 | }; | |
292 | ||
d67a4279 | 293 | /** |
6f5f0b2b | 294 | * TODO(danvk): move this logic into dygraph.js |
d67a4279 DV |
295 | * @param {Dygraph} g |
296 | * @param {Event} event | |
297 | * @param {Object} context | |
298 | */ | |
6ecc0739 | 299 | DygraphInteraction.treatMouseOpAsClick = function(g, event, context) { |
b0963cdb DV |
300 | var clickCallback = g.getFunctionOption('clickCallback'); |
301 | var pointClickCallback = g.getFunctionOption('pointClickCallback'); | |
846f3d2d DV |
302 | |
303 | var selectedPoint = null; | |
304 | ||
6f5f0b2b DV |
305 | // Find out if the click occurs on a point. |
306 | var closestIdx = -1; | |
307 | var closestDistance = Number.MAX_VALUE; | |
308 | ||
309 | // check if the click was on a particular point. | |
310 | for (var i = 0; i < g.selPoints_.length; i++) { | |
311 | var p = g.selPoints_[i]; | |
312 | var distance = Math.pow(p.canvasx - context.dragEndX, 2) + | |
313 | Math.pow(p.canvasy - context.dragEndY, 2); | |
314 | if (!isNaN(distance) && | |
315 | (closestIdx == -1 || distance < closestDistance)) { | |
316 | closestDistance = distance; | |
317 | closestIdx = i; | |
846f3d2d | 318 | } |
6f5f0b2b | 319 | } |
846f3d2d | 320 | |
6f5f0b2b DV |
321 | // Allow any click within two pixels of the dot. |
322 | var radius = g.getNumericOption('highlightCircleSize') + 2; | |
323 | if (closestDistance <= radius * radius) { | |
324 | selectedPoint = g.selPoints_[closestIdx]; | |
846f3d2d DV |
325 | } |
326 | ||
327 | if (selectedPoint) { | |
6f5f0b2b DV |
328 | var e = { |
329 | cancelable: true, | |
330 | point: selectedPoint, | |
331 | canvasx: context.dragEndX, | |
332 | canvasy: context.dragEndY | |
333 | }; | |
334 | var defaultPrevented = g.cascadeEvents_('pointClick', e); | |
335 | if (defaultPrevented) { | |
336 | // Note: this also prevents click / clickCallback from firing. | |
337 | return; | |
338 | } | |
339 | if (pointClickCallback) { | |
340 | pointClickCallback.call(g, event, selectedPoint); | |
341 | } | |
846f3d2d DV |
342 | } |
343 | ||
6f5f0b2b | 344 | var e = { |
48238e1d | 345 | cancelable: true, |
6f5f0b2b DV |
346 | xval: g.lastx_, // closest point by x value |
347 | pts: g.selPoints_, | |
348 | canvasx: context.dragEndX, | |
349 | canvasy: context.dragEndY | |
350 | }; | |
351 | if (!g.cascadeEvents_('click', e)) { | |
352 | if (clickCallback) { | |
353 | // TODO(danvk): pass along more info about the points, e.g. 'x' | |
354 | clickCallback.call(g, event, g.lastx_, g.selPoints_); | |
355 | } | |
846f3d2d DV |
356 | } |
357 | }; | |
358 | ||
359 | /** | |
360 | * Called in response to an interaction model operation that | |
361 | * responds to an event that performs a zoom based on previously defined | |
362 | * bounds.. | |
363 | * | |
364 | * It's used in the default callback for "mouseup" operations. | |
365 | * Custom interaction model builders can use it to provide the default | |
366 | * zooming behavior. | |
367 | * | |
d67a4279 DV |
368 | * @param {Event} event the event object which led to the endZoom call. |
369 | * @param {Dygraph} g The dygraph on which to end the zoom. | |
370 | * @param {Object} context The dragging context object (with | |
371 | * dragStartX/dragStartY/etc. properties). This function modifies the | |
372 | * context. | |
846f3d2d | 373 | */ |
6ecc0739 | 374 | DygraphInteraction.endZoom = function(event, g, context) { |
7c39bb3a | 375 | g.clearZoomRect_(); |
846f3d2d | 376 | context.isZooming = false; |
6ecc0739 | 377 | DygraphInteraction.maybeTreatMouseOpAsClick(event, g, context); |
846f3d2d | 378 | |
b04888cc DV |
379 | // The zoom rectangle is visibly clipped to the plot area, so its behavior |
380 | // should be as well. | |
381 | // See http://code.google.com/p/dygraphs/issues/detail?id=280 | |
382 | var plotArea = g.getArea(); | |
3f50dabb | 383 | if (context.regionWidth >= 10 && |
6ecc0739 | 384 | context.dragDirection == utils.HORIZONTAL) { |
b04888cc DV |
385 | var left = Math.min(context.dragStartX, context.dragEndX), |
386 | right = Math.max(context.dragStartX, context.dragEndX); | |
5ee26cc1 DV |
387 | left = Math.max(left, plotArea.x); |
388 | right = Math.min(right, plotArea.x + plotArea.w); | |
389 | if (left < right) { | |
390 | g.doZoomX_(left, right); | |
391 | } | |
421f1773 | 392 | context.cancelNextDblclick = true; |
3f50dabb | 393 | } else if (context.regionHeight >= 10 && |
6ecc0739 | 394 | context.dragDirection == utils.VERTICAL) { |
b04888cc DV |
395 | var top = Math.min(context.dragStartY, context.dragEndY), |
396 | bottom = Math.max(context.dragStartY, context.dragEndY); | |
5ee26cc1 DV |
397 | top = Math.max(top, plotArea.y); |
398 | bottom = Math.min(bottom, plotArea.y + plotArea.h); | |
399 | if (top < bottom) { | |
400 | g.doZoomY_(top, bottom); | |
401 | } | |
421f1773 | 402 | context.cancelNextDblclick = true; |
846f3d2d DV |
403 | } |
404 | context.dragStartX = null; | |
405 | context.dragStartY = null; | |
406 | }; | |
407 | ||
408 | /** | |
6125fedf DV |
409 | * @private |
410 | */ | |
6ecc0739 | 411 | DygraphInteraction.startTouch = function(event, g, context) { |
6125fedf | 412 | event.preventDefault(); // touch browsers are all nice. |
b19d7411 DV |
413 | if (event.touches.length > 1) { |
414 | // If the user ever puts two fingers down, it's not a double tap. | |
415 | context.startTimeForDoubleTapMs = null; | |
416 | } | |
417 | ||
6125fedf DV |
418 | var touches = []; |
419 | for (var i = 0; i < event.touches.length; i++) { | |
420 | var t = event.touches[i]; | |
421 | // we dispense with 'dragGetX_' because all touchBrowsers support pageX | |
422 | touches.push({ | |
423 | pageX: t.pageX, | |
424 | pageY: t.pageY, | |
425 | dataX: g.toDataXCoord(t.pageX), | |
426 | dataY: g.toDataYCoord(t.pageY) | |
427 | // identifier: t.identifier | |
428 | }); | |
429 | } | |
430 | context.initialTouches = touches; | |
431 | ||
432 | if (touches.length == 1) { | |
433 | // This is just a swipe. | |
434 | context.initialPinchCenter = touches[0]; | |
435 | context.touchDirections = { x: true, y: true }; | |
48cdd6c4 | 436 | } else if (touches.length >= 2) { |
6125fedf | 437 | // It's become a pinch! |
48cdd6c4 | 438 | // In case there are 3+ touches, we ignore all but the "first" two. |
6125fedf DV |
439 | |
440 | // only screen coordinates can be averaged (data coords could be log scale). | |
441 | context.initialPinchCenter = { | |
442 | pageX: 0.5 * (touches[0].pageX + touches[1].pageX), | |
443 | pageY: 0.5 * (touches[0].pageY + touches[1].pageY), | |
444 | ||
445 | // TODO(danvk): remove | |
446 | dataX: 0.5 * (touches[0].dataX + touches[1].dataX), | |
e446c952 | 447 | dataY: 0.5 * (touches[0].dataY + touches[1].dataY) |
6125fedf DV |
448 | }; |
449 | ||
450 | // Make pinches in a 45-degree swath around either axis 1-dimensional zooms. | |
451 | var initialAngle = 180 / Math.PI * Math.atan2( | |
452 | context.initialPinchCenter.pageY - touches[0].pageY, | |
453 | touches[0].pageX - context.initialPinchCenter.pageX); | |
454 | ||
455 | // use symmetry to get it into the first quadrant. | |
456 | initialAngle = Math.abs(initialAngle); | |
457 | if (initialAngle > 90) initialAngle = 90 - initialAngle; | |
458 | ||
459 | context.touchDirections = { | |
460 | x: (initialAngle < (90 - 45/2)), | |
461 | y: (initialAngle > 45/2) | |
462 | }; | |
463 | } | |
464 | ||
465 | // save the full x & y ranges. | |
466 | context.initialRange = { | |
467 | x: g.xAxisRange(), | |
468 | y: g.yAxisRange() | |
469 | }; | |
470 | }; | |
471 | ||
472 | /** | |
473 | * @private | |
474 | */ | |
6ecc0739 | 475 | DygraphInteraction.moveTouch = function(event, g, context) { |
b19d7411 DV |
476 | // If the tap moves, then it's definitely not part of a double-tap. |
477 | context.startTimeForDoubleTapMs = null; | |
478 | ||
e446c952 DV |
479 | var i, touches = []; |
480 | for (i = 0; i < event.touches.length; i++) { | |
6125fedf DV |
481 | var t = event.touches[i]; |
482 | touches.push({ | |
483 | pageX: t.pageX, | |
e446c952 | 484 | pageY: t.pageY |
6125fedf DV |
485 | }); |
486 | } | |
487 | var initialTouches = context.initialTouches; | |
488 | ||
489 | var c_now; | |
490 | ||
491 | // old and new centers. | |
492 | var c_init = context.initialPinchCenter; | |
493 | if (touches.length == 1) { | |
494 | c_now = touches[0]; | |
495 | } else { | |
496 | c_now = { | |
497 | pageX: 0.5 * (touches[0].pageX + touches[1].pageX), | |
498 | pageY: 0.5 * (touches[0].pageY + touches[1].pageY) | |
499 | }; | |
500 | } | |
501 | ||
502 | // this is the "swipe" component | |
503 | // we toss it out for now, but could use it in the future. | |
504 | var swipe = { | |
505 | pageX: c_now.pageX - c_init.pageX, | |
e446c952 | 506 | pageY: c_now.pageY - c_init.pageY |
6125fedf DV |
507 | }; |
508 | var dataWidth = context.initialRange.x[1] - context.initialRange.x[0]; | |
509 | var dataHeight = context.initialRange.y[0] - context.initialRange.y[1]; | |
510 | swipe.dataX = (swipe.pageX / g.plotter_.area.w) * dataWidth; | |
511 | swipe.dataY = (swipe.pageY / g.plotter_.area.h) * dataHeight; | |
512 | var xScale, yScale; | |
513 | ||
514 | // The residual bits are usually split into scale & rotate bits, but we split | |
515 | // them into x-scale and y-scale bits. | |
516 | if (touches.length == 1) { | |
517 | xScale = 1.0; | |
518 | yScale = 1.0; | |
48cdd6c4 | 519 | } else if (touches.length >= 2) { |
6125fedf DV |
520 | var initHalfWidth = (initialTouches[1].pageX - c_init.pageX); |
521 | xScale = (touches[1].pageX - c_now.pageX) / initHalfWidth; | |
522 | ||
523 | var initHalfHeight = (initialTouches[1].pageY - c_init.pageY); | |
524 | yScale = (touches[1].pageY - c_now.pageY) / initHalfHeight; | |
525 | } | |
526 | ||
527 | // Clip scaling to [1/8, 8] to prevent too much blowup. | |
528 | xScale = Math.min(8, Math.max(0.125, xScale)); | |
529 | yScale = Math.min(8, Math.max(0.125, yScale)); | |
530 | ||
b38afae5 | 531 | var didZoom = false; |
6125fedf DV |
532 | if (context.touchDirections.x) { |
533 | g.dateWindow_ = [ | |
534 | c_init.dataX - swipe.dataX + (context.initialRange.x[0] - c_init.dataX) / xScale, | |
e446c952 | 535 | c_init.dataX - swipe.dataX + (context.initialRange.x[1] - c_init.dataX) / xScale |
6125fedf | 536 | ]; |
b38afae5 | 537 | didZoom = true; |
6125fedf | 538 | } |
6e207211 | 539 | |
6125fedf | 540 | if (context.touchDirections.y) { |
e446c952 | 541 | for (i = 0; i < 1 /*g.axes_.length*/; i++) { |
6125fedf | 542 | var axis = g.axes_[i]; |
1ca77443 RK |
543 | var logscale = g.attributes_.getForAxis("logscale", i); |
544 | if (logscale) { | |
6125fedf DV |
545 | // TODO(danvk): implement |
546 | } else { | |
6e207211 | 547 | axis.valueRange = [ |
6125fedf | 548 | c_init.dataY - swipe.dataY + (context.initialRange.y[0] - c_init.dataY) / yScale, |
e446c952 | 549 | c_init.dataY - swipe.dataY + (context.initialRange.y[1] - c_init.dataY) / yScale |
6125fedf | 550 | ]; |
b38afae5 | 551 | didZoom = true; |
6125fedf DV |
552 | } |
553 | } | |
554 | } | |
555 | ||
556 | g.drawGraph_(false); | |
b38afae5 DV |
557 | |
558 | // We only call zoomCallback on zooms, not pans, to mirror desktop behavior. | |
b0963cdb | 559 | if (didZoom && touches.length > 1 && g.getFunctionOption('zoomCallback')) { |
b38afae5 | 560 | var viewWindow = g.xAxisRange(); |
4ee251cb | 561 | g.getFunctionOption("zoomCallback").call(g, viewWindow[0], viewWindow[1], g.yAxisRanges()); |
b38afae5 | 562 | } |
6125fedf DV |
563 | }; |
564 | ||
565 | /** | |
566 | * @private | |
567 | */ | |
6ecc0739 | 568 | DygraphInteraction.endTouch = function(event, g, context) { |
42a9ebb8 | 569 | if (event.touches.length !== 0) { |
6125fedf | 570 | // this is effectively a "reset" |
6ecc0739 | 571 | DygraphInteraction.startTouch(event, g, context); |
b19d7411 DV |
572 | } else if (event.changedTouches.length == 1) { |
573 | // Could be part of a "double tap" | |
574 | // The heuristic here is that it's a double-tap if the two touchend events | |
575 | // occur within 500ms and within a 50x50 pixel box. | |
576 | var now = new Date().getTime(); | |
577 | var t = event.changedTouches[0]; | |
578 | if (context.startTimeForDoubleTapMs && | |
579 | now - context.startTimeForDoubleTapMs < 500 && | |
580 | context.doubleTapX && Math.abs(context.doubleTapX - t.screenX) < 50 && | |
581 | context.doubleTapY && Math.abs(context.doubleTapY - t.screenY) < 50) { | |
582 | g.resetZoom(); | |
583 | } else { | |
584 | context.startTimeForDoubleTapMs = now; | |
585 | context.doubleTapX = t.screenX; | |
586 | context.doubleTapY = t.screenY; | |
587 | } | |
6125fedf DV |
588 | } |
589 | }; | |
590 | ||
3f50dabb DV |
591 | // Determine the distance from x to [left, right]. |
592 | var distanceFromInterval = function(x, left, right) { | |
593 | if (x < left) { | |
594 | return left - x; | |
595 | } else if (x > right) { | |
596 | return x - right; | |
597 | } else { | |
598 | return 0; | |
599 | } | |
600 | }; | |
601 | ||
602 | /** | |
603 | * Returns the number of pixels by which the event happens from the nearest | |
604 | * edge of the chart. For events in the interior of the chart, this returns zero. | |
605 | */ | |
606 | var distanceFromChart = function(event, g) { | |
6ecc0739 | 607 | var chartPos = utils.findPos(g.canvas_); |
3f50dabb DV |
608 | var box = { |
609 | left: chartPos.x, | |
610 | right: chartPos.x + g.canvas_.offsetWidth, | |
611 | top: chartPos.y, | |
612 | bottom: chartPos.y + g.canvas_.offsetHeight | |
613 | }; | |
614 | ||
615 | var pt = { | |
6ecc0739 DV |
616 | x: utils.pageX(event), |
617 | y: utils.pageY(event) | |
3f50dabb DV |
618 | }; |
619 | ||
620 | var dx = distanceFromInterval(pt.x, box.left, box.right), | |
621 | dy = distanceFromInterval(pt.y, box.top, box.bottom); | |
622 | return Math.max(dx, dy); | |
623 | }; | |
624 | ||
6125fedf | 625 | /** |
846f3d2d DV |
626 | * Default interation model for dygraphs. You can refer to specific elements of |
627 | * this when constructing your own interaction model, e.g.: | |
628 | * g.updateOptions( { | |
629 | * interactionModel: { | |
6ecc0739 | 630 | * mousedown: DygraphInteraction.defaultInteractionModel.mousedown |
846f3d2d DV |
631 | * } |
632 | * } ); | |
633 | */ | |
6ecc0739 | 634 | DygraphInteraction.defaultModel = { |
846f3d2d DV |
635 | // Track the beginning of drag events |
636 | mousedown: function(event, g, context) { | |
e992d194 DV |
637 | // Right-click should not initiate a zoom. |
638 | if (event.button && event.button == 2) return; | |
639 | ||
846f3d2d DV |
640 | context.initializeMouseDown(event, g, context); |
641 | ||
642 | if (event.altKey || event.shiftKey) { | |
6ecc0739 | 643 | DygraphInteraction.startPan(event, g, context); |
846f3d2d | 644 | } else { |
6ecc0739 | 645 | DygraphInteraction.startZoom(event, g, context); |
846f3d2d | 646 | } |
846f3d2d | 647 | |
3f50dabb DV |
648 | // Note: we register mousemove/mouseup on document to allow some leeway for |
649 | // events to move outside of the chart. Interaction model events get | |
650 | // registered on the canvas, which is too small to allow this. | |
651 | var mousemove = function(event) { | |
652 | if (context.isZooming) { | |
653 | // When the mouse moves >200px from the chart edge, cancel the zoom. | |
654 | var d = distanceFromChart(event, g); | |
5e1abda5 | 655 | if (d < DRAG_EDGE_MARGIN) { |
6ecc0739 | 656 | DygraphInteraction.moveZoom(event, g, context); |
3f50dabb DV |
657 | } else { |
658 | if (context.dragEndX !== null) { | |
659 | context.dragEndX = null; | |
660 | context.dragEndY = null; | |
661 | g.clearZoomRect_(); | |
662 | } | |
663 | } | |
664 | } else if (context.isPanning) { | |
6ecc0739 | 665 | DygraphInteraction.movePan(event, g, context); |
3f50dabb DV |
666 | } |
667 | }; | |
668 | var mouseup = function(event) { | |
669 | if (context.isZooming) { | |
670 | if (context.dragEndX !== null) { | |
6ecc0739 | 671 | DygraphInteraction.endZoom(event, g, context); |
3f50dabb | 672 | } else { |
6ecc0739 | 673 | DygraphInteraction.maybeTreatMouseOpAsClick(event, g, context); |
3f50dabb DV |
674 | } |
675 | } else if (context.isPanning) { | |
6ecc0739 | 676 | DygraphInteraction.endPan(event, g, context); |
3f50dabb | 677 | } |
846f3d2d | 678 | |
6ecc0739 DV |
679 | utils.removeEvent(document, 'mousemove', mousemove); |
680 | utils.removeEvent(document, 'mouseup', mouseup); | |
3f50dabb DV |
681 | context.destroy(); |
682 | }; | |
683 | ||
684 | g.addAndTrackEvent(document, 'mousemove', mousemove); | |
685 | g.addAndTrackEvent(document, 'mouseup', mouseup); | |
846f3d2d | 686 | }, |
3f50dabb | 687 | willDestroyContextMyself: true, |
846f3d2d | 688 | |
6125fedf | 689 | touchstart: function(event, g, context) { |
6ecc0739 | 690 | DygraphInteraction.startTouch(event, g, context); |
6125fedf DV |
691 | }, |
692 | touchmove: function(event, g, context) { | |
6ecc0739 | 693 | DygraphInteraction.moveTouch(event, g, context); |
6125fedf DV |
694 | }, |
695 | touchend: function(event, g, context) { | |
6ecc0739 | 696 | DygraphInteraction.endTouch(event, g, context); |
6125fedf DV |
697 | }, |
698 | ||
846f3d2d DV |
699 | // Disable zooming out if panning. |
700 | dblclick: function(event, g, context) { | |
421f1773 DV |
701 | if (context.cancelNextDblclick) { |
702 | context.cancelNextDblclick = false; | |
703 | return; | |
704 | } | |
6f5f0b2b DV |
705 | |
706 | // Give plugins a chance to grab this event. | |
707 | var e = { | |
708 | canvasx: context.dragEndX, | |
aa0b189f DV |
709 | canvasy: context.dragEndY, |
710 | cancelable: true, | |
6f5f0b2b DV |
711 | }; |
712 | if (g.cascadeEvents_('dblclick', e)) { | |
713 | return; | |
714 | } | |
715 | ||
846f3d2d DV |
716 | if (event.altKey || event.shiftKey) { |
717 | return; | |
718 | } | |
e4f6e11a | 719 | g.resetZoom(); |
846f3d2d DV |
720 | } |
721 | }; | |
722 | ||
6ecc0739 DV |
723 | /* |
724 | Dygraph.DEFAULT_ATTRS.interactionModel = DygraphInteraction.defaultModel; | |
846f3d2d DV |
725 | |
726 | // old ways of accessing these methods/properties | |
6ecc0739 DV |
727 | Dygraph.defaultInteractionModel = DygraphInteraction.defaultModel; |
728 | Dygraph.endZoom = DygraphInteraction.endZoom; | |
729 | Dygraph.moveZoom = DygraphInteraction.moveZoom; | |
730 | Dygraph.startZoom = DygraphInteraction.startZoom; | |
731 | Dygraph.endPan = DygraphInteraction.endPan; | |
732 | Dygraph.movePan = DygraphInteraction.movePan; | |
733 | Dygraph.startPan = DygraphInteraction.startPan; | |
734 | */ | |
735 | ||
736 | DygraphInteraction.nonInteractiveModel_ = { | |
027e9e9b DV |
737 | mousedown: function(event, g, context) { |
738 | context.initializeMouseDown(event, g, context); | |
739 | }, | |
6ecc0739 | 740 | mouseup: DygraphInteraction.maybeTreatMouseOpAsClick |
027e9e9b | 741 | }; |
3417f017 DV |
742 | |
743 | // Default interaction model when using the range selector. | |
6ecc0739 | 744 | DygraphInteraction.dragIsPanInteractionModel = { |
3417f017 DV |
745 | mousedown: function(event, g, context) { |
746 | context.initializeMouseDown(event, g, context); | |
6ecc0739 | 747 | DygraphInteraction.startPan(event, g, context); |
3417f017 DV |
748 | }, |
749 | mousemove: function(event, g, context) { | |
750 | if (context.isPanning) { | |
6ecc0739 | 751 | DygraphInteraction.movePan(event, g, context); |
3417f017 DV |
752 | } |
753 | }, | |
754 | mouseup: function(event, g, context) { | |
755 | if (context.isPanning) { | |
6ecc0739 | 756 | DygraphInteraction.endPan(event, g, context); |
3417f017 DV |
757 | } |
758 | } | |
759 | }; | |
3f50dabb | 760 | |
6ecc0739 | 761 | export default DygraphInteraction; |