70 lines
1.7 KiB
JavaScript
70 lines
1.7 KiB
JavaScript
import React, { useState } from "react";
|
|
import { Box, Slider as ThemeSlider } from "theme-ui";
|
|
|
|
function Slider({ min, max, value, ml, mr, labelFunc, ...rest }) {
|
|
const percentValue = ((value - min) * 100) / (max - min);
|
|
|
|
const [labelVisible, setLabelVisible] = useState(false);
|
|
|
|
return (
|
|
<Box sx={{ position: "relative" }} ml={ml} mr={mr}>
|
|
{labelVisible && (
|
|
<Box
|
|
sx={{
|
|
position: "absolute",
|
|
top: "-42px",
|
|
}}
|
|
style={{
|
|
left: `calc(${percentValue}% + ${-8 - percentValue * 0.15}px)`,
|
|
}}
|
|
>
|
|
<Box
|
|
sx={{
|
|
width: "32px",
|
|
height: "32px",
|
|
display: "flex",
|
|
alignItems: "center",
|
|
justifyContent: "center",
|
|
borderRadius: "50% 50% 50% 0%",
|
|
transform: "rotate(-45deg)",
|
|
}}
|
|
bg="primary"
|
|
>
|
|
<Box
|
|
sx={{
|
|
fontFamily: "body2",
|
|
fontWeight: "caption",
|
|
fontSize: 0,
|
|
transform: "rotate(45deg)",
|
|
}}
|
|
>
|
|
{labelFunc(value)}
|
|
</Box>
|
|
</Box>
|
|
</Box>
|
|
)}
|
|
<ThemeSlider
|
|
min={min}
|
|
max={max}
|
|
value={value}
|
|
onMouseDown={() => setLabelVisible(true)}
|
|
onMouseUp={() => setLabelVisible(false)}
|
|
onTouchStart={() => setLabelVisible(true)}
|
|
onTouchEnd={() => setLabelVisible(false)}
|
|
{...rest}
|
|
/>
|
|
</Box>
|
|
);
|
|
}
|
|
|
|
Slider.defaultProps = {
|
|
min: 0,
|
|
max: 1,
|
|
value: 0,
|
|
ml: 0,
|
|
mr: 0,
|
|
labelFunc: (value) => value,
|
|
};
|
|
|
|
export default Slider;
|