UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Office 365.

151 lines (149 loc) 8.39 kB
define(["require", "exports", "tslib", "react", "office-ui-fabric-react/lib/CommandBar", "office-ui-fabric-react/lib/Check", "office-ui-fabric-react/lib/MarqueeSelection", "office-ui-fabric-react/lib/Selection", "@uifabric/example-app-base", "./Selection.Example.scss"], function (require, exports, tslib_1, React, CommandBar_1, Check_1, MarqueeSelection_1, Selection_1, example_app_base_1) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var ITEM_COUNT = 100; /** * The SelectionBasicExample controls the selection state of all items */ var SelectionBasicExample = (function (_super) { tslib_1.__extends(SelectionBasicExample, _super); function SelectionBasicExample() { var _this = _super.call(this) || this; _this._hasMounted = false; _this._onSelectionChanged = _this._onSelectionChanged.bind(_this); _this._onSelectionModeChanged = _this._onSelectionModeChanged.bind(_this); _this._onToggleSelectAll = _this._onToggleSelectAll.bind(_this); _this._onCanSelectChanged = _this._onCanSelectChanged.bind(_this); _this._canSelectItem = _this._canSelectItem.bind(_this); _this.state = { items: example_app_base_1.createListItems(ITEM_COUNT), selection: new Selection_1.Selection({ onSelectionChanged: _this._onSelectionChanged }), selectionMode: Selection_1.SelectionMode.multiple, canSelect: 'all' }; _this.state.selection.setItems(_this.state.items, false); return _this; } SelectionBasicExample.prototype.componentDidMount = function () { this._hasMounted = true; }; SelectionBasicExample.prototype.render = function () { var _a = this.state, items = _a.items, selection = _a.selection, selectionMode = _a.selectionMode; return (React.createElement("div", { className: 'ms-SelectionBasicExample' }, React.createElement(CommandBar_1.CommandBar, { items: this._getCommandItems() }), React.createElement(MarqueeSelection_1.MarqueeSelection, { selection: selection, isEnabled: selectionMode === Selection_1.SelectionMode.multiple }, React.createElement(Selection_1.SelectionZone, { selection: selection, selectionMode: selectionMode, onItemInvoked: function (item) { return alert('item invoked: ' + item.name); } }, items.map(function (item, index) { return (React.createElement(SelectionItemExample, { ref: 'detailsGroup_' + index, key: item.key, item: item, itemIndex: index, selectionMode: selectionMode, selection: selection })); }))))); }; SelectionBasicExample.prototype._onSelectionChanged = function () { if (this._hasMounted) { this.forceUpdate(); } }; SelectionBasicExample.prototype._onToggleSelectAll = function () { var selection = this.state.selection; selection.toggleAllSelected(); }; SelectionBasicExample.prototype._onSelectionModeChanged = function (ev, menuItem) { this.setState({ selectionMode: menuItem.data }); }; SelectionBasicExample.prototype._onCanSelectChanged = function (ev, menuItem) { var canSelectItem = (menuItem.data === 'vowels') ? this._canSelectItem : undefined; var newSelection = new Selection_1.Selection({ onSelectionChanged: this._onSelectionChanged, canSelectItem: canSelectItem }); newSelection.setItems(this.state.items, false); this.setState({ selection: newSelection, canSelect: (menuItem.data === 'vowels') ? 'vowels' : 'all' }); }; SelectionBasicExample.prototype._canSelectItem = function (item) { return item.name && (item.name.indexOf('a') === 0 || item.name.indexOf('e') === 0 || item.name.indexOf('i') === 0 || item.name.indexOf('o') === 0 || item.name.indexOf('u') === 0); }; SelectionBasicExample.prototype._getCommandItems = function () { var _a = this.state, selectionMode = _a.selectionMode, canSelect = _a.canSelect; return [ { key: 'selectionMode', name: 'Selection Mode', items: [ { key: Selection_1.SelectionMode[Selection_1.SelectionMode.none], name: 'None', canCheck: true, checked: selectionMode === Selection_1.SelectionMode.none, onClick: this._onSelectionModeChanged, data: Selection_1.SelectionMode.none }, { key: Selection_1.SelectionMode[Selection_1.SelectionMode.single], name: 'Single select', canCheck: true, checked: selectionMode === Selection_1.SelectionMode.single, onClick: this._onSelectionModeChanged, data: Selection_1.SelectionMode.single }, { key: Selection_1.SelectionMode[Selection_1.SelectionMode.multiple], name: 'Multi select', canCheck: true, checked: selectionMode === Selection_1.SelectionMode.multiple, onClick: this._onSelectionModeChanged, data: Selection_1.SelectionMode.multiple }, ] }, { key: 'selectAll', name: 'Select All', icon: 'check', onClick: this._onToggleSelectAll }, { key: 'allowCanSelect', name: 'Choose selectable items', items: [ { key: 'all', name: 'All items', canCheck: true, checked: canSelect === 'all', onClick: this._onCanSelectChanged, data: 'all' }, { key: 'a', name: 'Names starting with vowels', canCheck: true, checked: canSelect === 'vowels', onClick: this._onCanSelectChanged, data: 'vowels' } ] } ]; }; return SelectionBasicExample; }(React.Component)); exports.SelectionBasicExample = SelectionBasicExample; /** * The SelectionItemExample controls and displays the selection state of a single item */ var SelectionItemExample = (function (_super) { tslib_1.__extends(SelectionItemExample, _super); function SelectionItemExample() { return _super !== null && _super.apply(this, arguments) || this; } SelectionItemExample.prototype.render = function () { var _a = this.props, item = _a.item, itemIndex = _a.itemIndex, selection = _a.selection, selectionMode = _a.selectionMode; var isSelected = selection.isIndexSelected(itemIndex); return (React.createElement("div", { className: 'ms-SelectionItemExample', "data-selection-index": itemIndex }, (selectionMode !== Selection_1.SelectionMode.none) && (React.createElement("div", { className: 'ms-SelectionItemExample-check', "data-selection-toggle": true }, React.createElement(Check_1.Check, { checked: isSelected }))), React.createElement("span", { className: 'ms-SelectionItemExample-name' }, item.name))); }; return SelectionItemExample; }(React.Component)); exports.SelectionItemExample = SelectionItemExample; }); //# sourceMappingURL=Selection.Basic.Example.js.map