rlayers
Version:
React Components for OpenLayers
104 lines • 4.34 kB
JavaScript
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 (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
return extendStatics(d, b);
};
return function (d, b) {
if (typeof b !== "function" && b !== null)
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
extendStatics(d, b);
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
})();
var __values = (this && this.__values) || function(o) {
var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0;
if (m) return m.call(o);
if (o && typeof o.length === "number") return {
next: function () {
if (o && i >= o.length) o = void 0;
return { value: o && o[i++], done: !o };
}
};
throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined.");
};
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
var react_1 = __importDefault(require("react"));
var context_1 = require("../context");
var debug_1 = __importDefault(require("../debug"));
/**
* An abstract class used as base for all Style components, not meant to be used directly
*/
var RBaseStyle = /** @class */ (function (_super) {
__extends(RBaseStyle, _super);
function RBaseStyle(props, context) {
var _this = _super.call(this, props, context) || this;
if (!_this.context)
throw new Error('A style property must be part of a style');
_this.ol = _this.create(props);
return _this;
}
/* istanbul ignore next */
RBaseStyle.prototype.create = function (props) {
throw new Error('RBaseStyle is an abstract class');
};
RBaseStyle.prototype.refresh = function (prevProps) {
var e_1, _a;
(0, debug_1.default)('refreshStyle', this);
if (!prevProps)
return;
try {
for (var _b = __values(this.classProps), _c = _b.next(); !_c.done; _c = _b.next()) {
var p = _c.value;
var m = p.charAt(0).toUpperCase() + p.substring(1);
if ((prevProps && prevProps[p]) !== this.props[p]) {
if (this.ol['set' + m]) {
this.ol['set' + m](this.props[p]);
}
else {
// eslint-disable-next-line no-console
console.error("Underlying OpenLayers object does not support updating of ".concat(p, " after object creation. ") +
'If you are using an anonymous constant array or object, ' +
'consider assigning its value to a constant and then passing the constant or ' +
'use React.useMemo() to avoid this warning and improve performance.');
}
}
}
}
catch (e_1_1) { e_1 = { error: e_1_1 }; }
finally {
try {
if (_c && !_c.done && (_a = _b.return)) _a.call(_b);
}
finally { if (e_1) throw e_1.error; }
}
};
/* istanbul ignore next */
RBaseStyle.prototype.set = function (ol) {
return;
};
RBaseStyle.prototype.componentDidMount = function () {
this.set(this.ol);
};
RBaseStyle.prototype.componentDidUpdate = function (prevProps, prevState, snapshot) {
if (prevProps !== this.props)
this.refresh(prevProps);
};
RBaseStyle.prototype.componentWillUnmount = function () {
this.set(null);
};
RBaseStyle.prototype.render = function () {
return null;
};
RBaseStyle.contextType = context_1.RContext;
RBaseStyle.classProps = [];
return RBaseStyle;
}(react_1.default.PureComponent));
exports.default = RBaseStyle;
//# sourceMappingURL=RBaseStyle.js.map
;