Implement SliderTableField

This commit is contained in:
Justin Edmund 2023-03-17 20:07:22 -07:00
parent 9b7b54b562
commit b67c3bc8b5
2 changed files with 75 additions and 0 deletions

View file

@ -0,0 +1,8 @@
.SliderField.TableField {
min-height: $unit-4x;
.Input {
text-align: right;
width: $unit-8x;
}
}

View file

@ -0,0 +1,67 @@
import { useEffect, useState } from 'react'
import Input from '~components/Input'
import Slider from '~components/Slider'
import TableField from '~components/TableField'
import './index.scss'
interface Props {
name: string
label: string
description?: string
value?: number
className?: string
imageAlt?: string
imageClass?: string
imageSrc?: string[]
min: number
max: number
step: number
}
const SliderTableField = (props: Props) => {
const [value, setValue] = useState(0)
useEffect(() => {
if (props.value) setValue(props.value)
}, [props.value])
function onInputChange(event: React.ChangeEvent<HTMLInputElement>) {
setValue(parseInt(event.currentTarget?.value))
}
function onValueChange(value: number[]) {
setValue(value[0])
}
return (
<TableField
name={props.name}
className="SliderField"
imageAlt={props.imageAlt}
imageClass={props.imageClass}
imageSrc={props.imageSrc}
label={props.label}
>
<Slider
name={props.name}
min={props.min}
max={props.max}
step={props.step}
value={[value]}
onValueChange={onValueChange}
/>
<Input
className="Bound"
type="number"
value={`${value}`}
min={props.min}
max={props.max}
step={props.step}
onChange={onInputChange}
/>
</TableField>
)
}
export default SliderTableField