UNPKG

@mapbox/react-map-gl

Version:

A React wrapper for MapboxGL-js and overlay API.

38 lines (33 loc) 1.13 kB
// @flow // 'new' is optional const DEPRECATED_PROPS = [ {old: 'onChangeViewport', new: 'onViewportChange'}, {old: 'perspectiveEnabled', new: 'dragRotate'}, {old: 'onHoverFeatures', new: 'onHover'}, {old: 'onClickFeatures', new: 'onClick'}, {old: 'touchZoomRotate', new: 'touchZoom, touchRotate'}, {old: 'mapControls', new: 'controller'} ]; function getDeprecatedText(name : string) : string { return `react-map-gl: \`${name}\` is removed.`; } function getNewText(name : string) : string { return `Use \`${name}\` instead.`; } /** * Checks props object for any prop that is deprecated and insert a console * warning to the user. This will also print out the recommended new prop/API * if one exists. */ export default function checkDeprecatedProps(props: any = {}) { /* eslint-disable no-console, no-undef */ DEPRECATED_PROPS.forEach((depProp) => { if (props.hasOwnProperty(depProp.old)) { let warnMessage = getDeprecatedText(depProp.old); if (depProp.new) { warnMessage = `${warnMessage} ${getNewText(depProp.new)}`; } console.warn(warnMessage); } }); }