File size: 2,249 Bytes
1e92f2d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 | import React, { Component } from 'react';
import PropTypes from 'prop-types';
import { LatLngPropType, BoundingBoxPropType } from './propTypes';
import Connector from './Connector';
import Provider from './Provider';
import GoogleMaps from './GoogleMaps';
class GeoSearch extends Component {
static propTypes = {
google: PropTypes.object.isRequired,
children: PropTypes.func.isRequired,
initialZoom: PropTypes.number,
initialPosition: LatLngPropType,
enableRefine: PropTypes.bool,
enableRefineOnMapMove: PropTypes.bool,
defaultRefinement: BoundingBoxPropType,
};
static defaultProps = {
initialZoom: 1,
initialPosition: { lat: 0, lng: 0 },
enableRefine: true,
enableRefineOnMapMove: true,
defaultRefinement: null,
};
renderChildrenWithBoundFunction = ({ hits, position, ...rest }) => {
const {
google,
children,
initialZoom,
initialPosition,
enableRefine,
enableRefineOnMapMove,
defaultRefinement,
...mapOptions
} = this.props;
return (
<Provider
{...rest}
testID="Provider"
google={google}
hits={hits}
position={position}
isRefineEnable={enableRefine}
>
{({
boundingBox,
boundingBoxPadding,
onChange,
onIdle,
shouldUpdate,
}) => (
<GoogleMaps
testID="GoogleMaps"
google={google}
initialZoom={initialZoom}
initialPosition={position || initialPosition}
mapOptions={mapOptions}
boundingBox={boundingBox}
boundingBoxPadding={boundingBoxPadding}
onChange={onChange}
onIdle={onIdle}
shouldUpdate={shouldUpdate}
>
{children({ hits })}
</GoogleMaps>
)}
</Provider>
);
};
render() {
const { enableRefineOnMapMove, defaultRefinement } = this.props;
return (
<Connector
testID="Connector"
enableRefineOnMapMove={enableRefineOnMapMove}
defaultRefinement={defaultRefinement}
>
{this.renderChildrenWithBoundFunction}
</Connector>
);
}
}
export default GeoSearch;
|