@internetarchive/histogram-date-range 1.3.0 → 1.3.1-alpha-webdev7745.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js.map +1 -1
- package/dist/src/dayjs/fix-first-century-years.d.ts +2 -0
- package/dist/src/dayjs/fix-first-century-years.js +25 -0
- package/dist/src/dayjs/fix-first-century-years.js.map +1 -0
- package/dist/src/dayjs/fix-two-digit-dates.d.ts +2 -0
- package/dist/src/dayjs/fix-two-digit-dates.js +25 -0
- package/dist/src/dayjs/fix-two-digit-dates.js.map +1 -0
- package/dist/src/histogram-date-range.js +276 -260
- package/dist/src/histogram-date-range.js.map +1 -1
- package/dist/src/plugins/fix-first-century-years.d.ts +23 -0
- package/dist/src/plugins/fix-first-century-years.js +43 -0
- package/dist/src/plugins/fix-first-century-years.js.map +1 -0
- package/dist/test/histogram-date-range.test.js +205 -141
- package/dist/test/histogram-date-range.test.js.map +1 -1
- package/docs/dist/src/histogram-date-range.js +12 -7
- package/docs/dist/src/plugins/fix-first-century-years.js +19 -0
- package/index.ts +4 -4
- package/package.json +1 -1
- package/src/histogram-date-range.ts +1094 -1080
- package/src/plugins/fix-first-century-years.ts +52 -0
- package/test/histogram-date-range.test.ts +934 -860
- package/types/dayjs.d.ts +10 -0
|
@@ -2,31 +2,31 @@ import { html, fixture, expect, oneEvent, aTimeout } from '@open-wc/testing';
|
|
|
2
2
|
import '../src/histogram-date-range';
|
|
3
3
|
const SLIDER_WIDTH = 10;
|
|
4
4
|
const WIDTH = 200;
|
|
5
|
-
const subject = html `
|
|
6
|
-
<histogram-date-range
|
|
7
|
-
width="${WIDTH}"
|
|
8
|
-
tooltipWidth="140"
|
|
9
|
-
height="50"
|
|
10
|
-
dateFormat="M/D/YYYY"
|
|
11
|
-
minDate="1900"
|
|
12
|
-
maxDate="12/4/2020"
|
|
13
|
-
bins="[33, 1, 100]"
|
|
14
|
-
>
|
|
15
|
-
</histogram-date-range>
|
|
5
|
+
const subject = html `
|
|
6
|
+
<histogram-date-range
|
|
7
|
+
width="${WIDTH}"
|
|
8
|
+
tooltipWidth="140"
|
|
9
|
+
height="50"
|
|
10
|
+
dateFormat="M/D/YYYY"
|
|
11
|
+
minDate="1900"
|
|
12
|
+
maxDate="12/4/2020"
|
|
13
|
+
bins="[33, 1, 100]"
|
|
14
|
+
>
|
|
15
|
+
</histogram-date-range>
|
|
16
16
|
`;
|
|
17
17
|
async function createCustomElementInHTMLContainer() {
|
|
18
|
-
document.head.insertAdjacentHTML('beforeend', `<style>
|
|
19
|
-
html {
|
|
20
|
-
font-size:10px;
|
|
21
|
-
}
|
|
22
|
-
.container {
|
|
23
|
-
width: 400px;
|
|
24
|
-
height: 400px;
|
|
25
|
-
display: flex;
|
|
26
|
-
background: #FFF6E1;
|
|
27
|
-
justify-content: center;
|
|
28
|
-
align-items: center;
|
|
29
|
-
}
|
|
18
|
+
document.head.insertAdjacentHTML('beforeend', `<style>
|
|
19
|
+
html {
|
|
20
|
+
font-size:10px;
|
|
21
|
+
}
|
|
22
|
+
.container {
|
|
23
|
+
width: 400px;
|
|
24
|
+
height: 400px;
|
|
25
|
+
display: flex;
|
|
26
|
+
background: #FFF6E1;
|
|
27
|
+
justify-content: center;
|
|
28
|
+
align-items: center;
|
|
29
|
+
}
|
|
30
30
|
</style>`);
|
|
31
31
|
// https://open-wc.org/docs/testing/helpers/#customize-the-fixture-container
|
|
32
32
|
const parentNode = document.createElement('div');
|
|
@@ -341,15 +341,15 @@ describe('HistogramDateRange', () => {
|
|
|
341
341
|
});
|
|
342
342
|
it('allows range to be pre-selected', async () => {
|
|
343
343
|
var _a, _b;
|
|
344
|
-
const el = await fixture(html `
|
|
345
|
-
<histogram-date-range
|
|
346
|
-
minDate="1900"
|
|
347
|
-
maxDate="Dec 4, 2020"
|
|
348
|
-
minSelectedDate="2012"
|
|
349
|
-
maxSelectedDate="2019"
|
|
350
|
-
bins="[33, 1, 100]"
|
|
351
|
-
>
|
|
352
|
-
</histogram-date-range>
|
|
344
|
+
const el = await fixture(html `
|
|
345
|
+
<histogram-date-range
|
|
346
|
+
minDate="1900"
|
|
347
|
+
maxDate="Dec 4, 2020"
|
|
348
|
+
minSelectedDate="2012"
|
|
349
|
+
maxSelectedDate="2019"
|
|
350
|
+
bins="[33, 1, 100]"
|
|
351
|
+
>
|
|
352
|
+
</histogram-date-range>
|
|
353
353
|
`);
|
|
354
354
|
const minDateInput = (_a = el.shadowRoot) === null || _a === void 0 ? void 0 : _a.querySelector('#date-min');
|
|
355
355
|
expect(minDateInput.value).to.eq('2012');
|
|
@@ -358,15 +358,15 @@ describe('HistogramDateRange', () => {
|
|
|
358
358
|
});
|
|
359
359
|
it('extends the selected range when the histogram is clicked outside of the current range', async () => {
|
|
360
360
|
var _a, _b;
|
|
361
|
-
const el = await fixture(html `
|
|
362
|
-
<histogram-date-range
|
|
363
|
-
minDate="1900"
|
|
364
|
-
maxDate="2020"
|
|
365
|
-
minSelectedDate="1950"
|
|
366
|
-
maxSelectedDate="1955"
|
|
367
|
-
bins="[33, 1, 1, 1, 10, 10, 1, 1, 1, 50, 100]"
|
|
368
|
-
>
|
|
369
|
-
</histogram-date-range>
|
|
361
|
+
const el = await fixture(html `
|
|
362
|
+
<histogram-date-range
|
|
363
|
+
minDate="1900"
|
|
364
|
+
maxDate="2020"
|
|
365
|
+
minSelectedDate="1950"
|
|
366
|
+
maxSelectedDate="1955"
|
|
367
|
+
bins="[33, 1, 1, 1, 10, 10, 1, 1, 1, 50, 100]"
|
|
368
|
+
>
|
|
369
|
+
</histogram-date-range>
|
|
370
370
|
`);
|
|
371
371
|
const leftBarToClick = Array.from((_a = el.shadowRoot) === null || _a === void 0 ? void 0 : _a.querySelectorAll('.bar'))[1]; // click on second bar to the left
|
|
372
372
|
leftBarToClick.dispatchEvent(new Event('click'));
|
|
@@ -378,15 +378,15 @@ describe('HistogramDateRange', () => {
|
|
|
378
378
|
});
|
|
379
379
|
it('narrows the selected range when the histogram is clicked inside of the current range', async () => {
|
|
380
380
|
var _a, _b;
|
|
381
|
-
const el = await fixture(html `
|
|
382
|
-
<histogram-date-range
|
|
383
|
-
minDate="1900"
|
|
384
|
-
maxDate="2020"
|
|
385
|
-
minSelectedDate="1900"
|
|
386
|
-
maxSelectedDate="2020"
|
|
387
|
-
bins="[33, 1, 1, 1, 10, 10, 1, 1, 1, 50, 100]"
|
|
388
|
-
>
|
|
389
|
-
</histogram-date-range>
|
|
381
|
+
const el = await fixture(html `
|
|
382
|
+
<histogram-date-range
|
|
383
|
+
minDate="1900"
|
|
384
|
+
maxDate="2020"
|
|
385
|
+
minSelectedDate="1900"
|
|
386
|
+
maxSelectedDate="2020"
|
|
387
|
+
bins="[33, 1, 1, 1, 10, 10, 1, 1, 1, 50, 100]"
|
|
388
|
+
>
|
|
389
|
+
</histogram-date-range>
|
|
390
390
|
`);
|
|
391
391
|
///////////////////////////////////////////////
|
|
392
392
|
// NB: the slider nearest the clicked bar moves
|
|
@@ -400,15 +400,15 @@ describe('HistogramDateRange', () => {
|
|
|
400
400
|
});
|
|
401
401
|
it('handles invalid pre-selected range by defaulting to overall max and min', async () => {
|
|
402
402
|
var _a, _b;
|
|
403
|
-
const el = await fixture(html `
|
|
404
|
-
<histogram-date-range
|
|
405
|
-
minDate="1900"
|
|
406
|
-
maxDate="2020"
|
|
407
|
-
minSelectedDate="2000xyz"
|
|
408
|
-
maxSelectedDate="5000"
|
|
409
|
-
bins="[33, 1, 100]"
|
|
410
|
-
>
|
|
411
|
-
</histogram-date-range>
|
|
403
|
+
const el = await fixture(html `
|
|
404
|
+
<histogram-date-range
|
|
405
|
+
minDate="1900"
|
|
406
|
+
maxDate="2020"
|
|
407
|
+
minSelectedDate="2000xyz"
|
|
408
|
+
maxSelectedDate="5000"
|
|
409
|
+
bins="[33, 1, 100]"
|
|
410
|
+
>
|
|
411
|
+
</histogram-date-range>
|
|
412
412
|
`);
|
|
413
413
|
const minDateInput = (_a = el.shadowRoot) === null || _a === void 0 ? void 0 : _a.querySelector('#date-min');
|
|
414
414
|
// malformed min date defaults to overall min
|
|
@@ -417,43 +417,43 @@ describe('HistogramDateRange', () => {
|
|
|
417
417
|
// well-formed max date is allowed
|
|
418
418
|
expect(maxDateInput.value).to.eq('5000');
|
|
419
419
|
});
|
|
420
|
-
it('handles year values less than 1000
|
|
420
|
+
it('handles year values less than 1000 correctly', async () => {
|
|
421
421
|
var _a, _b;
|
|
422
|
-
const el = await fixture(html `
|
|
423
|
-
<histogram-date-range
|
|
424
|
-
dateFormat="M/D/YYYY"
|
|
425
|
-
minDate="-2000"
|
|
426
|
-
maxDate="2000"
|
|
427
|
-
minSelectedDate="-500"
|
|
428
|
-
maxSelectedDate="500"
|
|
429
|
-
bins="[33, 1, 100]"
|
|
430
|
-
>
|
|
431
|
-
</histogram-date-range>
|
|
422
|
+
const el = await fixture(html `
|
|
423
|
+
<histogram-date-range
|
|
424
|
+
dateFormat="M/D/YYYY"
|
|
425
|
+
minDate="-2000"
|
|
426
|
+
maxDate="2000"
|
|
427
|
+
minSelectedDate="-500"
|
|
428
|
+
maxSelectedDate="500"
|
|
429
|
+
bins="[33, 1, 100]"
|
|
430
|
+
>
|
|
431
|
+
</histogram-date-range>
|
|
432
432
|
`);
|
|
433
433
|
const minDateInput = (_a = el.shadowRoot) === null || _a === void 0 ? void 0 : _a.querySelector('#date-min');
|
|
434
|
-
expect(minDateInput.value).to.eq('
|
|
434
|
+
expect(minDateInput.value).to.eq('1/1/-500');
|
|
435
435
|
const maxDateInput = (_b = el.shadowRoot) === null || _b === void 0 ? void 0 : _b.querySelector('#date-max');
|
|
436
|
-
expect(maxDateInput.value).to.eq('500');
|
|
436
|
+
expect(maxDateInput.value).to.eq('1/1/500');
|
|
437
437
|
});
|
|
438
438
|
it('handles missing data', async () => {
|
|
439
439
|
var _a, _b;
|
|
440
|
-
let el = await fixture(html `<histogram-date-range>
|
|
441
|
-
minDate="1900" maxDate="2020" bins=""
|
|
440
|
+
let el = await fixture(html `<histogram-date-range>
|
|
441
|
+
minDate="1900" maxDate="2020" bins=""
|
|
442
442
|
</histogram-date-range>`);
|
|
443
443
|
expect((_a = el.shadowRoot) === null || _a === void 0 ? void 0 : _a.innerHTML).to.contain('no data');
|
|
444
|
-
el = await fixture(html `<histogram-date-range
|
|
445
|
-
minDate="1900"
|
|
446
|
-
maxDate="2020"
|
|
447
|
-
bins="[]"
|
|
448
|
-
missingDataMessage="no data available"
|
|
444
|
+
el = await fixture(html `<histogram-date-range
|
|
445
|
+
minDate="1900"
|
|
446
|
+
maxDate="2020"
|
|
447
|
+
bins="[]"
|
|
448
|
+
missingDataMessage="no data available"
|
|
449
449
|
></histogram-date-range>`);
|
|
450
450
|
expect((_b = el.shadowRoot) === null || _b === void 0 ? void 0 : _b.innerHTML).to.contain('no data available');
|
|
451
451
|
});
|
|
452
452
|
it('correctly displays data consisting of a single bin', async () => {
|
|
453
453
|
var _a;
|
|
454
|
-
const el = await fixture(html `
|
|
455
|
-
<histogram-date-range minDate="2020" maxDate="2020" bins="[50]">
|
|
456
|
-
</histogram-date-range>
|
|
454
|
+
const el = await fixture(html `
|
|
455
|
+
<histogram-date-range minDate="2020" maxDate="2020" bins="[50]">
|
|
456
|
+
</histogram-date-range>
|
|
457
457
|
`);
|
|
458
458
|
const bars = (_a = el.shadowRoot) === null || _a === void 0 ? void 0 : _a.querySelectorAll('.bar');
|
|
459
459
|
const heights = Array.from(bars).map(b => b.height.baseVal.value);
|
|
@@ -461,9 +461,9 @@ describe('HistogramDateRange', () => {
|
|
|
461
461
|
});
|
|
462
462
|
it('correctly displays small diff between max and min values', async () => {
|
|
463
463
|
var _a;
|
|
464
|
-
const el = await fixture(html `
|
|
465
|
-
<histogram-date-range bins="[1519,2643,1880,2041,1638,1441]">
|
|
466
|
-
</histogram-date-range>
|
|
464
|
+
const el = await fixture(html `
|
|
465
|
+
<histogram-date-range bins="[1519,2643,1880,2041,1638,1441]">
|
|
466
|
+
</histogram-date-range>
|
|
467
467
|
`);
|
|
468
468
|
const bars = (_a = el.shadowRoot) === null || _a === void 0 ? void 0 : _a.querySelectorAll('.bar');
|
|
469
469
|
const heights = Array.from(bars).map(b => b.height.baseVal.value);
|
|
@@ -471,15 +471,15 @@ describe('HistogramDateRange', () => {
|
|
|
471
471
|
});
|
|
472
472
|
it('correctly aligns bins to exact month boundaries when binSnapping=month', async () => {
|
|
473
473
|
var _a;
|
|
474
|
-
const el = await fixture(html `
|
|
475
|
-
<histogram-date-range
|
|
476
|
-
binSnapping="month"
|
|
477
|
-
dateFormat="YYYY-MM"
|
|
478
|
-
tooltipDateFormat="MMM YYYY"
|
|
479
|
-
minDate="2020-01"
|
|
480
|
-
maxDate="2021-12"
|
|
481
|
-
bins="[10,20,30,40,50,60,70,80]"
|
|
482
|
-
></histogram-date-range>
|
|
474
|
+
const el = await fixture(html `
|
|
475
|
+
<histogram-date-range
|
|
476
|
+
binSnapping="month"
|
|
477
|
+
dateFormat="YYYY-MM"
|
|
478
|
+
tooltipDateFormat="MMM YYYY"
|
|
479
|
+
minDate="2020-01"
|
|
480
|
+
maxDate="2021-12"
|
|
481
|
+
bins="[10,20,30,40,50,60,70,80]"
|
|
482
|
+
></histogram-date-range>
|
|
483
483
|
`);
|
|
484
484
|
const bars = (_a = el.shadowRoot) === null || _a === void 0 ? void 0 : _a.querySelectorAll('.bar');
|
|
485
485
|
const tooltips = Array.from(bars).map(b => b.dataset.tooltip);
|
|
@@ -494,15 +494,64 @@ describe('HistogramDateRange', () => {
|
|
|
494
494
|
'Oct 2021 - Dec 2021',
|
|
495
495
|
]);
|
|
496
496
|
});
|
|
497
|
+
it('correctly handles month snapping for years 0-99', async () => {
|
|
498
|
+
var _a;
|
|
499
|
+
const el = await fixture(html `
|
|
500
|
+
<histogram-date-range
|
|
501
|
+
binSnapping="month"
|
|
502
|
+
dateFormat="YYYY-MM"
|
|
503
|
+
tooltipDateFormat="MMM YYYY"
|
|
504
|
+
minDate="0050-01"
|
|
505
|
+
maxDate="0065-12"
|
|
506
|
+
bins="[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]"
|
|
507
|
+
></histogram-date-range>
|
|
508
|
+
`);
|
|
509
|
+
const bars = (_a = el.shadowRoot) === null || _a === void 0 ? void 0 : _a.querySelectorAll('.bar');
|
|
510
|
+
const tooltips = Array.from(bars).map(b => b.dataset.tooltip);
|
|
511
|
+
expect(tooltips).to.eql([
|
|
512
|
+
'Jan 50 - Jun 50',
|
|
513
|
+
'Jul 50 - Dec 50',
|
|
514
|
+
'Jan 51 - Jun 51',
|
|
515
|
+
'Jul 51 - Dec 51',
|
|
516
|
+
'Jan 52 - Jun 52',
|
|
517
|
+
'Jul 52 - Dec 52',
|
|
518
|
+
'Jan 53 - Jun 53',
|
|
519
|
+
'Jul 53 - Dec 53',
|
|
520
|
+
'Jan 54 - Jun 54',
|
|
521
|
+
'Jul 54 - Dec 54',
|
|
522
|
+
'Jan 55 - Jun 55',
|
|
523
|
+
'Jul 55 - Dec 55',
|
|
524
|
+
'Jan 56 - Jun 56',
|
|
525
|
+
'Jul 56 - Dec 56',
|
|
526
|
+
'Jan 57 - Jun 57',
|
|
527
|
+
'Jul 57 - Dec 57',
|
|
528
|
+
'Jan 58 - Jun 58',
|
|
529
|
+
'Jul 58 - Dec 58',
|
|
530
|
+
'Jan 59 - Jun 59',
|
|
531
|
+
'Jul 59 - Dec 59',
|
|
532
|
+
'Jan 60 - Jun 60',
|
|
533
|
+
'Jul 60 - Dec 60',
|
|
534
|
+
'Jan 61 - Jun 61',
|
|
535
|
+
'Jul 61 - Dec 61',
|
|
536
|
+
'Jan 62 - Jun 62',
|
|
537
|
+
'Jul 62 - Dec 62',
|
|
538
|
+
'Jan 63 - Jun 63',
|
|
539
|
+
'Jul 63 - Dec 63',
|
|
540
|
+
'Jan 64 - Jun 64',
|
|
541
|
+
'Jul 64 - Dec 64',
|
|
542
|
+
'Jan 65 - Jun 65',
|
|
543
|
+
'Jul 65 - Dec 65',
|
|
544
|
+
]);
|
|
545
|
+
});
|
|
497
546
|
it('correctly aligns bins to exact year boundaries when binSnapping=year', async () => {
|
|
498
547
|
var _a;
|
|
499
|
-
const el = await fixture(html `
|
|
500
|
-
<histogram-date-range
|
|
501
|
-
binSnapping="year"
|
|
502
|
-
minDate="2000"
|
|
503
|
-
maxDate="2019"
|
|
504
|
-
bins="[10,20,30,40,50,60,70,80,90,100]"
|
|
505
|
-
></histogram-date-range>
|
|
548
|
+
const el = await fixture(html `
|
|
549
|
+
<histogram-date-range
|
|
550
|
+
binSnapping="year"
|
|
551
|
+
minDate="2000"
|
|
552
|
+
maxDate="2019"
|
|
553
|
+
bins="[10,20,30,40,50,60,70,80,90,100]"
|
|
554
|
+
></histogram-date-range>
|
|
506
555
|
`);
|
|
507
556
|
const bars = (_a = el.shadowRoot) === null || _a === void 0 ? void 0 : _a.querySelectorAll('.bar');
|
|
508
557
|
const tooltips = Array.from(bars).map(b => b.dataset.tooltip);
|
|
@@ -519,16 +568,31 @@ describe('HistogramDateRange', () => {
|
|
|
519
568
|
'2018 - 2019',
|
|
520
569
|
]);
|
|
521
570
|
});
|
|
571
|
+
it('correctly handles year snapping for years 0-99', async () => {
|
|
572
|
+
var _a;
|
|
573
|
+
const el = await fixture(html `
|
|
574
|
+
<histogram-date-range
|
|
575
|
+
binSnapping="year"
|
|
576
|
+
dateFormat="YYYY"
|
|
577
|
+
minDate="0020"
|
|
578
|
+
maxDate="0025"
|
|
579
|
+
bins="[1,2,3,4,5,6]"
|
|
580
|
+
></histogram-date-range>
|
|
581
|
+
`);
|
|
582
|
+
const bars = (_a = el.shadowRoot) === null || _a === void 0 ? void 0 : _a.querySelectorAll('.bar');
|
|
583
|
+
const tooltips = Array.from(bars).map(b => b.dataset.tooltip);
|
|
584
|
+
expect(tooltips).to.eql(['20', '21', '22', '23', '24', '25']);
|
|
585
|
+
});
|
|
522
586
|
it('does not duplicate start/end date in tooltips when representing a single year', async () => {
|
|
523
587
|
var _a;
|
|
524
|
-
const el = await fixture(html `
|
|
525
|
-
<histogram-date-range
|
|
526
|
-
binSnapping="year"
|
|
527
|
-
dateFormat="YYYY"
|
|
528
|
-
minDate="2001"
|
|
529
|
-
maxDate="2005"
|
|
530
|
-
bins="[10,20,30,40,50]"
|
|
531
|
-
></histogram-date-range>
|
|
588
|
+
const el = await fixture(html `
|
|
589
|
+
<histogram-date-range
|
|
590
|
+
binSnapping="year"
|
|
591
|
+
dateFormat="YYYY"
|
|
592
|
+
minDate="2001"
|
|
593
|
+
maxDate="2005"
|
|
594
|
+
bins="[10,20,30,40,50]"
|
|
595
|
+
></histogram-date-range>
|
|
532
596
|
`);
|
|
533
597
|
const bars = (_a = el.shadowRoot) === null || _a === void 0 ? void 0 : _a.querySelectorAll('.bar');
|
|
534
598
|
const tooltips = Array.from(bars).map(b => b.dataset.tooltip);
|
|
@@ -536,13 +600,13 @@ describe('HistogramDateRange', () => {
|
|
|
536
600
|
});
|
|
537
601
|
it('falls back to default date format for tooltips if no tooltip date format provided', async () => {
|
|
538
602
|
var _a;
|
|
539
|
-
const el = await fixture(html `
|
|
540
|
-
<histogram-date-range
|
|
541
|
-
binSnapping="year"
|
|
542
|
-
minDate="2001"
|
|
543
|
-
maxDate="2005"
|
|
544
|
-
bins="[10,20,30,40,50]"
|
|
545
|
-
></histogram-date-range>
|
|
603
|
+
const el = await fixture(html `
|
|
604
|
+
<histogram-date-range
|
|
605
|
+
binSnapping="year"
|
|
606
|
+
minDate="2001"
|
|
607
|
+
maxDate="2005"
|
|
608
|
+
bins="[10,20,30,40,50]"
|
|
609
|
+
></histogram-date-range>
|
|
546
610
|
`);
|
|
547
611
|
const bars = (_a = el.shadowRoot) === null || _a === void 0 ? void 0 : _a.querySelectorAll('.bar');
|
|
548
612
|
let tooltips = Array.from(bars).map(b => b.dataset.tooltip);
|
|
@@ -577,14 +641,14 @@ describe('HistogramDateRange', () => {
|
|
|
577
641
|
});
|
|
578
642
|
it('has a disabled state', async () => {
|
|
579
643
|
var _a, _b, _c;
|
|
580
|
-
const el = await fixture(html `
|
|
581
|
-
<histogram-date-range
|
|
582
|
-
minDate="1900"
|
|
583
|
-
maxDate="2020"
|
|
584
|
-
disabled
|
|
585
|
-
bins="[33, 1, 100]"
|
|
586
|
-
>
|
|
587
|
-
</histogram-date-range>
|
|
644
|
+
const el = await fixture(html `
|
|
645
|
+
<histogram-date-range
|
|
646
|
+
minDate="1900"
|
|
647
|
+
maxDate="2020"
|
|
648
|
+
disabled
|
|
649
|
+
bins="[33, 1, 100]"
|
|
650
|
+
>
|
|
651
|
+
</histogram-date-range>
|
|
588
652
|
`);
|
|
589
653
|
expect((_b = (_a = el.shadowRoot) === null || _a === void 0 ? void 0 : _a.querySelector('.inner-container')) === null || _b === void 0 ? void 0 : _b.classList.contains('disabled')).to.eq(true);
|
|
590
654
|
const minSlider = (_c = el.shadowRoot) === null || _c === void 0 ? void 0 : _c.querySelector('#slider-min');
|
|
@@ -602,28 +666,28 @@ describe('HistogramDateRange', () => {
|
|
|
602
666
|
});
|
|
603
667
|
it('has a loading state with an activity indicator', async () => {
|
|
604
668
|
var _a, _b, _c, _d;
|
|
605
|
-
const el = await fixture(html `
|
|
606
|
-
<histogram-date-range
|
|
607
|
-
minDate="1900"
|
|
608
|
-
maxDate="2020"
|
|
609
|
-
loading
|
|
610
|
-
bins="[33, 1, 100]"
|
|
611
|
-
>
|
|
612
|
-
</histogram-date-range>
|
|
669
|
+
const el = await fixture(html `
|
|
670
|
+
<histogram-date-range
|
|
671
|
+
minDate="1900"
|
|
672
|
+
maxDate="2020"
|
|
673
|
+
loading
|
|
674
|
+
bins="[33, 1, 100]"
|
|
675
|
+
>
|
|
676
|
+
</histogram-date-range>
|
|
613
677
|
`);
|
|
614
678
|
expect((_d = (_c = (_b = (_a = el.shadowRoot) === null || _a === void 0 ? void 0 : _a.querySelector('ia-activity-indicator')) === null || _b === void 0 ? void 0 : _b.attributes) === null || _c === void 0 ? void 0 : _c.getNamedItem('mode')) === null || _d === void 0 ? void 0 : _d.value).to.eq('processing');
|
|
615
679
|
});
|
|
616
680
|
it('can use LitElement bound properties', async () => {
|
|
617
681
|
var _a, _b;
|
|
618
|
-
const el = await fixture(html `
|
|
619
|
-
<histogram-date-range
|
|
620
|
-
.minDate=${1900}
|
|
621
|
-
.maxDate=${'Dec 4, 2020'}
|
|
622
|
-
.minSelectedDate=${2012}
|
|
623
|
-
.maxSelectedDate=${2019}
|
|
624
|
-
.bins=${[33, 1, 100]}
|
|
625
|
-
>
|
|
626
|
-
</histogram-date-range>
|
|
682
|
+
const el = await fixture(html `
|
|
683
|
+
<histogram-date-range
|
|
684
|
+
.minDate=${1900}
|
|
685
|
+
.maxDate=${'Dec 4, 2020'}
|
|
686
|
+
.minSelectedDate=${2012}
|
|
687
|
+
.maxSelectedDate=${2019}
|
|
688
|
+
.bins=${[33, 1, 100]}
|
|
689
|
+
>
|
|
690
|
+
</histogram-date-range>
|
|
627
691
|
`);
|
|
628
692
|
const minDateInput = (_a = el.shadowRoot) === null || _a === void 0 ? void 0 : _a.querySelector('#date-min');
|
|
629
693
|
expect(minDateInput.value).to.eq('2012');
|