-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Expand file tree
/
Copy pathRangeSlider.tsx
More file actions
443 lines (406 loc) · 18.3 KB
/
RangeSlider.tsx
File metadata and controls
443 lines (406 loc) · 18.3 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
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,
} = 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 conditional input rendering
const [sliderWidth, setSliderWidth] = useState<number | null>(null);
const [showInputs, setShowInputs] = useState<boolean>(value.length === 2);
const sliderRef = useRef<HTMLDivElement>(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 (width for horizontal, height for vertical)
useEffect(() => {
if (!sliderRef.current) {
return;
}
if (step === null) {
// If the user has explicitly disabled stepping (step=None), then
// the slider values are constrained to the given marks and user
// cannot enter arbitrary values via the input element
setShowInputs(false);
return;
}
if (!value || value.length > 2) {
setShowInputs(false);
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);
// eslint-disable-next-line no-magic-numbers
const HIDE_AT_WIDTH = value.length === 1 ? 200 : 250;
// eslint-disable-next-line no-magic-numbers
const SHOW_AT_WIDTH = value.length === 1 ? 300 : 450;
if (showInputs && dimension < HIDE_AT_WIDTH) {
setShowInputs(false);
} else if (!showInputs && dimension >= SHOW_AT_WIDTH) {
setShowInputs(true);
}
}
}
};
// 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();
};
}, [showInputs, vertical, step, value]);
// 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 digits needed and container size
const inputWidth = useMemo(() => {
if (!sliderWidth) {
return '64px'; // fallback to current width
}
// Count digits needed for min and max values
const maxDigits = Math.max(
String(Math.floor(Math.abs(minMaxValues.max_mark))).length,
String(Math.floor(Math.abs(minMaxValues.min_mark))).length
);
// Add 1 for minus sign if min is negative
const totalChars = maxDigits + (minMaxValues.min_mark < 0 ? 1 : 0);
// Calculate width as percentage of container (5% min, 15% max)
/* eslint-disable no-magic-numbers */
const minWidth = sliderWidth * 0.05;
const maxWidth = sliderWidth * 0.15;
const charBasedWidth = totalChars * 12; // approx 12px per character
/* eslint-enable no-magic-numbers */
const calculatedWidth = Math.max(
minWidth,
Math.min(maxWidth, charBasedWidth)
);
return `${calculatedWidth}px`;
}, [sliderWidth, minMaxValues.min_mark, minMaxValues.max_mark]);
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});
}
};
return (
<LoadingElement>
{loadingProps => (
<div
id={id}
className="dash-slider-container"
{...loadingProps}
>
{showInputs && value.length === 2 && !vertical && (
<input
type="number"
className="dash-input-container dash-range-slider-input dash-range-slider-min-input"
style={{width: inputWidth}}
value={value[0] ?? ''}
onChange={e => {
const inputValue = e.target.value;
// Allow empty string (user is clearing the field)
if (inputValue === '') {
// Don't update props while user is typing, just update local state
setValue([null as any, value[1]]);
} else {
const newMin = parseFloat(inputValue);
if (!isNaN(newMin)) {
const newValue = [newMin, value[1]];
setValue(newValue);
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 = value[0] ?? minMaxValues.min_mark;
} else {
newMin = parseFloat(inputValue);
newMin = isNaN(newMin)
? minMaxValues.min_mark
: newMin;
}
const constrainedMin = Math.max(
minMaxValues.min_mark,
Math.min(
value[1] ?? minMaxValues.max_mark,
newMin
)
);
const newValue = [constrainedMin, value[1]];
setValue(newValue);
if (updatemode === 'mouseup') {
setProps({value: newValue});
}
}}
pattern="^\\d*\\.?\\d*$"
min={minMaxValues.min_mark}
max={value[1]}
step={step || undefined}
disabled={disabled}
/>
)}
{showInputs && !vertical && (
<input
type="number"
className="dash-input-container dash-range-slider-input dash-range-slider-max-input"
style={{width: inputWidth}}
value={value[value.length - 1] ?? ''}
onChange={e => {
const inputValue = e.target.value;
// Allow empty string (user is clearing the field)
if (inputValue === '') {
// Don't update props while user is typing, just update local state
const newValue = [...value];
newValue[newValue.length - 1] = '' as any;
setValue(newValue);
} else {
const newMax = parseFloat(inputValue);
const constrainedMax = Math.max(
minMaxValues.min_mark,
Math.min(minMaxValues.max_mark, newMax)
);
if (newMax === constrainedMax) {
const newValue = [...value];
newValue[newValue.length - 1] = newMax;
setProps({
value: newValue,
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 =
value[value.length - 1] ??
minMaxValues.max_mark;
} else {
newMax = parseFloat(inputValue);
newMax = isNaN(newMax)
? minMaxValues.max_mark
: newMax;
}
const constrainedMax = Math.min(
minMaxValues.max_mark,
Math.max(
value[0] ?? minMaxValues.min_mark,
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={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' : ''
} ${className || ''}`.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'}
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,
!!dots
)}
{dots &&
stepValue &&
renderSliderDots(
stepValue,
minMaxValues,
!!vertical
)}
{/* 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>
);
}