office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
91 lines • 5.49 kB
JavaScript
import * as tslib_1 from "tslib";
import * as React from 'react';
import { DefaultButton } from 'office-ui-fabric-react/lib/Button';
import { Callout } from 'office-ui-fabric-react/lib/Callout';
import { Dropdown } from 'office-ui-fabric-react/lib/Dropdown';
import { Checkbox } from 'office-ui-fabric-react/lib/Checkbox';
import { Slider } from 'office-ui-fabric-react/lib/Slider';
import './CalloutExample.scss';
import * as exampleStylesImport from '../../../common/_exampleStyles.scss';
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, { className: exampleStyles.exampleCheckbox, label: "Show beak", checked: isBeakVisible, onChange: this._onShowBeakChange }),
React.createElement(Slider, { max: 30, label: "Gap Space", min: 0, defaultValue: 0, onChange: this._onGapSlider }),
isBeakVisible && (React.createElement(Slider, { max: 50, label: "Beak Width", min: 10, defaultValue: 16, onChange: this._onBeakWidthSlider })),
React.createElement(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(DefaultButton, { className: 'calloutExampleButton', onClick: this._onShowMenuClicked, text: isCalloutVisible ? 'Hide callout' : 'Show callout' })),
isCalloutVisible ? (React.createElement(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));
export { CalloutDirectionalExample };
//# sourceMappingURL=Callout.Directional.Example.js.map