hbp-react-ui
Version:
A library of useful user-interface components built with React and MobX
66 lines (46 loc) • 4.25 kB
JavaScript
;Object.defineProperty(exports, "__esModule", { value: true });exports.default = undefined;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 _class; ///////////////////////////////////////////////////////////
// File : HorizontalInputText.js
// Description :
/**
* HorizontalInputText is derived from InputText and displays a title to the left of the input.
* @class HorizontalInputText
* @property {function} onChange The event-handler for a change in value
* @property {string} path The path to specify when reporting the value
* @property {string} title The title
* @property {object} item A NameValue object specifying the initial value
* @property {object} style Styling overrides
* @property {string} description The tooltip to display
*/
// Imports :
var _react = require('react');var _react2 = _interopRequireDefault(_react);
var _reactBootstrap = require('react-bootstrap');
var _mobx = require('mobx');
var _mobxReact = require('mobx-react');
var _InputTextStyles = require('./InputTextStyles');var _InputTextStyles2 = _interopRequireDefault(_InputTextStyles);
var _InputText2 = require('./InputText');var _InputText3 = _interopRequireDefault(_InputText2);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;}
// Class Definition
var
HorizontalInputText = (0, _mobxReact.observer)(_class = function (_InputText) {_inherits(HorizontalInputText, _InputText);
// Attributes
// Constructor
function HorizontalInputText(props) {_classCallCheck(this, HorizontalInputText);
if (typeof _hbp_debug_ != 'undefined') console.log('HorizontalInputText.constructor');var _this = _possibleConstructorReturn(this, (HorizontalInputText.__proto__ || Object.getPrototypeOf(HorizontalInputText)).call(this,
props));
_this.title = props.title || _this.title;return _this;
}
// Operations
_createClass(HorizontalInputText, [{ key: 'render', value: function render() {
return (
_react2.default.createElement('div', { style: this.style },
_react2.default.createElement(_reactBootstrap.FormGroup, null,
_react2.default.createElement(_reactBootstrap.InputGroup, null,
_react2.default.createElement(_reactBootstrap.InputGroup.Addon, null, this.title),
_react2.default.createElement(_reactBootstrap.FormControl, {
type: 'text',
placeholder: 'type...',
title: this.description,
onChange: this.onChange.bind(this),
value: this.item.$value })))));
} }]);return HorizontalInputText;}(_InputText3.default)) || _class;
// Exports
exports.default = HorizontalInputText;