UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Office 365.

47 lines (45 loc) 1.92 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var tslib_1 = require("tslib"); var React = require("react"); var DetailsList_1 = require("office-ui-fabric-react/lib/DetailsList"); var Link_1 = require("office-ui-fabric-react/lib/Link"); require("./DetailsListExample.scss"); var DetailsListNavigatingFocusExample = (function (_super) { tslib_1.__extends(DetailsListNavigatingFocusExample, _super); function DetailsListNavigatingFocusExample() { var _this = _super !== null && _super.apply(this, arguments) || this; _this.state = { items: generateItems(''), initialFocusedIndex: undefined, }; _this._columns = [ { name: 'File path', onRender: function (item) { return React.createElement(Link_1.Link, { key: item, onClick: function () { return _this.navigate(item); } }, item); }, }, { name: 'Size', onRender: function (item) { return '4 KB'; }, } ]; return _this; } DetailsListNavigatingFocusExample.prototype.render = function () { return (React.createElement(DetailsList_1.DetailsList, { items: this.state.items, columns: this._columns, initialFocusedIndex: this.state.initialFocusedIndex })); }; DetailsListNavigatingFocusExample.prototype.navigate = function (name) { this.setState({ items: generateItems(name + '/'), initialFocusedIndex: 0, }); }; return DetailsListNavigatingFocusExample; }(React.Component)); exports.DetailsListNavigatingFocusExample = DetailsListNavigatingFocusExample; function generateItems(parent) { return Array.prototype.map.call('abcdefghi', function (name) { return parent + name; }); } //# sourceMappingURL=DetailsList.NavigatingFocus.Example.js.map