2023-02-10 14:13:12 +13:00
|
|
|
import { useState, useEffect } from 'react';
|
2023-02-08 14:15:49 +13:00
|
|
|
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>
|
2023-02-10 14:13:12 +13:00
|
|
|
{results.map((r, idx) => (
|
|
|
|
<ListItem disablePadding key={idx}>
|
2023-02-08 14:15:49 +13:00
|
|
|
<ListItemButton onClick={() => onClick(r)}>
|
|
|
|
<ListItemText primary={r.address} />
|
|
|
|
</ListItemButton>
|
|
|
|
</ListItem>
|
|
|
|
))}
|
|
|
|
</List>
|
|
|
|
</Box>
|
|
|
|
: null);
|
|
|
|
|
2023-02-21 16:58:20 +13:00
|
|
|
const AddressSearch = ({onSelect, classNames}) => {
|
2023-02-08 14:15:49 +13:00
|
|
|
const [value, setValue] = useState("");
|
|
|
|
const [enable, setEnable] = useState(true);
|
2023-02-21 16:58:20 +13:00
|
|
|
const [selected, setSelected] = useState(null);
|
2023-02-08 14:15:49 +13:00
|
|
|
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);
|
|
|
|
}
|
2023-02-21 16:58:20 +13:00
|
|
|
}, [value, enable]);
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
onSelect(selected);
|
|
|
|
}, [selected, onSelect]);
|
2023-02-08 14:15:49 +13:00
|
|
|
|
|
|
|
return (
|
|
|
|
<div classNames={classNames}>
|
|
|
|
<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);
|
2023-02-21 16:58:20 +13:00
|
|
|
if (selected && e.target.value !== selected.address) {
|
|
|
|
setSelected(null);
|
|
|
|
}
|
2023-02-08 14:15:49 +13:00
|
|
|
}}
|
|
|
|
value={value}
|
|
|
|
/>
|
|
|
|
<AddressSearchSuggestions
|
|
|
|
results={results}
|
|
|
|
onClick={(r) => {
|
|
|
|
setValue(r.address);
|
|
|
|
setEnable(false);
|
2023-02-21 16:58:20 +13:00
|
|
|
setSelected(r);
|
2023-02-08 14:15:49 +13:00
|
|
|
}}
|
|
|
|
/>
|
|
|
|
</div>);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default AddressSearch;
|