UNPKG

@mapbox/react-map-gl

Version:

A React wrapper for MapboxGL-js and overlay API.

135 lines (114 loc) 3.8 kB
// @flow // Copyright (c) 2015 Uber Technologies, Inc. // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell // copies of the Software, and to permit persons to whom the Software is // furnished to do so, subject to the following conditions: // The above copyright notice and this permission notice shall be included in // all copies or substantial portions of the Software. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN // THE SOFTWARE. import {PureComponent, createElement, createRef} from 'react'; import PropTypes from 'prop-types'; import MapContext from './map-context'; import type {MjolnirEvent} from 'mjolnir.js'; const propTypes = { /** Event handling */ captureScroll: PropTypes.bool, // Stop map pan & rotate captureDrag: PropTypes.bool, // Stop map click captureClick: PropTypes.bool, // Stop map double click captureDoubleClick: PropTypes.bool }; const defaultProps = { captureScroll: false, captureDrag: true, captureClick: true, captureDoubleClick: true }; export type ControlProps = { captureScroll: boolean, captureDrag: boolean, captureClick: boolean, captureDoubleClick: boolean }; /* * PureComponent doesn't update when context changes. * The only way is to implement our own shouldComponentUpdate here. Considering * the parent component (StaticMap or InteractiveMap) is pure, and map re-render * is almost always triggered by a viewport change, we almost definitely need to * recalculate the marker's position when the parent re-renders. */ export default class BaseControl extends PureComponent<ControlProps> { static propTypes = propTypes; static defaultProps = defaultProps; componentDidMount() { const ref = this._containerRef.current; if (!ref) { return; } const {eventManager} = this._context; // Return early if no eventManager is found if (eventManager) { this._events = { wheel: this._onScroll, panstart: this._onDragStart, anyclick: this._onClick, click: this._onClick, dblclick: this._onDblClick }; eventManager.on(this._events, ref); } } componentWillUnmount() { const {eventManager} = this._context; if (eventManager && this._events) { eventManager.off(this._events); } } _context: any = {}; _events: any = null; _containerRef: {current: null | HTMLDivElement} = createRef(); _onScroll = (evt: MjolnirEvent) => { if (this.props.captureScroll) { evt.stopPropagation(); } } _onDragStart = (evt: MjolnirEvent) => { if (this.props.captureDrag) { evt.stopPropagation(); } } _onDblClick = (evt: MjolnirEvent) => { if (this.props.captureDoubleClick) { evt.stopPropagation(); } } _onClick = (evt: MjolnirEvent) => { if (this.props.captureClick) { evt.stopPropagation(); } } _render() { throw new Error('_render() not implemented'); } render() { return ( createElement(MapContext.Consumer, null, context => { this._context = context; return this._render(); } ) ); } }