Skip to content

Commit

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

This file was deleted.

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

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

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

export const __jscodeshiftPlaceholder__ = `{
"eventMapOverrides": {
},
"getInstanceFromComponent": "this.state[FUSION_TABLES_LAYER]"
}`

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

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

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

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

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

componentWillUnmount() {
componentWillUnmount(this)
const fusionTablesLayer = this.state[FUSION_TABLES_LAYER]
if (fusionTablesLayer) {
fusionTablesLayer.setMap(null)
}
}

render() {
return false
}
}

export default FusionTablesLayer

const eventMap = {}

const updaterMap = {}

0 comments on commit a5865a0

Please sign in to comment.