office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
37 lines • 1.9 kB
JavaScript
define(["require", "exports", "tslib", "react", "../../Utilities", "./Fabric.styles"], function (require, exports, tslib_1, React, Utilities_1, Fabric_styles_1) {
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var getClassNames = Utilities_1.classNamesFunction();
var FabricBase = /** @class */ (function (_super) {
tslib_1.__extends(FabricBase, _super);
function FabricBase(props) {
var _this = _super.call(this, props) || this;
_this._rootElement = Utilities_1.createRef();
_this._onMouseDown = function (ev) {
_this.setState({ isFocusVisible: false });
};
_this._onKeyDown = function (ev) {
if (Utilities_1.isDirectionalKeyCode(ev.which)) {
_this.setState({ isFocusVisible: true });
}
};
_this.state = { isFocusVisible: false };
return _this;
}
FabricBase.prototype.render = function () {
var classNames = getClassNames(Fabric_styles_1.getStyles, tslib_1.__assign({}, this.props, this.state));
var divProps = Utilities_1.getNativeProps(this.props, Utilities_1.divProperties);
return React.createElement("div", tslib_1.__assign({}, divProps, { className: classNames.root, ref: this._rootElement }));
};
FabricBase.prototype.componentDidMount = function () {
var win = Utilities_1.getWindow(this._rootElement.value);
if (win) {
this._events.on(win, 'mousedown', this._onMouseDown, true);
this._events.on(win, 'keydown', this._onKeyDown, true);
}
};
return FabricBase;
}(Utilities_1.BaseComponent));
exports.FabricBase = FabricBase;
});
//# sourceMappingURL=Fabric.base.js.map