office-ui-fabric-react
Version: 
Reusable React components for building experiences for Office 365.
27 lines (25 loc) • 1.16 kB
JavaScript
define(["require", "exports", "tslib", "react", "../../Utilities", "./Layer"], function (require, exports, tslib_1, React, Utilities_1, Layer_1) {
    "use strict";
    Object.defineProperty(exports, "__esModule", { value: true });
    var LayerHost = (function (_super) {
        tslib_1.__extends(LayerHost, _super);
        function LayerHost() {
            return _super !== null && _super.apply(this, arguments) || this;
        }
        LayerHost.prototype.shouldComponentUpdate = function () {
            return false;
        };
        LayerHost.prototype.componentDidMount = function () {
            Layer_1.Layer.notifyHostChanged(this.props.id);
        };
        LayerHost.prototype.componentWillUnmount = function () {
            Layer_1.Layer.notifyHostChanged(this.props.id);
        };
        LayerHost.prototype.render = function () {
            return (React.createElement("div", tslib_1.__assign({}, this.props, { className: Utilities_1.css('ms-LayerHost', this.props.className) })));
        };
        return LayerHost;
    }(Utilities_1.BaseComponent));
    exports.LayerHost = LayerHost;
});
//# sourceMappingURL=LayerHost.js.map