UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Office 365.

86 lines 5.92 kB
define(["require", "exports", "tslib", "react", "office-ui-fabric-react/lib/Button", "office-ui-fabric-react/lib/Callout", "office-ui-fabric-react/lib/Dropdown", "office-ui-fabric-react/lib/Checkbox", "office-ui-fabric-react/lib/Slider", "../../../common/_exampleStyles.scss", "./CalloutExample.scss"], function (require, exports, tslib_1, React, Button_1, Callout_1, Dropdown_1, Checkbox_1, Slider_1, exampleStylesImport) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var exampleStyles = exampleStylesImport; var DIRECTION_OPTIONS = [ { key: 0 /* topLeftEdge */, text: 'Top Left Edge' }, { key: 1 /* topCenter */, text: 'Top Center' }, { key: 2 /* topRightEdge */, text: 'Top Right Edge' }, { key: 3 /* topAutoEdge */, text: 'Top Auto Edge' }, { key: 4 /* bottomLeftEdge */, text: 'Bottom Left Edge' }, { key: 5 /* bottomCenter */, text: 'Bottom Center' }, { key: 6 /* bottomRightEdge */, text: 'Bottom Right Edge' }, { key: 7 /* bottomAutoEdge */, text: 'Bottom Auto Edge' }, { key: 8 /* leftTopEdge */, text: 'Left Top Edge' }, { key: 9 /* leftCenter */, text: 'Left Center' }, { key: 10 /* leftBottomEdge */, text: 'Left Bottom Edge' }, { key: 11 /* rightTopEdge */, text: 'Right Top Edge' }, { key: 12 /* rightCenter */, text: 'Right Center' }, { key: 13 /* rightBottomEdge */, text: 'Right Bottom Edge' } ]; var CalloutDirectionalExample = /** @class */ (function (_super) { tslib_1.__extends(CalloutDirectionalExample, _super); function CalloutDirectionalExample(props) { var _this = _super.call(this, props) || this; _this._onCalloutDismiss = function () { _this.setState({ isCalloutVisible: false }); }; _this._onShowMenuClicked = function () { _this.setState({ isCalloutVisible: !_this.state.isCalloutVisible }); }; _this._onShowBeakChange = function (ev, isVisible) { _this.setState({ isBeakVisible: isVisible, beakWidth: 10 }); }; _this._onDirectionalChanged = function (event, option) { _this.setState({ directionalHint: option.key }); }; _this._onGapSlider = function (value) { _this.setState({ gapSpace: value }); }; _this._onBeakWidthSlider = function (value) { _this.setState({ beakWidth: value }); }; _this.state = { isCalloutVisible: false, isBeakVisible: true, directionalHint: 4 /* bottomLeftEdge */ }; return _this; } CalloutDirectionalExample.prototype.render = function () { var _this = this; var _a = this.state, isCalloutVisible = _a.isCalloutVisible, isBeakVisible = _a.isBeakVisible, directionalHint = _a.directionalHint, gapSpace = _a.gapSpace, beakWidth = _a.beakWidth; // ms-Callout-smallbeak is used in this directional example to reflect all the positions. Large beak will disable some position to avoid beak over the callout edge. return (React.createElement("div", { className: "ms-CalloutExample" }, React.createElement("div", { className: "ms-CalloutExample-configArea" }, React.createElement(Checkbox_1.Checkbox, { className: exampleStyles.exampleCheckbox, label: "Show beak", checked: isBeakVisible, onChange: this._onShowBeakChange }), React.createElement(Slider_1.Slider, { max: 30, label: "Gap Space", min: 0, defaultValue: 0, onChange: this._onGapSlider }), isBeakVisible && (React.createElement(Slider_1.Slider, { max: 50, label: "Beak Width", min: 10, defaultValue: 16, onChange: this._onBeakWidthSlider })), React.createElement(Dropdown_1.Dropdown, { label: "Directional hint", selectedKey: directionalHint, options: DIRECTION_OPTIONS, onChange: this._onDirectionalChanged })), React.createElement("div", { className: "ms-CalloutExample-buttonArea", ref: function (menuButton) { return (_this._menuButtonElement = menuButton); } }, React.createElement(Button_1.DefaultButton, { className: 'calloutExampleButton', onClick: this._onShowMenuClicked, text: isCalloutVisible ? 'Hide callout' : 'Show callout' })), isCalloutVisible ? (React.createElement(Callout_1.Callout, { className: "ms-CalloutExample-callout", gapSpace: gapSpace, target: this._menuButtonElement, isBeakVisible: isBeakVisible, beakWidth: beakWidth, onDismiss: this._onCalloutDismiss, directionalHint: directionalHint }, React.createElement("div", { className: "ms-CalloutExample-header" }, React.createElement("p", { className: "ms-CalloutExample-title" }, "All of your favorite people")), React.createElement("div", { className: "ms-CalloutExample-inner" }, React.createElement("div", { className: "ms-CalloutExample-content" }, React.createElement("p", { className: "ms-CalloutExample-subText" }, "Message body is optional. If help documentation is available, consider adding a link to learn more at the bottom."))))) : null)); }; return CalloutDirectionalExample; }(React.Component)); exports.CalloutDirectionalExample = CalloutDirectionalExample; }); //# sourceMappingURL=Callout.Directional.Example.js.map