-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
/
Copy pathcolorbar_test.js
403 lines (347 loc) · 15.6 KB
/
colorbar_test.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
var d3 = require('d3');
var Plotly = require('@lib/index');
var Colorbar = require('@src/components/colorbar');
var createGraphDiv = require('../assets/create_graph_div');
var destroyGraphDiv = require('../assets/destroy_graph_div');
var failTest = require('../assets/fail_test');
var supplyAllDefaults = require('../assets/supply_defaults');
var assertPlotSize = require('../assets/custom_assertions').assertPlotSize;
var drag = require('../assets/drag');
describe('Test colorbar:', function() {
'use strict';
describe('supplyDefaults:', function() {
function _supply(trace, layout) {
var gd = {
data: [trace],
layout: layout
};
supplyAllDefaults(gd);
return gd._fullData[0];
}
it('should fill in tickfont defaults', function() {
var out = _supply({
type: 'heatmap',
z: [[1, 2, 3], [2, 3, 6]]
});
expect(out.colorbar.tickfont.color).toBe('#444', 'dflt color');
});
it('should inherit tickfont defaults from global font', function() {
var out = _supply({
type: 'heatmap',
z: [[1, 2, 3], [2, 3, 6]]
}, {
font: {color: 'red'}
});
expect(out.colorbar.tickfont.color).toBe('red', 'from global font');
});
});
describe('hasColorbar', function() {
var hasColorbar = Colorbar.hasColorbar,
trace;
it('should return true when marker colorbar is defined', function() {
trace = {
marker: {
colorbar: {},
line: {
colorbar: {}
}
}
};
expect(hasColorbar(trace.marker)).toBe(true);
expect(hasColorbar(trace.marker.line)).toBe(true);
trace = {
marker: {
line: {}
}
};
expect(hasColorbar(trace.marker)).toBe(false);
expect(hasColorbar(trace.marker.line)).toBe(false);
});
});
describe('drawing & editing', function() {
var gd;
beforeEach(function() {
gd = createGraphDiv();
});
afterEach(destroyGraphDiv);
it('does not lock up on tiny fractional ranges', function(done) {
var z = [
[9607345622458638.0, 9607345622458652.0, 9607345622458652.0, 9607345622458646.0, 9607345622458652.0, 9607345622458650.0, 9607345622458650.0, 9607345622458646.0],
[9607345622458654.0, 9607345622458640.0, 9607345622458650.0, 9607345622458652.0, 9607345622458652.0, 9607345622458654.0, 9607345622458650.0, 9607345622458652.0],
[9607345622458654.0, 9607345622458652.0, 9607345622458638.0, 9607345622458652.0, 9607345622458650.0, 9607345622458652.0, 9607345622458654.0, 9607345622458650.0],
[9607345622458650.0, 9607345622458652.0, 9607345622458650.0, 9607345622458632.0, 9607345622458644.0, 9607345622458646.0, 9607345622458646.0, 9607345622458650.0],
[9607345622458654.0, 9607345622458652.0, 9607345622458650.0, 9607345622458650.0, 9607345622458638.0, 9607345622458654.0, 9607345622458654.0, 9607345622458650.0],
[9607345622458650.0, 9607345622458654.0, 9607345622458650.0, 9607345622458646.0, 9607345622458652.0, 9607345622458638.0, 9607345622458646.0, 9607345622458652.0],
[9607345622458654.0, 9607345622458652.0, 9607345622458654.0, 9607345622458650.0, 9607345622458654.0, 9607345622458652.0, 9607345622458640.0, 9607345622458654.0],
[9607345622458650.0, 9607345622458652.0, 9607345622458650.0, 9607345622458652.0, 9607345622458650.0, 9607345622458654.0, 9607345622458654.0, 9607345622458638.0]
];
Plotly.newPlot(gd, [{type: 'heatmap', z: z}])
.catch(failTest)
.then(done);
});
function assertCB(msg, present, opts) {
var expandedMarginR = opts.expandedMarginR;
var expandedMarginT = opts.expandedMarginT;
var cbTop = opts.top;
var cbHeight = opts.height;
var multiFill = opts.multiFill;
var colorbars = d3.select(gd).selectAll('.colorbar');
expect(colorbars.size()).toBe(present ? 1 : 0);
// check that the displayed object has the right size,
// not just that fullLayout._size changed
var plotSizeTest = {};
if(expandedMarginR) plotSizeTest.widthLessThan = 400;
else plotSizeTest.width = 400;
if(expandedMarginT) plotSizeTest.heightLessThan = 400;
else plotSizeTest.height = 400;
assertPlotSize(plotSizeTest);
if(present) {
var cbbg = colorbars.selectAll('.cbbg');
var cbfills = colorbars.selectAll('.cbfill');
expect(cbfills.size()).negateIf(multiFill).toBe(1);
if(!cbHeight) cbHeight = 400;
var bgHeight = +cbbg.attr('height');
if(expandedMarginT) expect(bgHeight).toBeLessThan(cbHeight - 2);
else expect(bgHeight).toBeWithin(cbHeight, 2);
if(cbTop !== undefined) {
var topShift = cbbg.node().getBoundingClientRect().top - gd.getBoundingClientRect().top;
expect(topShift).toBeWithin(cbTop, 2);
}
}
}
// let heatmap stand in for all traces with trace.{showscale, colorbar}
// also test impliedEdits for colorbars at the trace root
it('can show and hide heatmap colorbars and sizes correctly with automargin', function(done) {
var thickPx, lenFrac;
Plotly.newPlot(gd, [{
type: 'heatmap',
z: [[1, 10], [100, 1000]]
}], {
height: 500,
width: 500,
margin: {l: 50, r: 50, t: 50, b: 50}
})
.then(function() {
assertCB('initial', true, {expandedMarginR: true, expandedMarginT: false, top: 50});
return Plotly.restyle(gd, {showscale: false});
})
.then(function() {
assertCB('hidden', false, {expandedMarginR: false, expandedMarginT: false});
return Plotly.restyle(gd, {showscale: true, 'colorbar.y': 0.8});
})
.then(function() {
assertCB('up high', true, {expandedMarginR: true, expandedMarginT: true, top: 12});
return Plotly.restyle(gd, {'colorbar.y': 0.7});
})
.then(function() {
assertCB('a little lower', true, {expandedMarginR: true, expandedMarginT: true, top: 12});
return Plotly.restyle(gd, {
'colorbar.x': 0.7,
'colorbar.y': 0.5,
'colorbar.thickness': 50,
'colorbar.len': 0.5
});
})
.then(function() {
assertCB('mid-plot', true, {expandedMarginR: false, expandedMarginT: false, top: 150, height: 200});
thickPx = gd._fullData[0].colorbar.thickness;
lenFrac = gd._fullData[0].colorbar.len;
return Plotly.restyle(gd, {
'colorbar.x': 1.1,
'colorbar.thicknessmode': 'fraction',
'colorbar.lenmode': 'pixels'
});
})
.then(function() {
expect(gd._fullData[0].colorbar.thickness)
.toBeCloseTo(thickPx / 400, 5);
expect(gd._fullData[0].colorbar.len)
.toBeCloseTo(lenFrac * 400, 3);
assertCB('changed size modes', true, {expandedMarginR: true, expandedMarginT: false, top: 150, height: 200});
})
.catch(failTest)
.then(done);
});
// scatter has trace.marker.{showscale, colorbar}
it('can show and hide scatter colorbars', function(done) {
Plotly.newPlot(gd, [{
y: [1, 2, 3],
marker: {color: [1, 2, 3], showscale: true}
}], {
height: 500,
width: 500,
margin: {l: 50, r: 50, t: 50, b: 50}
})
.then(function() {
assertCB('initial', true, {expandedMarginR: true});
return Plotly.restyle(gd, {'marker.showscale': false});
})
.then(function() {
assertCB('hidden', false, {expandedMarginR: false});
return Plotly.restyle(gd, {'marker.showscale': true, 'marker.colorbar.x': 0.7});
})
.then(function() {
assertCB('mid-plot', true, {expandedMarginR: false});
return Plotly.restyle(gd, {'marker.colorbar.x': 1.1});
})
.then(function() {
assertCB('far right', true, {expandedMarginR: true});
})
.catch(failTest)
.then(done);
});
// histogram colorbars could not be edited before
it('can show and hide histogram colorbars', function(done) {
Plotly.newPlot(gd, [{
type: 'histogram',
x: [0, 1, 1, 2, 2, 2, 3, 3, 4],
xbins: {start: -1.5, end: 4.5, size: 1},
marker: {color: [1, 2, 3, 4, 5, 6], showscale: true}
}], {
height: 500,
width: 500,
margin: {l: 50, r: 50, t: 50, b: 50}
})
.then(function() {
assertCB('initial', true, {expandedMarginR: true});
return Plotly.restyle(gd, {'marker.showscale': false});
})
.then(function() {
assertCB('hidden', false, {expandedMarginR: false});
return Plotly.restyle(gd, {'marker.showscale': true, 'marker.colorbar.x': 0.7});
})
.then(function() {
assertCB('mid-plot', true, {expandedMarginR: false});
return Plotly.restyle(gd, {'marker.colorbar.x': 1.1});
})
.then(function() {
assertCB('far right', true, {expandedMarginR: true});
})
.catch(failTest)
.then(done);
});
it('creates multiple fills for contour colorbars', function(done) {
Plotly.newPlot(gd, [{
type: 'contour',
z: [[1, 10], [100, 1000]]
}], {
height: 500,
width: 500,
margin: {l: 50, r: 50, t: 50, b: 50}
})
.then(function() {
assertCB('initial', true, {expandedMarginR: true, expandedMarginT: false, top: 50, multiFill: true});
return Plotly.restyle(gd, {showscale: false});
})
.then(function() {
assertCB('hidden', false, {expandedMarginR: false, expandedMarginT: false});
return Plotly.restyle(gd, {showscale: true, 'colorbar.y': 0.8});
})
.then(function() {
assertCB('up high', true, {expandedMarginR: true, expandedMarginT: true, top: 12, multiFill: true});
return Plotly.restyle(gd, {'contours.coloring': 'heatmap'});
})
.then(function() {
assertCB('up high', true, {expandedMarginR: true, expandedMarginT: true, top: 12, multiFill: false});
})
.catch(failTest)
.then(done);
});
// parcoords has trace.marker.{showscale, colorbar}
// also tests impliedEdits for colorbars in containers
it('can show and hide parcoords colorbars', function(done) {
function assertParcoordsCB(present, expandedMargin) {
var colorbars = d3.select(gd).selectAll('.colorbar');
expect(colorbars.size()).toBe(present ? 1 : 0);
var yAxes = d3.select(gd).selectAll('.parcoords .y-axis');
expect(yAxes.size()).toBe(2);
var transform = yAxes[0][1].getAttribute('transform');
if(expandedMargin) expect(transform).not.toBe('translate(400, 0)');
else expect(transform).toBe('translate(400, 0)');
var cbfills = colorbars.selectAll('.cbfill');
expect(cbfills.size()).toBe(present ? 1 : 0);
}
var thickPx, lenFrac;
Plotly.newPlot(gd, [{
type: 'parcoords',
dimensions: [{values: [1, 2]}, {values: [1, 2]}],
line: {color: [1, 2], showscale: true}
}], {
height: 500,
width: 500,
margin: {l: 50, r: 50, t: 50, b: 50}
})
.then(function() {
assertParcoordsCB(true, true);
return Plotly.restyle(gd, {'line.showscale': false});
})
.then(function() {
assertParcoordsCB(false, false);
return Plotly.restyle(gd, {
'line.showscale': true,
'line.colorbar.x': 0.7
});
})
.then(function() {
assertParcoordsCB(true, false);
thickPx = gd._fullData[0].line.colorbar.thickness;
lenFrac = gd._fullData[0].line.colorbar.len;
return Plotly.restyle(gd, {
'line.colorbar.x': 1.1,
'line.colorbar.thicknessmode': 'fraction',
'line.colorbar.lenmode': 'pixels'
});
})
.then(function() {
expect(gd._fullData[0].line.colorbar.thickness)
.toBeCloseTo(thickPx / 400, 5);
expect(gd._fullData[0].line.colorbar.len)
.toBeCloseTo(lenFrac * 400, 3);
assertParcoordsCB(true, true);
})
.catch(failTest)
.then(done);
});
function getCBNode() {
return document.querySelector('.colorbar');
}
it('can drag root-level colorbars in editable mode', function(done) {
Plotly.newPlot(gd,
[{z: [[1, 2], [3, 4]], type: 'heatmap'}],
{width: 400, height: 400},
{editable: true}
)
.then(function() {
expect(gd.data[0].colorbar).toBeUndefined();
expect(gd._fullData[0].colorbar.x).toBe(1.02);
expect(gd._fullData[0].colorbar.y).toBe(0.5);
return drag(getCBNode(), -100, 100);
})
.then(function() {
expect(gd.data[0].colorbar.x).toBeWithin(0.591, 0.01);
expect(gd.data[0].colorbar.y).toBeWithin(0.045, 0.01);
})
.catch(failTest)
.then(done);
});
it('can drag marker-level colorbars in editable mode', function(done) {
Plotly.newPlot(gd,
[{y: [1, 2, 1], marker: {color: [0, 1, 2], showscale: true}}],
{width: 400, height: 400},
{editable: true}
)
.then(function() {
expect(gd.data[0].marker.colorbar).toBeUndefined();
expect(gd._fullData[0].marker.colorbar.x).toBe(1.02);
expect(gd._fullData[0].marker.colorbar.y).toBe(0.5);
return drag(getCBNode(), -100, 100);
})
.then(function() {
expect(gd.data[0].marker.colorbar.x).toBeWithin(0.591, 0.01);
expect(gd.data[0].marker.colorbar.y).toBeWithin(0.045, 0.01);
})
.catch(failTest)
.then(done);
});
});
});