-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
/
Copy pathsliders_test.js
487 lines (412 loc) · 15.5 KB
/
sliders_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
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
var Sliders = require('@src/components/sliders');
var constants = require('@src/components/sliders/constants');
var d3 = require('d3');
var Plotly = require('@lib');
var Lib = require('@src/lib');
var createGraphDiv = require('../assets/create_graph_div');
var destroyGraphDiv = require('../assets/destroy_graph_div');
var failTest = require('../assets/fail_test');
var delay = require('../assets/delay');
var assertPlotSize = require('../assets/custom_assertions').assertPlotSize;
describe('sliders defaults', function() {
'use strict';
var supply = Sliders.supplyLayoutDefaults;
var layoutIn, layoutOut;
beforeEach(function() {
layoutIn = {};
layoutOut = {};
});
it('should set \'visible\' to false when no steps are present', function() {
layoutIn.sliders = [{
steps: [{
method: 'relayout',
args: ['title', 'Hello World']
}, {
method: 'update',
args: [ { 'marker.size': 20 }, { 'xaxis.range': [0, 10] }, [0, 1] ]
}, {
method: 'animate',
args: [ 'frame1', { transition: { duration: 500, ease: 'cubic-in-out' }}]
}]
}, {
bgcolor: 'red'
}, {
visible: false,
steps: [{
method: 'relayout',
args: ['title', 'Hello World']
}]
}];
supply(layoutIn, layoutOut);
expect(layoutOut.sliders[0].visible).toBe(true);
expect(layoutOut.sliders[0].active).toEqual(0);
expect(layoutOut.sliders[0].steps[0].args.length).toEqual(2);
expect(layoutOut.sliders[0].steps[1].args.length).toEqual(3);
expect(layoutOut.sliders[0].steps[2].args.length).toEqual(2);
expect(layoutOut.sliders[1].visible).toBe(false);
expect(layoutOut.sliders[1].active).toBeUndefined();
expect(layoutOut.sliders[2].visible).toBe(false);
expect(layoutOut.sliders[2].active).toBeUndefined();
});
it('should not coerce currentvalue defaults unless currentvalue is visible', function() {
layoutIn.sliders = [{
currentvalue: {
visible: false,
xanchor: 'left'
},
steps: [
{method: 'restyle', args: [], label: 'step0'},
{method: 'restyle', args: [], label: 'step1'}
]
}];
supply(layoutIn, layoutOut);
expect(layoutOut.sliders[0].currentvalue.xanchor).toBeUndefined();
expect(layoutOut.sliders[0].currentvalue.prefix).toBeUndefined();
expect(layoutOut.sliders[0].currentvalue.suffix).toBeUndefined();
expect(layoutOut.sliders[0].currentvalue.offset).toBeUndefined();
expect(layoutOut.sliders[0].currentvalue.font).toBeUndefined();
});
it('should set the default values equal to the labels', function() {
layoutIn.sliders = [{
steps: [{
method: 'relayout', args: [],
label: 'Label #1',
value: 'label-1'
}, {
method: 'update', args: [],
label: 'Label #2'
}, {
method: 'animate', args: [],
value: 'lacks-label'
}]
}];
supply(layoutIn, layoutOut);
expect(layoutOut.sliders[0].steps.length).toEqual(3);
expect(layoutOut.sliders[0].steps).toEqual([{
method: 'relayout',
label: 'Label #1',
value: 'label-1',
execute: true,
args: []
}, {
method: 'update',
label: 'Label #2',
value: 'Label #2',
execute: true,
args: []
}, {
method: 'animate',
label: 'step-2',
value: 'lacks-label',
execute: true,
args: []
}]);
});
it('should skip over non-object steps', function() {
layoutIn.sliders = [{
steps: [
null,
{
method: 'relayout',
args: ['title', 'Hello World']
},
'remove'
]
}];
supply(layoutIn, layoutOut);
expect(layoutOut.sliders[0].steps.length).toEqual(1);
expect(layoutOut.sliders[0].steps[0]).toEqual({
method: 'relayout',
args: ['title', 'Hello World'],
label: 'step-1',
value: 'step-1',
execute: true
});
});
it('should skip over steps with non-array \'args\' field', function() {
layoutIn.sliders = [{
steps: [{
method: 'restyle',
}, {
method: 'relayout',
args: ['title', 'Hello World']
}, {
method: 'relayout',
args: null
}, {}]
}];
supply(layoutIn, layoutOut);
expect(layoutOut.sliders[0].steps.length).toEqual(1);
expect(layoutOut.sliders[0].steps[0]).toEqual({
method: 'relayout',
args: ['title', 'Hello World'],
label: 'step-1',
value: 'step-1',
execute: true
});
});
it('allows the `skip` method', function() {
layoutIn.sliders = [{
steps: [{
method: 'skip',
}, {
method: 'skip',
args: ['title', 'Hello World']
}]
}];
supply(layoutIn, layoutOut);
expect(layoutOut.sliders[0].steps.length).toEqual(2);
expect(layoutOut.sliders[0].steps[0]).toEqual({
method: 'skip',
label: 'step-0',
value: 'step-0',
execute: true,
}, {
method: 'skip',
args: ['title', 'Hello World'],
label: 'step-1',
value: 'step-1',
execute: true,
});
});
it('should keep ref to input update menu container', function() {
layoutIn.sliders = [{
steps: [{
method: 'relayout',
args: ['title', 'Hello World']
}]
}, {
bgcolor: 'red'
}, {
visible: false,
steps: [{
method: 'relayout',
args: ['title', 'Hello World']
}]
}];
supply(layoutIn, layoutOut);
expect(layoutOut.sliders[0]._input).toBe(layoutIn.sliders[0]);
expect(layoutOut.sliders[1]._input).toBe(layoutIn.sliders[1]);
expect(layoutOut.sliders[2]._input).toBe(layoutIn.sliders[2]);
});
});
describe('sliders initialization', function() {
'use strict';
var gd;
beforeEach(function(done) {
gd = createGraphDiv();
Plotly.plot(gd, [{x: [1, 2, 3]}], {
sliders: [{
transition: {duration: 0},
steps: [
{method: 'restyle', args: [], label: 'first'},
{method: 'restyle', args: [], label: 'second'},
]
}]
}).then(done);
});
afterEach(function() {
Plotly.purge(gd);
destroyGraphDiv();
});
it('does not set active on initial plot', function() {
expect(gd.layout.sliders[0].active).toBeUndefined();
});
});
describe('ugly internal manipulation of steps', function() {
'use strict';
var gd;
beforeEach(function(done) {
gd = createGraphDiv();
Plotly.plot(gd, [{x: [1, 2, 3]}], {
sliders: [{
transition: {duration: 0},
steps: [
{method: 'restyle', args: [], label: 'first'},
{method: 'restyle', args: [], label: 'second'},
]
}]
}).then(done);
});
afterEach(function() {
Plotly.purge(gd);
destroyGraphDiv();
});
it('adds and removes slider steps gracefully', function(done) {
expect(gd._fullLayout.sliders[0].active).toEqual(0);
// Set the active index higher than it can go:
Plotly.relayout(gd, {'sliders[0].active': 2}).then(function() {
// Confirm nothing changed
expect(gd._fullLayout.sliders[0].active).toEqual(0);
// Add an option manually without calling API functions:
gd.layout.sliders[0].steps.push({method: 'restyle', args: [], label: 'first'});
// Now that it's been added, restyle and try again:
return Plotly.relayout(gd, {'sliders[0].active': 2});
}).then(function() {
// Confirm it's been changed:
expect(gd._fullLayout.sliders[0].active).toEqual(2);
// Remove the option:
gd.layout.sliders[0].steps.pop();
// And redraw the plot:
return Plotly.redraw(gd);
}).then(function() {
// The selected option no longer exists, so confirm it's
// been fixed during the process of updating/drawing it:
expect(gd._fullLayout.sliders[0].active).toEqual(0);
}).catch(failTest).then(done);
});
});
describe('sliders interactions', function() {
'use strict';
var mock = require('@mocks/sliders.json');
var mockCopy;
var gd;
beforeEach(function(done) {
gd = createGraphDiv();
mockCopy = Lib.extendDeep({}, mock);
Plotly.plot(gd, mockCopy.data, mockCopy.layout).then(done);
});
afterEach(function() {
Plotly.purge(gd);
destroyGraphDiv();
});
it('should draw only visible sliders', function(done) {
expect(gd._fullLayout._pushmargin['slider-0']).toBeDefined();
expect(gd._fullLayout._pushmargin['slider-1']).toBeDefined();
assertPlotSize({heightLessThan: 270}, 'initial');
Plotly.relayout(gd, 'sliders[0].visible', false).then(function() {
assertNodeCount('.' + constants.groupClassName, 1);
expect(gd._fullLayout._pushmargin['slider-0']).toBeUndefined();
expect(gd._fullLayout._pushmargin['slider-1']).toBeDefined();
expect(gd.layout.sliders.length).toEqual(2);
assertPlotSize({heightLessThan: 270}, 'hide 0');
return Plotly.relayout(gd, 'sliders[1]', null);
})
.then(function() {
assertNodeCount('.' + constants.groupClassName, 0);
expect(gd._fullLayout._pushmargin['slider-0']).toBeUndefined();
expect(gd._fullLayout._pushmargin['slider-1']).toBeUndefined();
expect(gd.layout.sliders.length).toEqual(1);
assertPlotSize({height: 270}, 'delete 1');
return Plotly.relayout(gd, {
'sliders[0].visible': true,
'sliders[1].visible': true
});
}).then(function() {
assertNodeCount('.' + constants.groupClassName, 1);
expect(gd._fullLayout._pushmargin['slider-0']).toBeDefined();
expect(gd._fullLayout._pushmargin['slider-1']).toBeUndefined();
assertPlotSize({heightLessThan: 270}, 'reshow 0');
return Plotly.relayout(gd, {
'sliders[1]': {
steps: [{
method: 'relayout',
args: ['title', 'new title'],
label: '1970'
}, {
method: 'relayout',
args: ['title', 'new title'],
label: '1971'
}]
}
});
})
.then(function() {
assertNodeCount('.' + constants.groupClassName, 2);
expect(gd._fullLayout._pushmargin['slider-0']).toBeDefined();
expect(gd._fullLayout._pushmargin['slider-1']).toBeDefined();
})
.catch(failTest)
.then(done);
});
it('should respond to mouse clicks', function(done) {
var firstGroup = gd._fullLayout._infolayer.select('.' + constants.railTouchRectClass);
var firstGrip = gd._fullLayout._infolayer.select('.' + constants.gripRectClass);
var railNode = firstGroup.node();
var touchRect = railNode.getBoundingClientRect();
var originalFill = firstGrip.node().style.fill;
// Dispatch a click on the right side of the bar:
railNode.dispatchEvent(new MouseEvent('mousedown', {
clientY: touchRect.top + 5,
clientX: touchRect.left + touchRect.width - 5,
}));
expect(mockCopy.layout.sliders[0].active).toEqual(5);
var mousedownFill = firstGrip.node().style.fill;
expect(mousedownFill).not.toEqual(originalFill);
// Drag to the left side:
gd.dispatchEvent(new MouseEvent('mousemove', {
clientY: touchRect.top + 5,
clientX: touchRect.left + 5,
}));
var mousemoveFill = firstGrip.node().style.fill;
expect(mousemoveFill).toEqual(mousedownFill);
delay(100)()
.then(function() {
expect(mockCopy.layout.sliders[0].active).toEqual(0);
gd.dispatchEvent(new MouseEvent('mouseup'));
var mouseupFill = firstGrip.node().style.fill;
expect(mouseupFill).toEqual(originalFill);
expect(mockCopy.layout.sliders[0].active).toEqual(0);
})
.catch(failTest)
.then(done);
});
it('should issue events on interaction', function(done) {
var cntStart = 0;
var cntInteraction = 0;
var cntNonInteraction = 0;
var cntEnd = 0;
gd.on('plotly_sliderstart', function() {
cntStart++;
}).on('plotly_sliderchange', function(datum) {
if(datum.interaction) {
cntInteraction++;
} else {
cntNonInteraction++;
}
}).on('plotly_sliderend', function() {
cntEnd++;
});
function assertEventCounts(starts, interactions, noninteractions, ends, msg) {
expect(cntStart).toBe(starts, 'starts: ' + msg);
expect(cntInteraction).toBe(interactions, 'interactions: ' + msg);
expect(cntNonInteraction).toBe(noninteractions, 'noninteractions: ' + msg);
expect(cntEnd).toBe(ends, 'ends: ' + msg);
}
assertEventCounts(0, 0, 0, 0, 'initial');
var firstGroup = gd._fullLayout._infolayer.select('.' + constants.railTouchRectClass);
var railNode = firstGroup.node();
var touchRect = railNode.getBoundingClientRect();
// Dispatch a click on the right side of the bar:
railNode.dispatchEvent(new MouseEvent('mousedown', {
clientY: touchRect.top + 5,
clientX: touchRect.left + touchRect.width - 5,
}));
delay(50)()
.then(function() {
// One slider received a mousedown, one received an interaction, and one received a change:
assertEventCounts(1, 1, 1, 0, 'mousedown');
// Drag to the left side:
gd.dispatchEvent(new MouseEvent('mousemove', {
clientY: touchRect.top + 5,
clientX: touchRect.left + 5,
}));
})
.then(delay(50))
.then(function() {
// On move, now to changes for the each slider, and no ends:
assertEventCounts(1, 2, 2, 0, 'mousemove');
gd.dispatchEvent(new MouseEvent('mouseup'));
})
.then(delay(50))
.then(function() {
// Now an end:
assertEventCounts(1, 2, 2, 1, 'mouseup');
})
.catch(failTest)
.then(done);
});
function assertNodeCount(query, cnt) {
expect(d3.selectAll(query).size()).toEqual(cnt);
}
});