mirror of
https://github.com/apache/superset.git
synced 2026-04-10 20:06:13 +00:00
* Simplifying the Field interface / logic * Moving ControlLabelWithTooltip where it belongs * Progress * Rename FieldClass->FieldType
39 lines
869 B
JavaScript
39 lines
869 B
JavaScript
import React, { PropTypes } from 'react';
|
|
import { FormGroup, FormControl } from 'react-bootstrap';
|
|
|
|
const propTypes = {
|
|
name: PropTypes.string.isRequired,
|
|
label: PropTypes.string,
|
|
description: PropTypes.string,
|
|
onChange: PropTypes.func,
|
|
value: PropTypes.string,
|
|
};
|
|
|
|
const defaultProps = {
|
|
label: null,
|
|
description: null,
|
|
onChange: () => {},
|
|
value: '',
|
|
};
|
|
|
|
export default class TextField extends React.Component {
|
|
onChange(event) {
|
|
this.props.onChange(this.props.name, event.target.value);
|
|
}
|
|
render() {
|
|
return (
|
|
<FormGroup controlId="formInlineName" bsSize="small">
|
|
<FormControl
|
|
type="text"
|
|
placeholder=""
|
|
onChange={this.onChange.bind(this)}
|
|
value={this.props.value}
|
|
/>
|
|
</FormGroup>
|
|
);
|
|
}
|
|
}
|
|
|
|
TextField.propTypes = propTypes;
|
|
TextField.defaultProps = defaultProps;
|