mirror of
https://github.com/apache/superset.git
synced 2026-04-23 01:55:09 +00:00
* [bugs] account for annotations in nvd3 x scale domain, fix dynamic width explore charts, allow 0 in text control * tweak TextControl casting * [annotations] filter separately from finding data extent
79 lines
1.9 KiB
JavaScript
79 lines
1.9 KiB
JavaScript
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import { FormGroup, FormControl } from 'react-bootstrap';
|
|
import * as v from '../../validators';
|
|
import ControlHeader from '../ControlHeader';
|
|
|
|
const propTypes = {
|
|
onChange: PropTypes.func,
|
|
onFocus: PropTypes.func,
|
|
value: PropTypes.oneOfType([
|
|
PropTypes.string,
|
|
PropTypes.number,
|
|
]),
|
|
isFloat: PropTypes.bool,
|
|
isInt: PropTypes.bool,
|
|
disabled: PropTypes.bool,
|
|
};
|
|
|
|
const defaultProps = {
|
|
onChange: () => {},
|
|
onFocus: () => {},
|
|
value: '',
|
|
isInt: false,
|
|
isFloat: false,
|
|
disabled: false,
|
|
};
|
|
|
|
export default class TextControl extends React.Component {
|
|
constructor(props) {
|
|
super(props);
|
|
this.onChange = this.onChange.bind(this);
|
|
}
|
|
onChange(event) {
|
|
let value = event.target.value;
|
|
|
|
// Validation & casting
|
|
const errors = [];
|
|
if (value !== '' && this.props.isFloat) {
|
|
const error = v.numeric(value);
|
|
if (error) {
|
|
errors.push(error);
|
|
} else {
|
|
value = parseFloat(value);
|
|
}
|
|
}
|
|
if (value !== '' && this.props.isInt) {
|
|
const error = v.integer(value);
|
|
if (error) {
|
|
errors.push(error);
|
|
} else {
|
|
value = parseInt(value, 10);
|
|
}
|
|
}
|
|
this.props.onChange(value, errors);
|
|
}
|
|
render() {
|
|
const { value: rawValue } = this.props;
|
|
const value = typeof rawValue !== 'undefined' && rawValue !== null ? rawValue.toString() : '';
|
|
return (
|
|
<div>
|
|
<ControlHeader {...this.props} />
|
|
<FormGroup controlId="formInlineName" bsSize="small">
|
|
<FormControl
|
|
type="text"
|
|
placeholder=""
|
|
onChange={this.onChange}
|
|
onFocus={this.props.onFocus}
|
|
value={value}
|
|
disabled={this.props.disabled}
|
|
/>
|
|
</FormGroup>
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
TextControl.propTypes = propTypes;
|
|
TextControl.defaultProps = defaultProps;
|