2025-04-02 19:22:29 -06:00
|
|
|
import React, { useState, useEffect } from 'react';
|
2025-04-02 19:42:13 -06:00
|
|
|
import { Grid, TextField } from '@mui/material';
|
|
|
|
|
import TextFieldWithDesc from '@components/options/TextFieldWithDesc';
|
2025-04-02 19:22:29 -06:00
|
|
|
import Autocomplete from '@mui/material/Autocomplete';
|
|
|
|
|
import Qty from 'js-quantities';
|
2025-04-02 19:42:13 -06:00
|
|
|
import { parse } from 'path';
|
|
|
|
|
import { b } from 'vitest/dist/suite-IbNSsUWN.js';
|
2025-04-02 19:22:29 -06:00
|
|
|
|
|
|
|
|
export default function NumericInputWithUnit(props: {
|
|
|
|
|
value: { value: number; unit: string };
|
2025-04-02 19:42:13 -06:00
|
|
|
onOwnChange: (value: { value: number; unit: string }, ...baseProps) => void;
|
2025-04-02 19:22:29 -06:00
|
|
|
}) {
|
|
|
|
|
const [inputValue, setInputValue] = useState(props.value.value);
|
|
|
|
|
const [unit, setUnit] = useState(props.value.unit);
|
|
|
|
|
const [unitOptions, setUnitOptions] = useState<string[]>([]);
|
|
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
|
try {
|
|
|
|
|
const kind = Qty(props.value.unit).kind();
|
|
|
|
|
const units = Qty.getUnits(kind);
|
|
|
|
|
setUnitOptions(units);
|
|
|
|
|
} catch (error) {
|
|
|
|
|
console.error('Invalid unit kind', error);
|
|
|
|
|
}
|
|
|
|
|
}, [props.value.unit]);
|
|
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
|
setInputValue(props.value.value);
|
|
|
|
|
setUnit(props.value.unit);
|
|
|
|
|
}, [props.value]);
|
|
|
|
|
|
2025-04-02 19:42:13 -06:00
|
|
|
const handleValueChange = (val: { value: number; unit: string }) => {
|
|
|
|
|
const newValue = val.value;
|
2025-04-02 19:22:29 -06:00
|
|
|
setInputValue(newValue);
|
2025-04-02 19:42:13 -06:00
|
|
|
if (props.onOwnChange) {
|
2025-04-02 19:22:29 -06:00
|
|
|
try {
|
2025-04-02 19:42:13 -06:00
|
|
|
const qty = Qty(newValue, unit).to(val.unit);
|
|
|
|
|
props.onOwnChange({ unit: val.unit, value: qty.scalar });
|
2025-04-02 19:22:29 -06:00
|
|
|
} catch (error) {
|
|
|
|
|
console.error('Conversion error', error);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const handleUnitChange = (newUnit: string) => {
|
|
|
|
|
if (!newUnit) return;
|
|
|
|
|
setUnit(newUnit);
|
|
|
|
|
try {
|
|
|
|
|
const convertedValue = Qty(inputValue, unit).to(newUnit).scalar;
|
|
|
|
|
setInputValue(convertedValue);
|
|
|
|
|
} catch (error) {
|
|
|
|
|
console.error('Unit conversion error', error);
|
|
|
|
|
}
|
2025-04-02 19:42:13 -06:00
|
|
|
|
|
|
|
|
if (props.onOwnChange) {
|
|
|
|
|
try {
|
|
|
|
|
const qty = Qty(inputValue, unit).to(newUnit);
|
|
|
|
|
props.onOwnChange({ unit: newUnit, value: qty.scalar });
|
|
|
|
|
} catch (error) {
|
|
|
|
|
console.error('Conversion error', error);
|
|
|
|
|
}
|
|
|
|
|
}
|
2025-04-02 19:22:29 -06:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<Grid container spacing={2} alignItems="center">
|
|
|
|
|
<Grid item xs={6}>
|
2025-04-02 19:42:13 -06:00
|
|
|
<TextFieldWithDesc
|
|
|
|
|
{...props.baseProps}
|
2025-04-02 19:22:29 -06:00
|
|
|
type="number"
|
|
|
|
|
fullWidth
|
|
|
|
|
value={inputValue}
|
2025-04-02 19:42:13 -06:00
|
|
|
onOwnChange={(value) =>
|
|
|
|
|
handleValueChange({ value: parseFloat(value), unit: unit })
|
|
|
|
|
}
|
2025-04-02 19:22:29 -06:00
|
|
|
label="Value"
|
|
|
|
|
/>
|
|
|
|
|
</Grid>
|
|
|
|
|
<Grid item xs={6}>
|
|
|
|
|
<Autocomplete
|
|
|
|
|
options={unitOptions}
|
|
|
|
|
value={unit}
|
2025-04-02 19:42:13 -06:00
|
|
|
onChange={(event, newValue) => {
|
|
|
|
|
handleUnitChange(newValue || '');
|
2025-04-02 19:22:29 -06:00
|
|
|
}}
|
|
|
|
|
renderInput={(params) => (
|
|
|
|
|
<TextField {...params} label="Unit" fullWidth />
|
|
|
|
|
)}
|
|
|
|
|
/>
|
|
|
|
|
</Grid>
|
|
|
|
|
</Grid>
|
|
|
|
|
);
|
|
|
|
|
}
|