Post-swap hardening after a full BS4-removed-class sweep of the codebase: - LocationAutocomplete passed `root: 'form-group'` to react-places-autocomplete; BS5 removed `.form-group` (it gave the bottom margin) -> use `mb-3`. - Drop the unused `popper.js@1` dependency (react-bootstrap bundles @popperjs/core@2). No source imports it. Sweep otherwise clean: no other BS4-only utility/component classes remain in JSX or SCSS. Full-app build boots clean.
133 lines
4.2 KiB
JavaScript
133 lines
4.2 KiB
JavaScript
/* eslint-disable react/jsx-indent-props */
|
|
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import { withTranslation } from 'react-i18next';
|
|
import PlacesAutocomplete, { geocodeByAddress, getLatLng } from 'react-places-autocomplete';
|
|
import { Form } from 'react-bootstrap';
|
|
import { Bert } from 'meteor/themeteorchef:bert';
|
|
|
|
|
|
// Sample:
|
|
// https://github.com/kenny-hibino/react-places-autocomplete/blob/master/demo/components/SearchBar.js
|
|
class LocationAutocomplete extends React.Component {
|
|
constructor(props) {
|
|
super(props);
|
|
this.state = {
|
|
address: '',
|
|
loading: false // we can use it with a spinner
|
|
};
|
|
this.handleSelect = this.handleSelect.bind(this);
|
|
this.handleChange = this.handleChange.bind(this);
|
|
this.onError = this.onError.bind(this);
|
|
}
|
|
|
|
onError(error) {
|
|
if (error === 'ZERO_RESULTS') {
|
|
Bert.alert(this.props.t('Lugar no encontrado'), 'alert');
|
|
}
|
|
}
|
|
|
|
handleChange(address) {
|
|
this.setState({ address });
|
|
}
|
|
|
|
handleSelect(address) {
|
|
this.setState({
|
|
address,
|
|
loading: true
|
|
});
|
|
const self = this;
|
|
try {
|
|
geocodeByAddress(address)
|
|
.then(results => getLatLng(results[0]))
|
|
.then((result) => {
|
|
if (result && result.lat && result.lng) {
|
|
const { lat, lng } = result;
|
|
self.props.onChange({ lat, lng });
|
|
self.setState({
|
|
loading: false
|
|
});
|
|
}
|
|
})
|
|
.catch((error) => { self.onError(error); });
|
|
} catch (error) {
|
|
self.onError(error);
|
|
}
|
|
}
|
|
|
|
render() {
|
|
// https://www.npmjs.com/package/react-places-autocomplete
|
|
// https://github.com/kenny-hibino/react-places-autocomplete/issues/103
|
|
const myStyles = {
|
|
autocompleteContainer: {
|
|
paddingBottom: '20px',
|
|
backgroundSize: 'auto 12px',
|
|
backgroundPosition: 'bottom left 10px',
|
|
backgroundRepeat: 'no-repeat',
|
|
backgroundImage: "url('https://maps.gstatic.com/mapfiles/api-3/images/powered-by-google-on-white3_hdpi.png')"
|
|
}
|
|
};
|
|
|
|
// http://simplelineicons.com/
|
|
const AutocompleteItem = ({ formattedSuggestion }) => (
|
|
<div className="suggestion-item">
|
|
<i className="icons icon-location-pin suggestion-icon" />{' '}
|
|
<strong>{formattedSuggestion.mainText}</strong>{' '}
|
|
<small className="text-muted">{formattedSuggestion.secondaryText}</small>
|
|
</div>);
|
|
|
|
const {
|
|
t, label, placeHolder, helpText
|
|
} = this.props;
|
|
|
|
return (
|
|
<form>
|
|
<Form.Group>
|
|
{ label.length > 0 && <Form.Label>{t(label)}</Form.Label> }
|
|
<PlacesAutocomplete
|
|
styles={myStyles}
|
|
autocompleteItem={AutocompleteItem}
|
|
classNames={{
|
|
root: 'mb-3', // was BS4 `.form-group` (removed in BS5); mb-3 keeps the bottom margin
|
|
input: 'form-control',
|
|
autocompleteContainer: 'autocomplete-container'
|
|
}}
|
|
googleLogo={false}
|
|
highlightFirstSuggestion
|
|
onChange={this.handleChange}
|
|
onSelect={this.handleSelect}
|
|
onEnterKeyDown={this.handleSelect}
|
|
onError={this.onError}
|
|
options={{
|
|
// location: new google.maps.LatLng(-34, 151),
|
|
// radius: 2000,
|
|
// type: ['address'],
|
|
language: this.props.i18n.language
|
|
}}
|
|
inputProps={
|
|
{
|
|
value: this.state.address,
|
|
onChange: this.handleChange,
|
|
placeholder: t(placeHolder),
|
|
onBlur: () => { /* console.log('Blur event!'); */ },
|
|
onFocus: () => { /* console.log('Focused!'); */ },
|
|
autoFocus: this.props.focusInput
|
|
}}
|
|
/>
|
|
{ helpText.length > 0 && <Form.Text>{t(helpText)}</Form.Text> }
|
|
</Form.Group>
|
|
</form>
|
|
);
|
|
}
|
|
}
|
|
|
|
LocationAutocomplete.propTypes = {
|
|
focusInput: PropTypes.bool.isRequired,
|
|
t: PropTypes.func.isRequired,
|
|
label: PropTypes.string.isRequired,
|
|
placeHolder: PropTypes.string.isRequired,
|
|
helpText: PropTypes.string.isRequired,
|
|
i18n: PropTypes.object.isRequired
|
|
};
|
|
|
|
export default withTranslation()(LocationAutocomplete);
|