Skip to content

Commit

Permalink
feat(Polyline): revamp with jscodeshift
Browse files Browse the repository at this point in the history
  • Loading branch information
tomchentw committed Sep 13, 2017
1 parent a015b95 commit 2ff6313
Show file tree
Hide file tree
Showing 2 changed files with 85 additions and 132 deletions.
132 changes: 0 additions & 132 deletions src/lib/Polyline.js

This file was deleted.

85 changes: 85 additions & 0 deletions src/macros/Polyline.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
/* global google */
import React from "react"
import PropTypes from "prop-types"

import {
construct,
componentDidMount,
componentDidUpdate,
componentWillUnmount,
} from "../utils/MapChildHelper"

import { MAP, POLYLINE } from "../constants"

export const __jscodeshiftPlaceholder__ = `{
"eventMapOverrides": {
"onDblClick": "dblclick",
"onDragEnd": "dragend",
"onDragStart": "dragstart",
"onMouseDown": "mousedown",
"onMouseMove": "mousemove",
"onMouseOut": "mouseout",
"onMouseOver": "mouseover",
"onMouseUp": "mouseup",
"onRightClick": "rightclick"
},
"getInstanceFromComponent": "this.state[POLYLINE]"
}`

/**
* @url https://developers.google.com/maps/documentation/javascript/3.exp/reference#Polyline
*/
export class Polyline extends React.PureComponent {
static propTypes = {
__jscodeshiftPlaceholder__: null,
}

static contextTypes = {
[MAP]: PropTypes.object,
}

/*
* @url https://developers.google.com/maps/documentation/javascript/3.exp/reference#Polyline
*/
constructor(props, context) {
super(props, context)
const polyline = new google.maps.Polyline()
construct(Polyline.propTypes, updaterMap, this.props, polyline)
polyline.setMap(this.context[MAP])
this.state = {
[POLYLINE]: polyline,
}
}

componentDidMount() {
componentDidMount(this, this.state[POLYLINE], eventMap)
}

componentDidUpdate(prevProps) {
componentDidUpdate(
this,
this.state[POLYLINE],
eventMap,
updaterMap,
prevProps
)
}

componentWillUnmount() {
componentWillUnmount(this)
const polyline = this.state[POLYLINE]
if (polyline) {
polyline.setMap(null)
}
}

render() {
return false
}
}

export default Polyline

const eventMap = {}

const updaterMap = {}

0 comments on commit 2ff6313

Please sign in to comment.