UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Office 365.

58 lines 2.82 kB
import * as tslib_1 from "tslib"; import * as React from 'react'; import { Dialog, DialogType, DialogFooter } from 'office-ui-fabric-react/lib/Dialog'; import { PrimaryButton, DefaultButton } from 'office-ui-fabric-react/lib/Button'; import { ChoiceGroup } from 'office-ui-fabric-react/lib/ChoiceGroup'; var DialogLargeHeaderExample = /** @class */ (function (_super) { tslib_1.__extends(DialogLargeHeaderExample, _super); function DialogLargeHeaderExample(props) { var _this = _super.call(this, props) || this; _this._showDialog = function () { _this.setState({ hideDialog: false }); }; _this._closeDialog = function () { _this.setState({ hideDialog: true }); }; _this.state = { hideDialog: true }; return _this; } DialogLargeHeaderExample.prototype.render = function () { return (React.createElement("div", null, React.createElement(DefaultButton, { secondaryText: "Opens the Sample Dialog", onClick: this._showDialog, text: "Open Dialog" }), React.createElement(Dialog, { hidden: this.state.hideDialog, onDismiss: this._closeDialog, dialogContentProps: { type: DialogType.largeHeader, title: 'All emails together', subText: 'Your Inbox has changed. No longer does it include favorites, it is a singular destination for your emails.' }, modalProps: { isBlocking: false, containerClassName: 'ms-dialogMainOverride' } }, React.createElement(ChoiceGroup, { options: [ { key: 'A', text: 'Option A' }, { key: 'B', text: 'Option B', checked: true }, { key: 'C', text: 'Option C', disabled: true } ], onChange: this._onChoiceChanged }), React.createElement(DialogFooter, null, React.createElement(PrimaryButton, { onClick: this._closeDialog, text: "Save" }), React.createElement(DefaultButton, { onClick: this._closeDialog, text: "Cancel" }))))); }; DialogLargeHeaderExample.prototype._onChoiceChanged = function () { console.log('Choice option change'); }; return DialogLargeHeaderExample; }(React.Component)); export { DialogLargeHeaderExample }; //# sourceMappingURL=Dialog.LargeHeader.Example.js.map