-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
/
Copy pathdraw.js
648 lines (526 loc) · 19.8 KB
/
draw.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
/**
* 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 d3 = require('d3');
var Plots = require('../../plots/plots');
var Color = require('../color');
var Drawing = require('../drawing');
var Lib = require('../../lib');
var svgTextUtils = require('../../lib/svg_text_utils');
var anchorUtils = require('../legend/anchor_utils');
var arrayEditor = require('../../plot_api/plot_template').arrayEditor;
var LINE_SPACING = require('../../constants/alignment').LINE_SPACING;
var constants = require('./constants');
var ScrollBox = require('./scrollbox');
module.exports = function draw(gd) {
var fullLayout = gd._fullLayout,
menuData = Lib.filterVisible(fullLayout[constants.name]);
/* Update menu data is bound to the header-group.
* The items in the header group are always present.
*
* Upon clicking on a header its corresponding button
* data is bound to the button-group.
*
* We draw all headers in one group before all buttons
* so that the buttons *always* appear above the headers.
*
* Note that only one set of buttons are visible at once.
*
* <g container />
*
* <g header-group />
* <g item header />
* <text item header-arrow />
* <g header-group />
* <g item header />
* <text item header-arrow />
* ...
*
* <g button-group />
* <g item button />
* <g item button />
* ...
*/
function clearAutoMargin(menuOpts) {
Plots.autoMargin(gd, autoMarginId(menuOpts));
}
// draw update menu container
var menus = fullLayout._menulayer
.selectAll('g.' + constants.containerClassName)
.data(menuData.length > 0 ? [0] : []);
menus.enter().append('g')
.classed(constants.containerClassName, true)
.style('cursor', 'pointer');
menus.exit().each(function() {
// Most components don't need to explicitly remove autoMargin, because
// marginPushers does this - but updatemenu updates don't go through
// a full replot so we need to explicitly remove it.
// This is for removing *all* updatemenus, removing individuals is
// handled below, in headerGroups.exit
d3.select(this).selectAll('g.' + constants.headerGroupClassName)
.each(clearAutoMargin);
}).remove();
// return early if no update menus are visible
if(menuData.length === 0) return;
// join header group
var headerGroups = menus.selectAll('g.' + constants.headerGroupClassName)
.data(menuData, keyFunction);
headerGroups.enter().append('g')
.classed(constants.headerGroupClassName, true);
// draw dropdown button container
var gButton = Lib.ensureSingle(menus, 'g', constants.dropdownButtonGroupClassName, function(s) {
s.style('pointer-events', 'all');
});
// find dimensions before plotting anything (this mutates menuOpts)
for(var i = 0; i < menuData.length; i++) {
var menuOpts = menuData[i];
findDimensions(gd, menuOpts);
}
// setup scrollbox
var scrollBoxId = 'updatemenus' + fullLayout._uid,
scrollBox = new ScrollBox(gd, gButton, scrollBoxId);
// remove exiting header, remove dropped buttons and reset margins
if(headerGroups.enter().size()) {
// make sure gButton is on top of all headers
gButton.node().parentNode.appendChild(gButton.node());
gButton.call(removeAllButtons);
}
headerGroups.exit().each(function(menuOpts) {
gButton.call(removeAllButtons);
clearAutoMargin(menuOpts);
}).remove();
// draw headers!
headerGroups.each(function(menuOpts) {
var gHeader = d3.select(this);
var _gButton = menuOpts.type === 'dropdown' ? gButton : null;
Plots.manageCommandObserver(gd, menuOpts, menuOpts.buttons, function(data) {
setActive(gd, menuOpts, menuOpts.buttons[data.index], gHeader, _gButton, scrollBox, data.index, true);
});
if(menuOpts.type === 'dropdown') {
drawHeader(gd, gHeader, gButton, scrollBox, menuOpts);
// if this menu is active, update the dropdown container
if(isActive(gButton, menuOpts)) {
drawButtons(gd, gHeader, gButton, scrollBox, menuOpts);
}
} else {
drawButtons(gd, gHeader, null, null, menuOpts);
}
});
};
// Note that '_index' is set at the default step,
// it corresponds to the menu index in the user layout update menu container.
// Because a menu can be set invisible,
// this is a more 'consistent' field than the index in the menuData.
function keyFunction(menuOpts) {
return menuOpts._index;
}
function isFolded(gButton) {
return +gButton.attr(constants.menuIndexAttrName) === -1;
}
function isActive(gButton, menuOpts) {
return +gButton.attr(constants.menuIndexAttrName) === menuOpts._index;
}
function setActive(gd, menuOpts, buttonOpts, gHeader, gButton, scrollBox, buttonIndex, isSilentUpdate) {
// update 'active' attribute in menuOpts
menuOpts.active = buttonIndex;
// due to templating, it's possible this slider doesn't even exist yet
arrayEditor(gd.layout, constants.name, menuOpts)
.applyUpdate('active', buttonIndex);
if(menuOpts.type === 'buttons') {
drawButtons(gd, gHeader, null, null, menuOpts);
}
else if(menuOpts.type === 'dropdown') {
// fold up buttons and redraw header
gButton.attr(constants.menuIndexAttrName, '-1');
drawHeader(gd, gHeader, gButton, scrollBox, menuOpts);
if(!isSilentUpdate) {
drawButtons(gd, gHeader, gButton, scrollBox, menuOpts);
}
}
}
function drawHeader(gd, gHeader, gButton, scrollBox, menuOpts) {
var header = Lib.ensureSingle(gHeader, 'g', constants.headerClassName, function(s) {
s.style('pointer-events', 'all');
});
var dims = menuOpts._dims;
var active = menuOpts.active;
var headerOpts = menuOpts.buttons[active] || constants.blankHeaderOpts;
var posOpts = { y: menuOpts.pad.t, yPad: 0, x: menuOpts.pad.l, xPad: 0, index: 0 };
var positionOverrides = {
width: dims.headerWidth,
height: dims.headerHeight
};
header
.call(drawItem, menuOpts, headerOpts, gd)
.call(setItemPosition, menuOpts, posOpts, positionOverrides);
// draw drop arrow at the right edge
var arrow = Lib.ensureSingle(gHeader, 'text', constants.headerArrowClassName, function(s) {
s.classed('user-select-none', true)
.attr('text-anchor', 'end')
.call(Drawing.font, menuOpts.font)
.text(constants.arrowSymbol[menuOpts.direction]);
});
arrow.attr({
x: dims.headerWidth - constants.arrowOffsetX + menuOpts.pad.l,
y: dims.headerHeight / 2 + constants.textOffsetY + menuOpts.pad.t
});
header.on('click', function() {
gButton.call(removeAllButtons,
String(isActive(gButton, menuOpts) ? -1 : menuOpts._index)
);
drawButtons(gd, gHeader, gButton, scrollBox, menuOpts);
});
header.on('mouseover', function() {
header.call(styleOnMouseOver);
});
header.on('mouseout', function() {
header.call(styleOnMouseOut, menuOpts);
});
// translate header group
Drawing.setTranslate(gHeader, dims.lx, dims.ly);
}
function drawButtons(gd, gHeader, gButton, scrollBox, menuOpts) {
// If this is a set of buttons, set pointer events = all since we play
// some minor games with which container is which in order to simplify
// the drawing of *either* buttons or menus
if(!gButton) {
gButton = gHeader;
gButton.attr('pointer-events', 'all');
}
var buttonData = (!isFolded(gButton) || menuOpts.type === 'buttons') ?
menuOpts.buttons :
[];
var klass = menuOpts.type === 'dropdown' ? constants.dropdownButtonClassName : constants.buttonClassName;
var buttons = gButton.selectAll('g.' + klass)
.data(Lib.filterVisible(buttonData));
var enter = buttons.enter().append('g')
.classed(klass, true);
var exit = buttons.exit();
if(menuOpts.type === 'dropdown') {
enter.attr('opacity', '0')
.transition()
.attr('opacity', '1');
exit.transition()
.attr('opacity', '0')
.remove();
} else {
exit.remove();
}
var x0 = 0;
var y0 = 0;
var dims = menuOpts._dims;
var isVertical = ['up', 'down'].indexOf(menuOpts.direction) !== -1;
if(menuOpts.type === 'dropdown') {
if(isVertical) {
y0 = dims.headerHeight + constants.gapButtonHeader;
} else {
x0 = dims.headerWidth + constants.gapButtonHeader;
}
}
if(menuOpts.type === 'dropdown' && menuOpts.direction === 'up') {
y0 = -constants.gapButtonHeader + constants.gapButton - dims.openHeight;
}
if(menuOpts.type === 'dropdown' && menuOpts.direction === 'left') {
x0 = -constants.gapButtonHeader + constants.gapButton - dims.openWidth;
}
var posOpts = {
x: dims.lx + x0 + menuOpts.pad.l,
y: dims.ly + y0 + menuOpts.pad.t,
yPad: constants.gapButton,
xPad: constants.gapButton,
index: 0,
};
var scrollBoxPosition = {
l: posOpts.x + menuOpts.borderwidth,
t: posOpts.y + menuOpts.borderwidth
};
buttons.each(function(buttonOpts, buttonIndex) {
var button = d3.select(this);
button
.call(drawItem, menuOpts, buttonOpts, gd)
.call(setItemPosition, menuOpts, posOpts);
button.on('click', function() {
// skip `dragend` events
if(d3.event.defaultPrevented) return;
setActive(gd, menuOpts, buttonOpts, gHeader, gButton, scrollBox, buttonIndex);
if(buttonOpts.execute) {
Plots.executeAPICommand(gd, buttonOpts.method, buttonOpts.args);
}
gd.emit('plotly_buttonclicked', {menu: menuOpts, button: buttonOpts, active: menuOpts.active});
});
button.on('mouseover', function() {
button.call(styleOnMouseOver);
});
button.on('mouseout', function() {
button.call(styleOnMouseOut, menuOpts);
buttons.call(styleButtons, menuOpts);
});
});
buttons.call(styleButtons, menuOpts);
if(isVertical) {
scrollBoxPosition.w = Math.max(dims.openWidth, dims.headerWidth);
scrollBoxPosition.h = posOpts.y - scrollBoxPosition.t;
}
else {
scrollBoxPosition.w = posOpts.x - scrollBoxPosition.l;
scrollBoxPosition.h = Math.max(dims.openHeight, dims.headerHeight);
}
scrollBoxPosition.direction = menuOpts.direction;
if(scrollBox) {
if(buttons.size()) {
drawScrollBox(gd, gHeader, gButton, scrollBox, menuOpts, scrollBoxPosition);
}
else {
hideScrollBox(scrollBox);
}
}
}
function drawScrollBox(gd, gHeader, gButton, scrollBox, menuOpts, position) {
// enable the scrollbox
var direction = menuOpts.direction;
var isVertical = (direction === 'up' || direction === 'down');
var dims = menuOpts._dims;
var active = menuOpts.active,
translateX, translateY,
i;
if(isVertical) {
translateY = 0;
for(i = 0; i < active; i++) {
translateY += dims.heights[i] + constants.gapButton;
}
}
else {
translateX = 0;
for(i = 0; i < active; i++) {
translateX += dims.widths[i] + constants.gapButton;
}
}
scrollBox.enable(position, translateX, translateY);
if(scrollBox.hbar) {
scrollBox.hbar
.attr('opacity', '0')
.transition()
.attr('opacity', '1');
}
if(scrollBox.vbar) {
scrollBox.vbar
.attr('opacity', '0')
.transition()
.attr('opacity', '1');
}
}
function hideScrollBox(scrollBox) {
var hasHBar = !!scrollBox.hbar,
hasVBar = !!scrollBox.vbar;
if(hasHBar) {
scrollBox.hbar
.transition()
.attr('opacity', '0')
.each('end', function() {
hasHBar = false;
if(!hasVBar) scrollBox.disable();
});
}
if(hasVBar) {
scrollBox.vbar
.transition()
.attr('opacity', '0')
.each('end', function() {
hasVBar = false;
if(!hasHBar) scrollBox.disable();
});
}
}
function drawItem(item, menuOpts, itemOpts, gd) {
item.call(drawItemRect, menuOpts)
.call(drawItemText, menuOpts, itemOpts, gd);
}
function drawItemRect(item, menuOpts) {
var rect = Lib.ensureSingle(item, 'rect', constants.itemRectClassName, function(s) {
s.attr({
rx: constants.rx,
ry: constants.ry,
'shape-rendering': 'crispEdges'
});
});
rect.call(Color.stroke, menuOpts.bordercolor)
.call(Color.fill, menuOpts.bgcolor)
.style('stroke-width', menuOpts.borderwidth + 'px');
}
function drawItemText(item, menuOpts, itemOpts, gd) {
var text = Lib.ensureSingle(item, 'text', constants.itemTextClassName, function(s) {
s.classed('user-select-none', true)
.attr({
'text-anchor': 'start',
'data-notex': 1
});
});
text.call(Drawing.font, menuOpts.font)
.text(itemOpts.label)
.call(svgTextUtils.convertToTspans, gd);
}
function styleButtons(buttons, menuOpts) {
var active = menuOpts.active;
buttons.each(function(buttonOpts, i) {
var button = d3.select(this);
if(i === active && menuOpts.showactive) {
button.select('rect.' + constants.itemRectClassName)
.call(Color.fill, constants.activeColor);
}
});
}
function styleOnMouseOver(item) {
item.select('rect.' + constants.itemRectClassName)
.call(Color.fill, constants.hoverColor);
}
function styleOnMouseOut(item, menuOpts) {
item.select('rect.' + constants.itemRectClassName)
.call(Color.fill, menuOpts.bgcolor);
}
// find item dimensions (this mutates menuOpts)
function findDimensions(gd, menuOpts) {
var dims = menuOpts._dims = {
width1: 0,
height1: 0,
heights: [],
widths: [],
totalWidth: 0,
totalHeight: 0,
openWidth: 0,
openHeight: 0,
lx: 0,
ly: 0
};
var fakeButtons = Drawing.tester.selectAll('g.' + constants.dropdownButtonClassName)
.data(Lib.filterVisible(menuOpts.buttons));
fakeButtons.enter().append('g')
.classed(constants.dropdownButtonClassName, true);
var isVertical = ['up', 'down'].indexOf(menuOpts.direction) !== -1;
// loop over fake buttons to find width / height
fakeButtons.each(function(buttonOpts, i) {
var button = d3.select(this);
button.call(drawItem, menuOpts, buttonOpts, gd);
var text = button.select('.' + constants.itemTextClassName);
// width is given by max width of all buttons
var tWidth = text.node() && Drawing.bBox(text.node()).width;
var wEff = Math.max(tWidth + constants.textPadX, constants.minWidth);
// height is determined by item text
var tHeight = menuOpts.font.size * LINE_SPACING;
var tLines = svgTextUtils.lineCount(text);
var hEff = Math.max(tHeight * tLines, constants.minHeight) + constants.textOffsetY;
hEff = Math.ceil(hEff);
wEff = Math.ceil(wEff);
// Store per-item sizes since a row of horizontal buttons, for example,
// don't all need to be the same width:
dims.widths[i] = wEff;
dims.heights[i] = hEff;
// Height and width of individual element:
dims.height1 = Math.max(dims.height1, hEff);
dims.width1 = Math.max(dims.width1, wEff);
if(isVertical) {
dims.totalWidth = Math.max(dims.totalWidth, wEff);
dims.openWidth = dims.totalWidth;
dims.totalHeight += hEff + constants.gapButton;
dims.openHeight += hEff + constants.gapButton;
} else {
dims.totalWidth += wEff + constants.gapButton;
dims.openWidth += wEff + constants.gapButton;
dims.totalHeight = Math.max(dims.totalHeight, hEff);
dims.openHeight = dims.totalHeight;
}
});
if(isVertical) {
dims.totalHeight -= constants.gapButton;
} else {
dims.totalWidth -= constants.gapButton;
}
dims.headerWidth = dims.width1 + constants.arrowPadX;
dims.headerHeight = dims.height1;
if(menuOpts.type === 'dropdown') {
if(isVertical) {
dims.width1 += constants.arrowPadX;
dims.totalHeight = dims.height1;
} else {
dims.totalWidth = dims.width1;
}
dims.totalWidth += constants.arrowPadX;
}
fakeButtons.remove();
var paddedWidth = dims.totalWidth + menuOpts.pad.l + menuOpts.pad.r;
var paddedHeight = dims.totalHeight + menuOpts.pad.t + menuOpts.pad.b;
var graphSize = gd._fullLayout._size;
dims.lx = graphSize.l + graphSize.w * menuOpts.x;
dims.ly = graphSize.t + graphSize.h * (1 - menuOpts.y);
var xanchor = 'left';
if(anchorUtils.isRightAnchor(menuOpts)) {
dims.lx -= paddedWidth;
xanchor = 'right';
}
if(anchorUtils.isCenterAnchor(menuOpts)) {
dims.lx -= paddedWidth / 2;
xanchor = 'center';
}
var yanchor = 'top';
if(anchorUtils.isBottomAnchor(menuOpts)) {
dims.ly -= paddedHeight;
yanchor = 'bottom';
}
if(anchorUtils.isMiddleAnchor(menuOpts)) {
dims.ly -= paddedHeight / 2;
yanchor = 'middle';
}
dims.totalWidth = Math.ceil(dims.totalWidth);
dims.totalHeight = Math.ceil(dims.totalHeight);
dims.lx = Math.round(dims.lx);
dims.ly = Math.round(dims.ly);
Plots.autoMargin(gd, autoMarginId(menuOpts), {
x: menuOpts.x,
y: menuOpts.y,
l: paddedWidth * ({right: 1, center: 0.5}[xanchor] || 0),
r: paddedWidth * ({left: 1, center: 0.5}[xanchor] || 0),
b: paddedHeight * ({top: 1, middle: 0.5}[yanchor] || 0),
t: paddedHeight * ({bottom: 1, middle: 0.5}[yanchor] || 0)
});
}
function autoMarginId(menuOpts) {
return constants.autoMarginIdRoot + menuOpts._index;
}
// set item positions (mutates posOpts)
function setItemPosition(item, menuOpts, posOpts, overrideOpts) {
overrideOpts = overrideOpts || {};
var rect = item.select('.' + constants.itemRectClassName);
var text = item.select('.' + constants.itemTextClassName);
var borderWidth = menuOpts.borderwidth;
var index = posOpts.index;
var dims = menuOpts._dims;
Drawing.setTranslate(item, borderWidth + posOpts.x, borderWidth + posOpts.y);
var isVertical = ['up', 'down'].indexOf(menuOpts.direction) !== -1;
var finalHeight = overrideOpts.height || (isVertical ? dims.heights[index] : dims.height1);
rect.attr({
x: 0,
y: 0,
width: overrideOpts.width || (isVertical ? dims.width1 : dims.widths[index]),
height: finalHeight
});
var tHeight = menuOpts.font.size * LINE_SPACING;
var tLines = svgTextUtils.lineCount(text);
var spanOffset = ((tLines - 1) * tHeight / 2);
svgTextUtils.positionText(text, constants.textOffsetX,
finalHeight / 2 - spanOffset + constants.textOffsetY);
if(isVertical) {
posOpts.y += dims.heights[index] + posOpts.yPad;
} else {
posOpts.x += dims.widths[index] + posOpts.xPad;
}
posOpts.index++;
}
function removeAllButtons(gButton, newMenuIndexAttr) {
gButton
.attr(constants.menuIndexAttrName, newMenuIndexAttr || '-1')
.selectAll('g.' + constants.dropdownButtonClassName).remove();
}