I'm trying re-use the components from react-google-maps
and implement the simple map example from the doc: https://tomchentw.github.io/react-google-maps/basics/simple-map
However, I'm a blocked by the withGoogleMap
Higher-Order Component (HOC) that wraps the GoogleMap
component. I have tried to adapt the classes with Reagent and use them as follow:
(def GoogleMap (adapt-react-class js/ReactGoogleMaps.GoogleMap))
(def withGoogleMap (adapt-react-class js/ReactGoogleMaps.withGoogleMap))
(defn Map [props]
[withGoogleMap
[GoogleMap props]])
in lieu of the following Javascript:
const Map = withGoogleMap(props => (
<GoogleMap
{... props}
>
</GoogleMap>
));
Without success. (I get the following error withGoogleMap(...): A valid React element (or null) must be returned. You may have returned undefined, an array or some other invalid object.
).
The
withGoogleMap
HOC is a function that should be called with the wrapped component. To implement the simple map example, you also need to provide props to theGoogleMap
component to be wrapped. This can be achieved by adapting the component to reagent withadapt-react-class
, implementing the CLJS component, and "converting back" withreactify-component
before calling the HOC.Note that I am using the experimental :npm-deps support to require
react-google-maps
.