office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
34 lines • 1.53 kB
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
var tslib_1 = require("tslib");
var React = require("react");
var Button_1 = require("office-ui-fabric-react/lib/Button");
var Overlay_1 = require("office-ui-fabric-react/lib/Overlay");
require("./Overlay.Example.scss");
var OverlayLightExample = (function (_super) {
tslib_1.__extends(OverlayLightExample, _super);
function OverlayLightExample() {
var _this = _super.call(this) || this;
_this._onClick = _this._onClick.bind(_this);
_this.state = {
isOverlayVisible: false
};
return _this;
}
OverlayLightExample.prototype.render = function () {
var isOverlayVisible = this.state.isOverlayVisible;
return (React.createElement("div", null,
React.createElement(Button_1.DefaultButton, { onClick: this._onClick }, "Show the overlay"),
isOverlayVisible && (React.createElement(Overlay_1.Overlay, { onClick: this._onClick },
React.createElement("div", { className: 'OverlayExample-content' },
React.createElement("p", null, "I am content within the overlay."))))));
};
OverlayLightExample.prototype._onClick = function () {
this.setState({
isOverlayVisible: !this.state.isOverlayVisible
});
};
return OverlayLightExample;
}(React.Component));
exports.OverlayLightExample = OverlayLightExample;
//# sourceMappingURL=Overlay.Light.Example.js.map
;