Skip to content

Commit fe63636

Browse files
authored
Merge pull request #3375 from brandensilva/fix-polygons-not-tearing-down
fix: alter state to allow polygon to tear down on unmount, setMap reference on polygon
2 parents 31fd3db + d9bbc62 commit fe63636

File tree

1 file changed

+16
-29
lines changed
  • packages/react-google-maps-api/src/components/drawing

1 file changed

+16
-29
lines changed

packages/react-google-maps-api/src/components/drawing/Polygon.tsx

+16-29
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,6 @@ const updaterMap = {
6060
},
6161
}
6262

63-
interface PolygonState {
64-
polygon: google.maps.Polygon | null
65-
}
66-
6763
export interface PolygonProps {
6864
options?: google.maps.PolygonOptions | undefined
6965
/** If set to true, the user can drag this shape over the map. The geodesic property defines the mode of dragging. */
@@ -494,66 +490,57 @@ function PolygonFunctional({
494490

495491
export const PolygonF = memo(PolygonFunctional)
496492

497-
export class Polygon extends PureComponent<PolygonProps, PolygonState> {
493+
export class Polygon extends PureComponent<PolygonProps> {
498494
static override contextType = MapContext
499495
declare context: ContextType<typeof MapContext>
500496

501497
registeredEvents: google.maps.MapsEventListener[] = []
502498

503-
override state: PolygonState = {
504-
polygon: null,
505-
}
506-
507-
setPolygonCallback = (): void => {
508-
if (this.state.polygon !== null && this.props.onLoad) {
509-
this.props.onLoad(this.state.polygon)
510-
}
511-
}
499+
polygon: google.maps.Polygon | undefined
512500

513501
override componentDidMount(): void {
514-
const polygon = new google.maps.Polygon({
515-
...(this.props.options || {}),
516-
map: this.context,
517-
})
502+
const polygonOptions = this.props.options || {}
503+
504+
this.polygon = new google.maps.Polygon(polygonOptions)
505+
506+
this.polygon.setMap(this.context)
518507

519508
this.registeredEvents = applyUpdatersToPropsAndRegisterEvents({
520509
updaterMap,
521510
eventMap,
522511
prevProps: {},
523512
nextProps: this.props,
524-
instance: polygon,
513+
instance: this.polygon,
525514
})
526515

527-
this.setState(function setPolygon() {
528-
return {
529-
polygon,
530-
}
531-
}, this.setPolygonCallback)
516+
if (this.props.onLoad) {
517+
this.props.onLoad(this.polygon)
518+
}
532519
}
533520

534521
override componentDidUpdate(prevProps: PolygonProps): void {
535-
if (this.state.polygon !== null) {
522+
if (this.polygon) {
536523
unregisterEvents(this.registeredEvents)
537524

538525
this.registeredEvents = applyUpdatersToPropsAndRegisterEvents({
539526
updaterMap,
540527
eventMap,
541528
prevProps,
542529
nextProps: this.props,
543-
instance: this.state.polygon,
530+
instance: this.polygon,
544531
})
545532
}
546533
}
547534

548535
override componentWillUnmount(): void {
549-
if (this.state.polygon !== null) {
536+
if (this.polygon) {
550537
if (this.props.onUnmount) {
551-
this.props.onUnmount(this.state.polygon)
538+
this.props.onUnmount(this.polygon)
552539
}
553540

554541
unregisterEvents(this.registeredEvents)
555542

556-
this.state.polygon && this.state.polygon.setMap(null)
543+
this.polygon && this.polygon.setMap(null)
557544
}
558545
}
559546

0 commit comments

Comments
 (0)