office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
112 lines • 6.15 kB
JavaScript
"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 Checkbox_1 = require("office-ui-fabric-react/lib/Checkbox");
var ContextualMenu_1 = require("office-ui-fabric-react/lib/ContextualMenu");
var Dropdown_1 = require("office-ui-fabric-react/lib/Dropdown");
var Utilities_1 = require("office-ui-fabric-react/lib/Utilities");
require("./ContextualMenuExample.scss");
var exampleStylesImport = require("../../../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_1.Checkbox, { className: exampleStyles.exampleCheckbox, label: "Show beak", checked: isBeakVisible, onChange: this._onShowBeakChange }),
React.createElement(Dropdown_1.Dropdown, { label: "Directional hint", selectedKey: directionalHint, options: DIRECTION_OPTIONS, onChange: this._onDirectionalChanged }),
Utilities_1.getRTL() && (React.createElement(Checkbox_1.Checkbox, { label: "Use RTL directional hint", checked: useDirectionalHintForRtl, onChange: this._onUseRtlHintChange })),
Utilities_1.getRTL() && (React.createElement(Dropdown_1.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(Button_1.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: ContextualMenu_1.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));
exports.ContextualMenuDirectionalExample = ContextualMenuDirectionalExample;
//# sourceMappingURL=ContextualMenu.Directional.Example.js.map