office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
41 lines • 2.1 kB
JavaScript
import * as tslib_1 from "tslib";
import * as React from 'react';
import { SpinButton } from 'office-ui-fabric-react/lib/SpinButton';
// tslint:disable:jsx-no-lambda
var SpinButtonStatefulExample = /** @class */ (function (_super) {
tslib_1.__extends(SpinButtonStatefulExample, _super);
function SpinButtonStatefulExample() {
return _super !== null && _super.apply(this, arguments) || this;
}
SpinButtonStatefulExample.prototype.render = function () {
var _this = this;
var suffix = ' cm';
return (React.createElement("div", { style: { width: '400px' } },
React.createElement(SpinButton, { label: 'SpinButton with custom implementation:', value: '7' + suffix, onValidate: function (value) {
value = _this._removeSuffix(value, suffix);
if (isNaN(+value)) {
return '0' + suffix;
}
return String(value) + suffix;
}, onIncrement: function (value) {
value = _this._removeSuffix(value, suffix);
return String(+value + 2) + suffix;
}, onDecrement: function (value) {
value = _this._removeSuffix(value, suffix);
return String(+value - 2) + suffix;
}, onFocus: function () { return console.log('onFocus called'); }, onBlur: function () { return console.log('onBlur called'); } })));
};
SpinButtonStatefulExample.prototype._hasSuffix = function (string, suffix) {
var subString = string.substr(string.length - suffix.length);
return subString === suffix;
};
SpinButtonStatefulExample.prototype._removeSuffix = function (string, suffix) {
if (!this._hasSuffix(string, suffix)) {
return string;
}
return string.substr(0, string.length - suffix.length);
};
return SpinButtonStatefulExample;
}(React.Component));
export { SpinButtonStatefulExample };
//# sourceMappingURL=SpinButton.Stateful.Example.js.map