forked from githuboftigran/rn-range-slider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
helpers.js
24 lines (22 loc) · 901 Bytes
/
helpers.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
export const isLowCloser = (downX, lowPosition, highPosition) => {
if (lowPosition === highPosition) {
return downX < lowPosition;
}
const distanceFromLow = Math.abs(downX - lowPosition);
const distanceFromHigh = Math.abs(downX - highPosition);
return distanceFromLow < distanceFromHigh;
};
export const clamp = (value, min, max) => {
return Math.min(Math.max(value, min), max);
};
export const getValueForPosition = (positionInView, containerWidth, thumbWidth, min, max, step) => {
const availableSpace = containerWidth - thumbWidth;
const relStepUnit = step / (max - min);
let relPosition = (positionInView - thumbWidth / 2) / availableSpace;
const relOffset = relPosition % relStepUnit;
relPosition -= relOffset;
if (relOffset / relStepUnit >= 0.5) {
relPosition += relStepUnit;
}
return clamp(min + Math.round(relPosition / relStepUnit) * step, min, max);
};