-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
/
Copy pathlayout_defaults.js
71 lines (58 loc) · 1.93 KB
/
layout_defaults.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
/**
* Copyright 2012-2018, Plotly, Inc.
* All rights reserved.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
'use strict';
var Lib = require('../../lib');
var layoutAttributes = require('./layout_attributes');
module.exports = function supplyLayoutDefaults(layoutIn, layoutOut, fullData) {
function coerce(attr, dflt) {
return Lib.coerce(layoutIn, layoutOut, layoutAttributes, attr, dflt);
}
coerce('clickmode');
var dragMode = coerce('dragmode');
if(dragMode === 'select') coerce('selectdirection');
var hovermodeDflt;
if(layoutOut._has('cartesian')) {
if(layoutOut.clickmode.indexOf('select') > -1) {
hovermodeDflt = 'closest';
} else {
// flag for 'horizontal' plots:
// determines the state of the mode bar 'compare' hovermode button
layoutOut._isHoriz = isHoriz(fullData);
hovermodeDflt = layoutOut._isHoriz ? 'y' : 'x';
}
}
else hovermodeDflt = 'closest';
var hoverMode = coerce('hovermode', hovermodeDflt);
if(hoverMode) {
coerce('hoverdistance');
coerce('spikedistance');
}
// if only mapbox or geo subplots is present on graph,
// reset 'zoom' dragmode to 'pan' until 'zoom' is implemented,
// so that the correct modebar button is active
var hasMapbox = layoutOut._has('mapbox');
var hasGeo = layoutOut._has('geo');
var len = layoutOut._basePlotModules.length;
if(layoutOut.dragmode === 'zoom' && (
((hasMapbox || hasGeo) && len === 1) ||
(hasMapbox && hasGeo && len === 2)
)) {
layoutOut.dragmode = 'pan';
}
};
function isHoriz(fullData) {
var out = true;
for(var i = 0; i < fullData.length; i++) {
var trace = fullData[i];
if(trace.orientation !== 'h') {
out = false;
break;
}
}
return out;
}