aem-react-js
Version:
AEM components written in React.
63 lines • 2.47 kB
JavaScript
;
var __extends = (this && this.__extends) || (function () {
var 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 function (d, b) {
extendStatics(d, b);
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
})();
Object.defineProperty(exports, "__esModule", { value: true });
var React = require("react");
var AemComponent_1 = require("./AemComponent");
function createAuthorElement(dialog) {
if (!dialog) {
return null;
}
var attributes = {};
if (!!dialog.attributes) {
Object.keys(dialog.attributes).forEach(function (key) {
attributes[key] = dialog.attributes[key];
});
}
if (dialog.html) {
attributes.dangerouslySetInnerHTML = { __html: dialog.html };
}
return React.createElement(dialog.element, attributes);
}
var EditDialog = (function (_super) {
__extends(EditDialog, _super);
function EditDialog() {
return _super !== null && _super.apply(this, arguments) || this;
}
EditDialog.prototype.render = function () {
var dialog = this.getContainer().sling.renderDialogScript(this.props.path, this.props.resourceType);
if (dialog) {
return this.createWrapperElement(dialog);
}
else {
return this.props.children;
}
};
EditDialog.prototype.createWrapperElement = function (dialog) {
var attributes = {};
if (dialog.attributes) {
Object.keys(dialog.attributes).forEach(function (key) { return (attributes[key] = dialog.attributes[key]); });
if (this.props.className) {
if (typeof attributes.className !== 'undefined' &&
attributes.className !== null) {
attributes.className += ' ' + this.props.className;
}
else {
attributes.className = this.props.className;
}
}
}
return React.createElement(dialog.element, attributes, this.props.children, createAuthorElement(dialog.child));
};
return EditDialog;
}(AemComponent_1.AemComponent));
exports.EditDialog = EditDialog;
//# sourceMappingURL=EditDialog.js.map