@@ -60,10 +60,6 @@ const updaterMap = {
60
60
} ,
61
61
}
62
62
63
- interface PolygonState {
64
- polygon : google . maps . Polygon | null
65
- }
66
-
67
63
export interface PolygonProps {
68
64
options ?: google . maps . PolygonOptions | undefined
69
65
/** 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({
494
490
495
491
export const PolygonF = memo ( PolygonFunctional )
496
492
497
- export class Polygon extends PureComponent < PolygonProps , PolygonState > {
493
+ export class Polygon extends PureComponent < PolygonProps > {
498
494
static override contextType = MapContext
499
495
declare context : ContextType < typeof MapContext >
500
496
501
497
registeredEvents : google . maps . MapsEventListener [ ] = [ ]
502
498
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
512
500
513
501
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 )
518
507
519
508
this . registeredEvents = applyUpdatersToPropsAndRegisterEvents ( {
520
509
updaterMap,
521
510
eventMap,
522
511
prevProps : { } ,
523
512
nextProps : this . props ,
524
- instance : polygon ,
513
+ instance : this . polygon ,
525
514
} )
526
515
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
+ }
532
519
}
533
520
534
521
override componentDidUpdate ( prevProps : PolygonProps ) : void {
535
- if ( this . state . polygon !== null ) {
522
+ if ( this . polygon ) {
536
523
unregisterEvents ( this . registeredEvents )
537
524
538
525
this . registeredEvents = applyUpdatersToPropsAndRegisterEvents ( {
539
526
updaterMap,
540
527
eventMap,
541
528
prevProps,
542
529
nextProps : this . props ,
543
- instance : this . state . polygon ,
530
+ instance : this . polygon ,
544
531
} )
545
532
}
546
533
}
547
534
548
535
override componentWillUnmount ( ) : void {
549
- if ( this . state . polygon !== null ) {
536
+ if ( this . polygon ) {
550
537
if ( this . props . onUnmount ) {
551
- this . props . onUnmount ( this . state . polygon )
538
+ this . props . onUnmount ( this . polygon )
552
539
}
553
540
554
541
unregisterEvents ( this . registeredEvents )
555
542
556
- this . state . polygon && this . state . polygon . setMap ( null )
543
+ this . polygon && this . polygon . setMap ( null )
557
544
}
558
545
}
559
546
0 commit comments