UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Office 365.

35 lines 2.06 kB
define(["require", "exports", "tslib", "react", "office-ui-fabric-react/lib/Utilities", "office-ui-fabric-react/lib/Button", "office-ui-fabric-react/lib/Overlay", "./Overlay.Example.scss"], function (require, exports, tslib_1, React, Utilities_1, Button_1, Overlay_1) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var OverlayDarkExample = /** @class */ (function (_super) { tslib_1.__extends(OverlayDarkExample, _super); function OverlayDarkExample(props) { var _this = _super.call(this, props) || this; _this.state = { isOverlayVisible: false }; return _this; } OverlayDarkExample.prototype.render = function () { var isOverlayVisible = this.state.isOverlayVisible; return (React.createElement("div", null, React.createElement(Button_1.DefaultButton, { onClick: this._toggleOverlay, text: 'Show the overlay' }), isOverlayVisible && (React.createElement(Overlay_1.Overlay, { isDarkThemed: true, onClick: this._setVisibilityFalse }, React.createElement("div", { className: 'OverlayExample-content' }, React.createElement("p", null, "I am content within the overlay.")))))); }; OverlayDarkExample.prototype._setVisibilityFalse = function () { this.setState({ isOverlayVisible: false }); }; OverlayDarkExample.prototype._toggleOverlay = function () { this.setState({ isOverlayVisible: !this.state.isOverlayVisible }); }; tslib_1.__decorate([ Utilities_1.autobind ], OverlayDarkExample.prototype, "_setVisibilityFalse", null); tslib_1.__decorate([ Utilities_1.autobind ], OverlayDarkExample.prototype, "_toggleOverlay", null); return OverlayDarkExample; }(React.Component)); exports.OverlayDarkExample = OverlayDarkExample; }); //# sourceMappingURL=Overlay.Dark.Example.js.map