react-geosuggest-mui
Version:
A React autosuggest for the Google Maps Places API.
202 lines (155 loc) • 6.37 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
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);
var _shallowCompare = require('react/lib/shallowCompare');
var _shallowCompare2 = _interopRequireDefault(_shallowCompare);
var _classnames = require('classnames');
var _classnames2 = _interopRequireDefault(_classnames);
var _TextField = require('material-ui/TextField');
var _TextField2 = _interopRequireDefault(_TextField);
var _filterInputAttributes = require('./filter-input-attributes');
var _filterInputAttributes2 = _interopRequireDefault(_filterInputAttributes);
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; } // eslint-disable-line no-unused-vars
/**
* The input field
* @param {Object} props The component's props
* @return {JSX} The icon component.
*/
var Input = function (_React$Component) {
_inherits(Input, _React$Component);
function Input() {
var _ref;
var _temp, _this, _ret;
_classCallCheck(this, Input);
for (var _len = arguments.length, args = Array(_len), _key = 0; _key < _len; _key++) {
args[_key] = arguments[_key];
}
return _ret = (_temp = (_this = _possibleConstructorReturn(this, (_ref = Input.__proto__ || Object.getPrototypeOf(Input)).call.apply(_ref, [this].concat(args))), _this), _this.onChange = function (event) {
_this.props.onChange(event.target.value);
}, _this.onFocus = function () {
_this.props.onFocus();
}, _this.onBlur = function () {
_this.props.onBlur();
}, _this.onKeyPress = function (event) {
_this.props.onKeyPress(event);
}, _this.onInputKeyDown = function (event) {
// eslint-disable-line complexity
switch (event.which) {
case 40:
// DOWN
event.preventDefault();
_this.props.onNext();
break;
case 38:
// UP
event.preventDefault();
_this.props.onPrev();
break;
case 13:
// ENTER
if (_this.props.ignoreEnter) {
event.preventDefault();
}
_this.props.onSelect();
break;
case 9:
// TAB
if (!_this.props.ignoreTab) {
_this.props.onSelect();
}
break;
case 27:
// ESC
_this.props.onEscape();
break;
/* istanbul ignore next */
default:
break;
}
}, _temp), _possibleConstructorReturn(_this, _ret);
}
_createClass(Input, [{
key: 'shouldComponentUpdate',
/**
* Whether or not the component should update
* @param {Object} nextProps The new properties
* @param {Object} nextState The new state
* @return {Boolean} Update or not?
*/
value: function shouldComponentUpdate(nextProps, nextState) {
return (0, _shallowCompare2.default)(this, nextProps, nextState);
}
/**
* When the input got changed
*/
/**
* When the input got focused
*/
/**
* When the input loses focus
*/
/**
* When a key gets pressed in the input
* @param {Event} event The keypress event
*/
/**
* When a key gets pressed in the input
* @param {Event} event The keydown event
*/
}, {
key: 'focus',
/**
* Focus the input
*/
value: function focus() {
this.refs.input.focus();
}
/**
* Render the view
* @return {Function} The React element to render
*/
}, {
key: 'render',
value: function render() {
var attributes = (0, _filterInputAttributes2.default)(this.props),
classes = (0, _classnames2.default)('geosuggest__input', this.props.className);
return _react2.default.createElement(_TextField2.default, _extends({ className: classes,
id: 'geosuggest-material-ui',
ref: 'input',
type: 'text',
autoComplete: 'off'
}, attributes, {
error: this.props.error,
label: this.props.label,
value: this.props.value,
style: this.props.style,
onKeyDown: this.onInputKeyDown,
onChange: this.onChange,
onKeyPress: this.onKeyPress,
onFocus: this.onFocus,
onBlur: this.onBlur }));
}
}]);
return Input;
}(_react2.default.Component);
/**
* Default values for the properties
* @type {Object}
*/
Input.defaultProps = {
className: '',
error: false,
value: '',
ignoreTab: false,
onKeyDown: function onKeyDown() {},
onKeyPress: function onKeyPress() {}
};
exports.default = Input;