UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Office 365.

47 lines 2.62 kB
"use strict"; 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 TeachingBubble_1 = require("office-ui-fabric-react/lib/TeachingBubble"); var TeachingBubbleMultiStepExample = /** @class */ (function (_super) { tslib_1.__extends(TeachingBubbleMultiStepExample, _super); function TeachingBubbleMultiStepExample(props) { var _this = _super.call(this, props) || this; _this._onDismiss = _this._onDismiss.bind(_this); _this._onShow = _this._onShow.bind(_this); _this.state = { isTeachingBubbleVisible: false }; return _this; } TeachingBubbleMultiStepExample.prototype.render = function () { var _this = this; var isTeachingBubbleVisible = this.state.isTeachingBubbleVisible; var exampleSecondaryButtonProps = { children: 'Previous', onClick: this._onDismiss }; var examplePrimaryButton = { children: 'Next' }; return (React.createElement("div", { className: "ms-TeachingBubbleExample" }, React.createElement("span", { className: "ms-TeachingBubbleMultiStepExample-buttonArea", ref: function (menuButton) { return (_this._menuButtonElement = menuButton); } }, React.createElement(Button_1.DefaultButton, { onClick: isTeachingBubbleVisible ? this._onDismiss : this._onShow, text: isTeachingBubbleVisible ? 'Hide TeachingBubble' : 'Show TeachingBubble' })), isTeachingBubbleVisible ? (React.createElement("div", null, React.createElement(TeachingBubble_1.TeachingBubble, { target: this._menuButtonElement, secondaryButtonProps: exampleSecondaryButtonProps, primaryButtonProps: examplePrimaryButton, onDismiss: this._onDismiss, footerContent: "2 of 3", headline: "Discover what\u2019s trending around you" }, "Lorem ipsum dolor sit amet, consectetur adipisicing elit. Facere, nulla, ipsum? Molestiae quis aliquam magni harum non?"))) : null)); }; TeachingBubbleMultiStepExample.prototype._onDismiss = function (ev) { this.setState({ isTeachingBubbleVisible: false }); }; TeachingBubbleMultiStepExample.prototype._onShow = function (ev) { this.setState({ isTeachingBubbleVisible: true }); }; return TeachingBubbleMultiStepExample; }(React.Component)); exports.TeachingBubbleMultiStepExample = TeachingBubbleMultiStepExample; //# sourceMappingURL=TeachingBubble.MultiStep.Example.js.map