-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Expand file tree
/
Copy pathRangeSlider.tsx
More file actions
501 lines (454 loc) · 20 KB
/
RangeSlider.tsx
File metadata and controls
501 lines (454 loc) · 20 KB
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
import React, {useEffect, useState, useMemo, useRef} from 'react';
import * as RadixSlider from '@radix-ui/react-slider';
import {isNil} from 'ramda';
import {
sanitizeMarks,
calcStep,
setUndefined,
} from '../utils/computeSliderMarkers';
import {snapToNearestMark} from '../utils/sliderSnapToMark';
import {renderSliderMarks, renderSliderDots} from '../utils/sliderRendering';
import LoadingElement from '../utils/_LoadingElement';
import {Tooltip} from '../utils/sliderTooltip';
import {RangeSliderProps} from '../types';
const MAX_MARKS = 500;
/**
* A double slider with two handles.
* Used for specifying a range of numerical values.
*/
export default function RangeSlider(props: RangeSliderProps) {
const {
className,
id,
setProps,
tooltip,
updatemode,
min,
max,
marks,
step,
vertical,
verticalHeight,
value: propValue,
disabled,
dots,
included,
allowCross,
pushable,
count,
reverse,
allow_direct_input = true,
} = props;
// For range slider, we expect an array of values
const [value, setValue] = useState<number[]>(propValue || []);
// Track slider dimension (width for horizontal, height for vertical) for marks rendering
const [sliderWidth, setSliderWidth] = useState<number | null>(null);
const sliderRef = useRef<HTMLDivElement>(null);
const inputRef = useRef<HTMLInputElement>(null);
// Handle initial mount - equivalent to componentWillMount
useEffect(() => {
if (propValue && propValue.length > 0) {
setProps({drag_value: propValue});
setValue(propValue);
} else {
// Default to range from min to max if no value provided
const defaultValue = [min ?? (propValue ? propValue[0] : 0)];
setValue(defaultValue);
}
}, []);
// Dynamic dimension detection using ResizeObserver for marks rendering
useEffect(() => {
if (!sliderRef.current) {
return;
}
const measureWidth = () => {
if (sliderRef.current) {
const rect = sliderRef.current.getBoundingClientRect();
// Use height for vertical sliders, width for horizontal sliders
const dimension = vertical ? rect.height : rect.width;
if (dimension > 0) {
setSliderWidth(dimension);
}
}
};
// Initial measurement
measureWidth();
// Set up ResizeObserver for dynamic resizing
const resizeObserver = new ResizeObserver(() => {
measureWidth();
});
resizeObserver.observe(sliderRef.current);
// Cleanup function when component unmounts
// eslint-disable-next-line consistent-return
return () => {
resizeObserver.disconnect();
};
}, [vertical]);
// Handle prop value changes - equivalent to componentWillReceiveProps
useEffect(() => {
if (propValue && JSON.stringify(propValue) !== JSON.stringify(value)) {
setProps({drag_value: propValue});
setValue(propValue);
}
}, [propValue]);
// Check if marks exceed 500 limit for performance
let processedMarks = marks;
if (marks && typeof marks === 'object' && marks !== null) {
const marksCount = Object.keys(marks).length;
if (marksCount > MAX_MARKS) {
/* eslint-disable no-console */
console.error(
`Slider: Too many marks (${marksCount}) provided. ` +
`For performance reasons, marks are limited to 500. ` +
`Using auto-generated marks instead.`
);
processedMarks = undefined;
}
}
const minMaxValues = useMemo(() => {
return setUndefined(min, max, processedMarks);
}, [min, max, processedMarks]);
const stepValue = useMemo(() => {
return step === null && isNil(processedMarks)
? undefined
: calcStep(min, max, step);
}, [min, max, processedMarks, step]);
// Sanitize marks for rendering
const renderedMarks = useMemo(() => {
if (processedMarks === null) {
return null;
}
return sanitizeMarks({
min,
max,
marks: processedMarks,
step,
sliderWidth,
});
}, [min, max, processedMarks, step, sliderWidth]);
// Calculate dynamic input width based on min/max values
const inputWidth = useMemo(() => {
const maxIntegerChars = Math.max(
String(Math.floor(minMaxValues.max_mark)).length,
String(Math.floor(minMaxValues.min_mark)).length
);
const maxDecimalChars = Math.min(
(String(stepValue).split('.')[1]?.length ?? -1) + 1,
3
);
const totalChars = maxIntegerChars + maxDecimalChars;
return `calc(${totalChars}ch + calc(var(--Dash-Spacing) * 2))`;
}, [minMaxValues.min_mark, minMaxValues.max_mark, stepValue]);
const valueIsValid = (val: number): boolean => {
// Check if value is within min/max bounds
if (val < minMaxValues.min_mark || val > minMaxValues.max_mark) {
return false;
}
// If step is defined, check if value aligns with step
if (stepValue !== undefined) {
const min = minMaxValues.min_mark;
const offset = val - min;
const remainder = Math.abs(offset % stepValue);
const epsilon = 0.0001; // tolerance for floating point comparison
if (remainder > epsilon && remainder < stepValue - epsilon) {
return false;
}
}
// If step is null and marks exist, value must match a mark
if (
step === null &&
processedMarks &&
typeof processedMarks === 'object'
) {
const markValues = Object.keys(processedMarks).map(Number);
const epsilon = 0.0001;
return markValues.some(mark => Math.abs(val - mark) < epsilon);
}
return true;
};
const constrainToValidValue = (val: number): number => {
// First constrain to min/max bounds
let constrained = Math.max(
minMaxValues.min_mark,
Math.min(minMaxValues.max_mark, val)
);
// If step is null and marks exist, snap to nearest mark
if (
step === null &&
processedMarks &&
typeof processedMarks === 'object'
) {
return snapToNearestMark(constrained, processedMarks);
}
// If step is defined, round to nearest step
if (stepValue !== undefined) {
const min = minMaxValues.min_mark;
const steps = Math.round((constrained - min) / stepValue);
constrained = min + steps * stepValue;
// Round to avoid floating point precision issues
// Determine decimal places from step value
const stepStr = stepValue.toString();
const decimalPlaces = stepStr.includes('.')
? stepStr.split('.')[1].length
: 0;
constrained = Number(constrained.toFixed(decimalPlaces));
// Ensure we stay within bounds after rounding
constrained = Math.max(
minMaxValues.min_mark,
Math.min(minMaxValues.max_mark, constrained)
);
}
return constrained;
};
const handleValueChange = (newValue: number[]) => {
let adjustedValue = newValue;
// Snap to nearest marks if step is null and marks exist
if (
step === null &&
processedMarks &&
typeof processedMarks === 'object'
) {
const marks = processedMarks;
adjustedValue = newValue.map(val => snapToNearestMark(val, marks));
}
setValue(adjustedValue);
if (updatemode === 'drag') {
setProps({value: adjustedValue, drag_value: adjustedValue});
} else {
setProps({drag_value: adjustedValue});
}
};
const handleValueCommit = (newValue: number[]) => {
if (updatemode === 'mouseup') {
setProps({value: newValue});
}
};
const classNames = ['dash-slider-container', className].filter(Boolean);
// Determine if inputs should be rendered at all (CSS will handle responsive visibility)
const shouldShowInputs =
allow_direct_input !== false && // Not disabled by allow_direct_input
step !== null && // Not disabled by step=None
value.length <= 2 && // Only for single or range sliders
!vertical; // Only for horizontal sliders
return (
<LoadingElement>
{loadingProps => (
<div id={id} className={classNames.join(' ')} {...loadingProps}>
{shouldShowInputs && value.length === 2 && (
<input
type="number"
className="dash-input-container dash-range-slider-input dash-range-slider-min-input"
style={{width: inputWidth}}
value={isNaN(value[0]) ? '' : value[0]}
onChange={e => {
const inputValue = e.target.value;
// Parse the input value
const newMin = parseFloat(inputValue);
const newValue = [newMin, value[1]];
setValue(newValue);
// Only update props if value is valid
if (valueIsValid(newMin)) {
if (updatemode === 'drag') {
setProps({
value: newValue,
drag_value: newValue,
});
} else {
setProps({
drag_value: newValue,
});
}
}
}}
onBlur={e => {
const inputValue = e.target.value;
let newMin: number;
// If empty, default to current value or min_mark
if (inputValue === '') {
newMin = isNaN(value[0])
? minMaxValues.min_mark
: value[0];
} else {
newMin = parseFloat(inputValue);
newMin = isNaN(newMin)
? minMaxValues.min_mark
: newMin;
}
// Constrain to not exceed the max value
newMin = Math.min(
value[1] ?? minMaxValues.max_mark,
newMin
);
// Snap to valid value (respecting step and marks)
const constrainedMin =
constrainToValidValue(newMin);
const newValue = [constrainedMin, value[1]];
setValue(newValue);
if (updatemode === 'mouseup') {
setProps({value: newValue});
}
}}
pattern="^\\d*\\.?\\d*$"
min={minMaxValues.min_mark}
max={isNaN(value[1]) ? max : value[1]}
step={step || undefined}
disabled={disabled}
/>
)}
{shouldShowInputs && (
<input
ref={inputRef}
type="number"
className="dash-input-container dash-range-slider-input dash-range-slider-max-input"
style={{width: inputWidth}}
value={
isNaN(value[value.length - 1])
? ''
: value[value.length - 1]
}
onChange={e => {
const inputValue = e.target.value;
// Parse the input value
const newMax = parseFloat(inputValue);
const newValue = [...value];
newValue[newValue.length - 1] = newMax;
setValue(newValue);
// Only update props if value is valid
if (valueIsValid(newMax)) {
if (updatemode === 'drag') {
setProps({
value: newValue,
drag_value: newValue,
});
} else {
setProps({
drag_value: newValue,
});
}
}
}}
onBlur={e => {
const inputValue = e.target.value;
let newMax: number;
// If empty, default to current value or max_mark
if (inputValue === '') {
newMax = isNaN(value[value.length - 1])
? minMaxValues.max_mark
: value[value.length - 1];
} else {
newMax = parseFloat(inputValue);
newMax = isNaN(newMax)
? minMaxValues.max_mark
: newMax;
}
// Constrain to not be less than the min value
newMax = Math.max(
value[0] ?? minMaxValues.min_mark,
newMax
);
// Snap to valid value (respecting step and marks)
const constrainedMax =
constrainToValidValue(newMax);
const newValue = [...value];
newValue[newValue.length - 1] = constrainedMax;
setValue(newValue);
if (updatemode === 'mouseup') {
setProps({value: newValue});
}
}}
pattern="^\\d*\\.?\\d*$"
min={
value.length === 1
? minMaxValues.min_mark
: value[0]
}
max={
isNaN(minMaxValues.max_mark)
? max
: minMaxValues.max_mark
}
step={step || undefined}
disabled={disabled}
/>
)}
<div
className="dash-slider-wrapper"
onClickCapture={e => e.preventDefault()} // prevent interactions from "clicking" the parent, particularly when slider is inside a label tag
>
<RadixSlider.Root
ref={sliderRef}
className={`dash-slider-root ${
renderedMarks ? 'has-marks' : ''
}`.trim()}
style={{
...(vertical && {
height: `${verticalHeight}px`,
}),
}}
value={value}
onValueChange={handleValueChange}
onValueCommit={handleValueCommit}
min={minMaxValues.min_mark}
max={minMaxValues.max_mark}
step={stepValue}
disabled={disabled}
orientation={vertical ? 'vertical' : 'horizontal'}
inverted={reverse}
data-included={included !== false}
minStepsBetweenThumbs={
typeof pushable === 'number'
? pushable
: undefined
}
>
<RadixSlider.Track className="dash-slider-track">
{included !== false && (
<RadixSlider.Range className="dash-slider-range" />
)}
</RadixSlider.Track>
{renderedMarks &&
renderSliderMarks(
renderedMarks,
!!vertical,
minMaxValues,
value,
!!dots,
!!reverse
)}
{dots &&
stepValue &&
renderSliderDots(
stepValue,
minMaxValues,
value,
!!vertical,
!!reverse
)}
{/* Render thumbs with tooltips for each value */}
{value.map((val, index) => {
const thumbClassName = `dash-slider-thumb dash-slider-thumb-${
index + 1
}`;
return (
<RadixSlider.Thumb
key={'thumb' + index}
className={thumbClassName}
>
{tooltip && (
<Tooltip
id={id}
index={index}
value={val}
tooltip={tooltip}
/>
)}
</RadixSlider.Thumb>
);
})}
</RadixSlider.Root>
</div>
</div>
)}
</LoadingElement>
);
}