office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
45 lines • 3.22 kB
JavaScript
import * as tslib_1 from "tslib";
/* tslint:disable:no-unused-variable */
import * as React from 'react';
/* tslint:enable:no-unused-variable */
import { Breadcrumb } from 'office-ui-fabric-react/lib/Breadcrumb';
import { autobind } from '../../../Utilities';
import { Label } from 'office-ui-fabric-react/lib/Label';
import * as exampleStylesImport from '../../../common/_exampleStyles.scss';
var exampleStyles = exampleStylesImport;
var BreadcrumbBasicExample = /** @class */ (function (_super) {
tslib_1.__extends(BreadcrumbBasicExample, _super);
function BreadcrumbBasicExample(props) {
return _super.call(this, props) || this;
}
BreadcrumbBasicExample.prototype.render = function () {
return (React.createElement("div", null,
React.createElement(Label, { className: exampleStyles.exampleLabel }, "With no maxDisplayedItems"),
React.createElement(Breadcrumb, { items: [
{ text: 'Files', 'key': 'Files', onClick: this._onBreadcrumbItemClicked },
{ text: 'This is folder 1', 'key': 'f1', onClick: this._onBreadcrumbItemClicked },
{ text: 'This is folder 2', 'key': 'f2', onClick: this._onBreadcrumbItemClicked },
{ text: 'This is folder 3', 'key': 'f3', onClick: this._onBreadcrumbItemClicked },
{ text: 'This is folder 4', 'key': 'f4', onClick: this._onBreadcrumbItemClicked },
{ text: 'This is folder 5', 'key': 'f5', onClick: this._onBreadcrumbItemClicked, isCurrentItem: true }
], ariaLabel: 'Website breadcrumb' }),
React.createElement(Label, { className: exampleStyles.exampleLabel, style: { marginTop: '24px' } }, "With maxDisplayedItems set to three"),
React.createElement(Breadcrumb, { items: [
{ text: 'Files', 'key': 'Files', href: '#/examples/breadcrumb', onClick: this._onBreadcrumbItemClicked },
{ text: 'This is link 1', 'key': 'l1', href: '#/examples/breadcrumb', onClick: this._onBreadcrumbItemClicked },
{ text: 'This is link 2', 'key': 'l2', href: '#/examples/breadcrumb', onClick: this._onBreadcrumbItemClicked },
{ text: 'This is link 3 with a long name', 'key': 'l3', href: '#/examples/breadcrumb', onClick: this._onBreadcrumbItemClicked },
{ text: 'This is link 4', 'key': 'l4', href: '#/examples/breadcrumb', onClick: this._onBreadcrumbItemClicked },
{ text: 'This is link 5', 'key': 'l5', href: '#/examples/breadcrumb', onClick: this._onBreadcrumbItemClicked, isCurrentItem: true }
], maxDisplayedItems: 3, ariaLabel: 'Website breadcrumb' })));
};
BreadcrumbBasicExample.prototype._onBreadcrumbItemClicked = function (ev, item) {
console.log("Breadcrumb item with key \"" + item.key + "\" has been clicked.");
};
tslib_1.__decorate([
autobind
], BreadcrumbBasicExample.prototype, "_onBreadcrumbItemClicked", null);
return BreadcrumbBasicExample;
}(React.Component));
export { BreadcrumbBasicExample };
//# sourceMappingURL=Breadcrumb.Basic.Example.js.map