UNPKG

openuicomponent

Version:
101 lines (78 loc) 3.77 kB
'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); var _react = require('react'); var _react2 = _interopRequireDefault(_react); require('style-loader!css-loader?modules!less-loader!autoprefixer-loader?{browsers:["last 2 version","Firefox 15"]}!./index.less'); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } var Input = function (_React$Component) { _inherits(Input, _React$Component); function Input(props) { _classCallCheck(this, Input); var _this = _possibleConstructorReturn(this, (Input.__proto__ || Object.getPrototypeOf(Input)).call(this, props)); _this.state = { date: new Date().getTime() }; _this.focus = _this.focus.bind(_this); return _this; } _createClass(Input, [{ key: 'focus', value: function focus() { this.el.focus(); } }, { key: 'render', value: function render() { var _this2 = this; return _react2.default.createElement('input', { ref: function ref(el) { _this2.el = el; } }); } }]); return Input; }(_react2.default.Component); var Son2Farther = function (_React$Component2) { _inherits(Son2Farther, _React$Component2); function Son2Farther() { _classCallCheck(this, Son2Farther); return _possibleConstructorReturn(this, (Son2Farther.__proto__ || Object.getPrototypeOf(Son2Farther)).apply(this, arguments)); } _createClass(Son2Farther, [{ key: 'componentDidMount', value: function componentDidMount() { // Note that when you use ref on a component, it’s a reference to // the component (not the underlying element), so you have access to its methods. this.InputComponent.focus(); } }, { key: 'render', value: function render() { var _this4 = this; return _react2.default.createElement( 'div', null, _react2.default.createElement( 'label', null, 'User name:' ), _react2.default.createElement(Input, { ref: function ref(comp) { _this4.InputComponent = comp; } }) ); } }]); return Son2Farther; }(_react2.default.Component); exports.default = Son2Farther; //# sourceMappingURL=index.js.map