right-tree/frontend/src/components/steps/location/AddressSearch.jsx
Matthew Northcott d39e7da6f1 [#41] Allow users to download the user/plang guide for a payment
- frontend changes to support physical and digital checkouts
2023-04-20 15:41:14 +12:00

90 lines
2.6 KiB
JavaScript

import { useState, useEffect } from 'react';
import { InputAdornment, TextField } from '@mui/material';
import PlaceIcon from '@mui/icons-material/Place';
import Box from '@mui/material/Box';
import List from '@mui/material/List';
import ListItem from '@mui/material/ListItem';
import ListItemButton from '@mui/material/ListItemButton';
import ListItemText from '@mui/material/ListItemText';
import LocationRepsostory from '../../../repository/LocationRepository';
import { CircularProgress } from "@mui/material";
const AddressSearchSuggestions = ({results, onClick}) => (
(Array.isArray(results) && results.length > 0)
? <Box sx={{ width: '100%', bgcolor: 'background.paper' }}>
<List>
{results.map((r, idx) => (
<ListItem disablePadding key={idx}>
<ListItemButton onClick={() => onClick(r)}>
<ListItemText primary={r.address} />
</ListItemButton>
</ListItem>
))}
</List>
</Box>
: null);
const AddressSearch = ({onSelect}) => {
const [value, setValue] = useState("");
const [enable, setEnable] = useState(true);
const [selected, setSelected] = useState(null);
const [results, setResults] = useState([]);
const [isLoading, setIsLoading] = useState(false);
useEffect(() => {
setResults([]);
if (enable && value && value.length > 5) {
const timer = setTimeout(() => {
setIsLoading(true);
LocationRepsostory.getPropertyDetails({search: value}).then(resp => {
setResults(resp.data);
setIsLoading(false);
});
}, 500);
return () => clearTimeout(timer);
}
}, [value, enable]);
useEffect(() => {
onSelect(selected);
}, [selected, onSelect]);
return (
<Box sx={{width: '100%', height: '20%'}}>
<TextField
fullWidth
variant="outlined"
placeholder="Enter address..."
InputProps={{
startAdornment: (
<InputAdornment position="start">
{isLoading ? <CircularProgress size="1.2rem" color="inherit" /> : <PlaceIcon />}
</InputAdornment>
)
}}
autoComplete="off"
onChange={(e) => {
setEnable(true);
setValue(e.target.value);
if (selected && e.target.value !== selected.address) {
setSelected(null);
}
}}
value={value}
sx={{top: 0}}
/>
<AddressSearchSuggestions
results={results}
onClick={(r) => {
setValue(r.address);
setEnable(false);
setSelected(r);
}}
/>
</Box>);
};
export default AddressSearch;