import * as React from "react"; import Radio from "@mui/material/Radio"; import RadioGroup from "@mui/material/RadioGroup"; import FormControlLabel from "@mui/material/FormControlLabel"; import FormLabel from "@mui/material/FormLabel"; import FormControl from "@mui/material/FormControl"; import FormHelperText from "@mui/material/FormHelperText"; import Tooltip from "@mui/material/Tooltip"; import staticText from "../../../assets/data/staticText.json"; import { useFilter } from "../../providers/FilterProvider"; const WET_SOIL_DESCRIPTION = (

Is your ground/soil VERY WET? i.e. is it soft and squishy under foot with ground water at or near surface for three months of year or more? Your soil is considered wet if the{" "} subsoil {" "} is either very dark brown and{" "} peat -like, or grey rather than a red, brown, or yellow rusty colour?

); const DRY_SOIL_DESCRIPTION = (

Is your ground/soil VERY DRY? i.e. If your soil is very well drained, stony, sandy or shallow (less than one metre depth to bed rock, stones or other hard/artificial surface), or is it completely dry for three months of year or more, and not irrigated then we consider it dry.

); const MESIC_SOIL_DESCRIPTION = (

If your ground/soil does not meet either of the two previous definitions, we’d likely classify it as{" "} MOIST, or somewhere in between very wet and very dry. Your ground is considered moist if it has compacted soil that is fine or has a soft/crumbly texture. The sand, silt and clay mixture known as loam is considered moist in this context. Moist soils are more than one metre above an impervious layer, and are never water-logged nor are they completely dry for more than three months. If you are unsure, or if you plan to irrigate your site, then select this option.

); export default function SoilSelector({setNextDisabled}) { const { filters, updateFilters } = useFilter(); const [value, setValue] = React.useState(filters.soilVariant); const [helperText, setHelperText] = React.useState( staticText.steps.soil.optionsHelperText ); React.useEffect(() => { if (filters.soilVariant) { setNextDisabled(false); } }, [filters, setNextDisabled]); const handleRadioChange = (event) => { const soilVariantSelection = event.target.value; setValue(soilVariantSelection); setHelperText(" "); updateFilters({ soilVariant: soilVariantSelection }); setNextDisabled(false); }; return (
{staticText.steps.soil.optionsLabel} } label={DRY_SOIL_DESCRIPTION} sx={{ paddingTop: "15px", paddingBottom: "15px" }} /> } label={WET_SOIL_DESCRIPTION} sx={{ paddingTop: "15px", paddingBottom: "15px" }} /> } label={MESIC_SOIL_DESCRIPTION} sx={{ paddingTop: "15px", paddingBottom: "15px" }} /> {helperText}
); }