office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
32 lines • 1.45 kB
JavaScript
import * as tslib_1 from "tslib";
import * as React from 'react';
import { DefaultButton } from 'office-ui-fabric-react/lib/Button';
import { Overlay } from 'office-ui-fabric-react/lib/Overlay';
import './Overlay.Example.scss';
var OverlayLightExample = /** @class */ (function (_super) {
tslib_1.__extends(OverlayLightExample, _super);
function OverlayLightExample(props) {
var _this = _super.call(this, props) || 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(DefaultButton, { onClick: this._onClick }, "Show the overlay"),
isOverlayVisible && (React.createElement(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));
export { OverlayLightExample };
//# sourceMappingURL=Overlay.Light.Example.js.map