viser-react
Version:
viser-react is react of viser.
83 lines • 3.19 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 (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 __assign = (this && this.__assign) || function () {
__assign = Object.assign || function(t) {
for (var s, i = 1, n = arguments.length; i < n; i++) {
s = arguments[i];
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
t[p] = s[p];
}
return t;
};
return __assign.apply(this, arguments);
};
import * as PropTypes from 'prop-types';
import * as React from 'react';
import * as viser from 'viser';
var PluginComponent = (function (_super) {
__extends(PluginComponent, _super);
function PluginComponent() {
var _this = _super !== null && _super.apply(this, arguments) || this;
_this.config = {};
_this.plugins = null;
_this.centralizedUpdates = function (unit) {
var config = _this.config;
var props = unit.props;
var displayName = unit.displayName;
if (displayName === 'Slider') {
var container = props.container;
if (!container || !document.getElementById(container)) {
props = __assign({}, props, { container: unit.state.containerId });
}
}
_this.combineContentConfig(displayName, props, config);
_this.updateSliderInstance(config);
};
_this.portalRef = function (container) {
if (!_this.container) {
_this.container = container;
}
};
return _this;
}
PluginComponent.prototype.getChildContext = function () {
return {
centralizedUpdates: this.centralizedUpdates
};
};
PluginComponent.prototype.combineContentConfig = function (displayName, props, config) {
var nameLowerCase = displayName.toLowerCase();
config[nameLowerCase] = props;
};
PluginComponent.prototype.updateSliderInstance = function (config) {
if (!this.plugins) {
this.plugins = viser.Plugin(config);
}
if (this.plugins && this.plugins.slider && config.slider) {
this.plugins = viser.Plugin(config);
}
};
PluginComponent.prototype.clearConfigData = function () {
this.config = {};
};
PluginComponent.prototype.render = function () {
return React.createElement("div", { ref: this.portalRef }, this.props.children);
};
PluginComponent.childContextTypes = {
centralizedUpdates: PropTypes.func
};
return PluginComponent;
}(React.Component));
export default PluginComponent;
//# sourceMappingURL=plugin.js.map