UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Office 365.

110 lines 5.95 kB
import * as tslib_1 from "tslib"; import * as React from 'react'; import { DefaultButton } from 'office-ui-fabric-react/lib/Button'; import { Checkbox } from 'office-ui-fabric-react/lib/Checkbox'; import { ContextualMenuItemType } from 'office-ui-fabric-react/lib/ContextualMenu'; import { Dropdown } from 'office-ui-fabric-react/lib/Dropdown'; import { getRTL } from 'office-ui-fabric-react/lib/Utilities'; import './ContextualMenuExample.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 ContextualMenuDirectionalExample = /** @class */ (function (_super) { tslib_1.__extends(ContextualMenuDirectionalExample, _super); function ContextualMenuDirectionalExample(props) { var _this = _super.call(this, props) || this; _this._onShowBeakChange = function (event, isVisible) { _this.setState({ isBeakVisible: isVisible }); }; _this._onUseRtlHintChange = function (event, isVisible) { _this.setState({ useDirectionalHintForRtl: isVisible }); }; _this._onDirectionalChanged = function (event, option) { _this.setState({ directionalHint: option.key }); }; _this._onDirectionalRtlChanged = function (event, option) { _this.setState({ directionalHintForRTL: option.key }); }; _this.state = { isBeakVisible: false, directionalHint: 4 /* bottomLeftEdge */, directionalHintForRTL: 4 /* bottomLeftEdge */, useDirectionalHintForRtl: false, gapSpace: 0, beakWidth: 20, edgeFixed: false }; return _this; } ContextualMenuDirectionalExample.prototype.render = function () { var _a = this.state, beakWidth = _a.beakWidth, directionalHint = _a.directionalHint, directionalHintForRTL = _a.directionalHintForRTL, edgeFixed = _a.edgeFixed, gapSpace = _a.gapSpace, isBeakVisible = _a.isBeakVisible, useDirectionalHintForRtl = _a.useDirectionalHintForRtl; return (React.createElement("div", { className: "ms-ContextualMenuDirectionalExample" }, React.createElement("div", { className: "ms-ContextualMenuDirectionalExample-configArea" }, React.createElement(Checkbox, { className: exampleStyles.exampleCheckbox, label: "Show beak", checked: isBeakVisible, onChange: this._onShowBeakChange }), React.createElement(Dropdown, { label: "Directional hint", selectedKey: directionalHint, options: DIRECTION_OPTIONS, onChange: this._onDirectionalChanged }), getRTL() && (React.createElement(Checkbox, { label: "Use RTL directional hint", checked: useDirectionalHintForRtl, onChange: this._onUseRtlHintChange })), getRTL() && (React.createElement(Dropdown, { label: "Directional hint for RTL", selectedKey: directionalHintForRTL, options: DIRECTION_OPTIONS, onChange: this._onDirectionalRtlChanged, disabled: !useDirectionalHintForRtl }))), React.createElement("div", { className: "ms-ContextualMenuDirectionalExample-buttonArea" }, React.createElement(DefaultButton, { text: "Show context menu", menuProps: { isBeakVisible: isBeakVisible, directionalHint: directionalHint, directionalHintForRTL: useDirectionalHintForRtl ? directionalHintForRTL : undefined, gapSpace: gapSpace, beakWidth: beakWidth, directionalHintFixed: edgeFixed, items: [ { key: 'newItem', text: 'New' }, { key: 'divider_1', itemType: ContextualMenuItemType.Divider }, { key: 'rename', text: 'Rename' }, { key: 'edit', text: 'Edit' }, { key: 'properties', text: 'Properties' }, { key: 'disabled', text: 'Disabled item', disabled: true } ] } })))); }; return ContextualMenuDirectionalExample; }(React.Component)); export { ContextualMenuDirectionalExample }; //# sourceMappingURL=ContextualMenu.Directional.Example.js.map