UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Office 365.

122 lines 6.13 kB
import * as tslib_1 from "tslib"; import * as React from 'react'; import { DefaultButton } from 'office-ui-fabric-react/lib/Button'; import { TextField } from 'office-ui-fabric-react/lib/TextField'; import './ContextualMenuExample.scss'; var ContextualMenuSubmenuExample = /** @class */ (function (_super) { tslib_1.__extends(ContextualMenuSubmenuExample, _super); function ContextualMenuSubmenuExample(props) { var _this = _super.call(this, props) || this; _this._onHoverDelayChanged = function (newValue) { _this.setState({ hoverDelay: +newValue }); }; _this.state = { hoverDelay: 250 }; return _this; } ContextualMenuSubmenuExample.prototype.render = function () { return (React.createElement("div", null, React.createElement(TextField, { value: String(this.state.hoverDelay), onChanged: this._onHoverDelayChanged }), React.createElement(DefaultButton, { id: 'ContextualMenuButton2', text: 'Click for ContextualMenu', menuProps: { shouldFocusOnMount: true, subMenuHoverDelay: this.state.hoverDelay, items: [ { key: 'newItem', subMenuProps: { items: [ { key: 'emailMessage', name: 'Email message', title: 'Create an email' }, { key: 'calendarEvent', name: 'Calendar event', title: 'Create a calendar event', } ], }, href: 'https://bing.com', name: 'New' }, { key: 'share', subMenuProps: { items: [ { key: 'sharetotwitter', name: 'Share to Twitter', }, { key: 'sharetofacebook', name: 'Share to Facebook', }, { key: 'sharetoemail', name: 'Share to Email', subMenuProps: { items: [ { key: 'sharetooutlook_1', name: 'Share to Outlook', title: 'Share to Outlook', }, { key: 'sharetogmail_1', name: 'Share to Gmail', title: 'Share to Gmail', } ], }, }, ], }, name: 'Share' }, { key: 'shareSplit', onClick: function () { return alert('Split buttons!'); }, split: true, subMenuProps: { items: [ { key: 'sharetotwittersplit', name: 'Share to Twitter', }, { key: 'sharetofacebooksplit', name: 'Share to Facebook', }, { key: 'sharetoemailsplit', name: 'Share to Email', subMenuProps: { items: [ { key: 'sharetooutlooksplit_1', name: 'Share to Outlook', title: 'Share to Outlook', }, { key: 'sharetogmailsplit_1', name: 'Share to Gmail', title: 'Share to Gmail', } ], }, }, ], }, name: 'Share w/ Split' } ] } }))); }; return ContextualMenuSubmenuExample; }(React.Component)); export { ContextualMenuSubmenuExample }; //# sourceMappingURL=ContextualMenu.Submenu.Example.js.map