1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71 |
1
3
1
3
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1 | 'use strict';
Object.defineProperty(exports, '__esModule', {
value: true
});
var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; Eif ('value' in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { Eif (protoProps) defineProperties(Constructor.prototype, protoProps); Iif (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })();
var _get = function get(_x, _x2, _x3) { var _again = true; _function: while (_again) { var object = _x, property = _x2, receiver = _x3; desc = parent = getter = undefined; _again = false; var desc = Object.getOwnPropertyDescriptor(object, property); Iif (desc === undefined) { var parent = Object.getPrototypeOf(object); if (parent === null) { return undefined; } else { _x = parent; _x2 = property; _x3 = receiver; _again = true; continue _function; } } else Eif ('value' in desc) { return desc.value; } else { var getter = desc.get; if (getter === undefined) { return undefined; } return getter.call(receiver); } } };
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
function _classCallCheck(instance, Constructor) { Iif (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } }
function _inherits(subClass, superClass) { Iif (typeof superClass !== 'function' && superClass !== null) { throw new TypeError('Super expression must either be null or a function, not ' + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); Eif (superClass) subClass.__proto__ = superClass; }
var _lodashObjectAssign = require('lodash/object/assign');
var _lodashObjectAssign2 = _interopRequireDefault(_lodashObjectAssign);
var _react = require('react');
var _react2 = _interopRequireDefault(_react);
var _MapComponent2 = require('./MapComponent');
var _MapComponent3 = _interopRequireDefault(_MapComponent2);
var MapLayer = (function (_MapComponent) {
function MapLayer() {
_classCallCheck(this, MapLayer);
Eif (_MapComponent != null) {
_MapComponent.apply(this, arguments);
}
}
_inherits(MapLayer, _MapComponent);
_createClass(MapLayer, [{
key: 'componentDidMount',
value: function componentDidMount() {
_get(Object.getPrototypeOf(MapLayer.prototype), 'componentDidMount', this).call(this);
this.props.map.addLayer(this.leafletElement);
}
}, {
key: 'componentWillUnmount',
value: function componentWillUnmount() {
_get(Object.getPrototypeOf(MapLayer.prototype), 'componentWillUnmount', this).call(this);
this.props.map.removeLayer(this.leafletElement);
}
}, {
key: 'getClonedChildrenWithMap',
value: function getClonedChildrenWithMap(extra) {
var _props = this.props;
var children = _props.children;
var map = _props.map;
var props = (0, _lodashObjectAssign2['default'])({ map: map }, extra);
return _react2['default'].Children.map(children, function (child) {
return child ? _react2['default'].cloneElement(child, props) : null;
});
}
}]);
return MapLayer;
})(_MapComponent3['default']);
exports['default'] = MapLayer;
module.exports = exports['default']; |