import { default as React, Component } from "react";
import { default as update } from "react-addons-update";
import { default as canUseDOM } from "can-use-dom";
import { default as _ } from "lodash";
import { GoogleMapLoader, GoogleMap, Marker } from "react-google-maps";
import { triggerEvent } from "react-google-maps/lib/utils";
export default class GettingStarted extends Component {
state = {
markers: [{
position: {
lat: 25.0112183,
lng: 121.52067570000001,
},
key: `Taiwan`,
defaultAnimation: 2,
}],
}
constructor(props, context) {
super(props, context);
this.handleWindowResize = _.throttle(::this.handleWindowResize, 500);
}
componentDidMount() {
if (!canUseDOM) {
return;
}
window.addEventListener(`resize`, this.handleWindowResize);
}
componentWillUnmount() {
if (!canUseDOM) {
return;
}
window.removeEventListener(`resize`, this.handleWindowResize);
}
handleWindowResize() {
console.log(`handleWindowResize`, this._googleMapComponent);
triggerEvent(this._googleMapComponent, `resize`);
}
handleMapClick(event) {
let { markers } = this.state;
markers = update(markers, {
$push: [
{
position: event.latLng,
defaultAnimation: 2,
key: Date.now(),
},
],
});
this.setState({ markers });
if (markers.length === 3) {
this.props.toast(
`Right click on the marker to remove it`,
`Also check the code!`
);
}
}
handleMarkerRightclick(index, event) {
let { markers } = this.state;
markers = update(markers, {
$splice: [
[index, 1],
],
});
this.setState({ markers });
}
render() {
return (
<GoogleMapLoader
containerElement={
<div
{...this.props}
style={{
height: `100%`,
}}
/>
}
googleMapElement={
<GoogleMap
ref={(map) => (this._googleMapComponent = map) && console.log(map.getZoom())}
defaultZoom={3}
defaultCenter={{ lat: -25.363882, lng: 131.044922 }}
onClick={::this.handleMapClick}
>
{this.state.markers.map((marker, index) => {
return (
<Marker
{...marker}
onRightclick={this.handleMarkerRightclick.bind(this, index)}
/>
);
})}
</GoogleMap>
}
/>
);
}
}