office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
42 lines • 2.16 kB
JavaScript
import * as tslib_1 from "tslib";
import * as React from 'react';
import { Pivot, PivotItem } from 'office-ui-fabric-react/lib/Pivot';
import { autobind } from 'office-ui-fabric-react/lib/Utilities';
var PivotSeparateExample = /** @class */ (function (_super) {
tslib_1.__extends(PivotSeparateExample, _super);
function PivotSeparateExample() {
var _this = _super !== null && _super.apply(this, arguments) || this;
_this.state = { selectedKey: 'rectangleRed' };
return _this;
}
PivotSeparateExample.prototype.render = function () {
return (React.createElement("div", null,
React.createElement("div", { "aria-labelledby": this._getTabId(this.state.selectedKey), role: 'tabitem', style: {
float: 'left',
width: 100,
height: this.state.selectedKey === 'squareRed' ? 100 : 200,
background: this.state.selectedKey === 'rectangleGreen' ? 'green' : 'red'
} }),
React.createElement(Pivot, { selectedKey: this.state.selectedKey, onLinkClick: this._handleLinkClick, headersOnly: true, getTabId: this._getTabId },
React.createElement(PivotItem, { linkText: 'Rectangle red', itemKey: 'rectangleRed' }),
React.createElement(PivotItem, { linkText: 'Square red', itemKey: 'squareRed' }),
React.createElement(PivotItem, { linkText: 'Rectangle green', itemKey: 'rectangleGreen' }))));
};
PivotSeparateExample.prototype._handleLinkClick = function (item) {
this.setState({
selectedKey: item.props.itemKey
});
};
PivotSeparateExample.prototype._getTabId = function (itemKey) {
return "ShapeColorPivot_" + itemKey;
};
tslib_1.__decorate([
autobind
], PivotSeparateExample.prototype, "_handleLinkClick", null);
tslib_1.__decorate([
autobind
], PivotSeparateExample.prototype, "_getTabId", null);
return PivotSeparateExample;
}(React.Component));
export { PivotSeparateExample };
//# sourceMappingURL=Pivot.Separate.Example.js.map