UNPKG

react-mapbox-gl

Version:
83 lines 2.9 kB
"use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { extendStatics = Object.setPrototypeOf || ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; }; return extendStatics(d, b); } return function (d, b) { extendStatics(d, b); function __() { this.constructor = d; } d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); }; })(); var __importStar = (this && this.__importStar) || function (mod) { if (mod && mod.__esModule) return mod; var result = {}; if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k]; result["default"] = mod; return result; }; Object.defineProperty(exports, "__esModule", { value: true }); var React = __importStar(require("react")); var context_1 = require("./context"); var Image = (function (_super) { __extends(Image, _super); function Image() { return _super !== null && _super.apply(this, arguments) || this; } Image.prototype.componentDidMount = function () { this.loadImage(this.props); }; Image.prototype.componentWillUnmount = function () { Image.removeImage(this.props); }; Image.prototype.componentDidUpdate = function (prevProps) { var id = prevProps.id; if (prevProps.map !== this.props.map) { Image.removeImage(this.props); } if (this.props.map && !this.props.map.hasImage(id)) { this.loadImage(this.props); } }; Image.prototype.render = function () { return null; }; Image.prototype.loadImage = function (props) { var _this = this; var map = props.map, id = props.id, url = props.url, data = props.data, options = props.options, onError = props.onError; if (data) { map.addImage(id, data, options); this.loaded(); } else if (url) { map.loadImage(url, function (error, image) { if (error) { if (onError) { onError(error); } return; } map.addImage(id, image, options); _this.loaded(); }); } }; Image.removeImage = function (props) { var id = props.id, map = props.map; if (map && map.getStyle()) { map.removeImage(id); } }; Image.prototype.loaded = function () { var onLoaded = this.props.onLoaded; if (onLoaded) { onLoaded(); } }; return Image; }(React.Component)); exports.default = context_1.withMap(Image); //# sourceMappingURL=image.js.map