2016-11-24 14:03:57 +08:00
---
order: 7
title:
2017-01-05 15:35:43 +08:00
zh-CN: 输入时格式化展示
en-US: Format Tooltip Input
2016-11-24 14:03:57 +08:00
---
## zh-CN
结合 [Tooltip ](/components/tooltip ) 组件,实现一个数值输入框,方便内容超长时的全量展现。
## en-US
You can use the Input in conjunction with [Tooltip ](/components/tooltip ) component to create a Numeric Input, which can provide a good experience for extra-long content display.
2017-02-13 10:55:53 +08:00
````jsx
2016-11-24 14:03:57 +08:00
import { Input, Tooltip } from 'antd';
function formatNumber(value) {
value += '';
const list = value.split('.');
const prefix = list[0].charAt(0) === '-' ? '-' : '';
let num = prefix ? list[0].slice(1) : list[0];
let result = '';
while (num.length > 3) {
result = `,${num.slice(-3)}${result}` ;
num = num.slice(0, num.length - 3);
}
if (num) {
result = num + result;
}
return `${prefix}${result}${list[1] ? ` .${list[1]}` : ''}`;
}
class NumericInput extends React.Component {
onChange = (e) => {
const { value } = e.target;
const reg = /^-?(0|[1-9][0-9]*)(\.[0-9]*)?$/;
if ((!isNaN(value) & & reg.test(value)) || value === '' || value === '-') {
this.props.onChange(value);
}
}
// '.' at the end or only '-' in the input box.
onBlur = () => {
2017-02-19 15:06:37 +08:00
const { value, onBlur, onChange } = this.props;
2016-11-24 14:03:57 +08:00
if (value.charAt(value.length - 1) === '.' || value === '-') {
2017-02-19 15:06:37 +08:00
onChange({ value: value.slice(0, -1) });
2016-11-24 14:03:57 +08:00
}
2017-02-19 15:06:37 +08:00
if (onBlur) {
onBlur();
2016-11-24 14:03:57 +08:00
}
}
render() {
const { value } = this.props;
2017-02-19 15:06:37 +08:00
const title = value ? (
< span className = "numeric-input-title" >
2016-11-24 14:03:57 +08:00
{value !== '-' ? formatNumber(value) : '-'}
2017-02-19 15:06:37 +08:00
< / span >
2017-02-19 15:21:46 +08:00
) : 'Input a number';
2016-11-24 14:03:57 +08:00
return (
2017-02-19 15:06:37 +08:00
< Tooltip
trigger={['focus']}
title={title}
placement="topLeft"
overlayClassName="numeric-input"
>
< Input
{...this.props}
onChange={this.onChange}
onBlur={this.onBlur}
2017-02-19 15:21:46 +08:00
placeholder="Input a number"
2017-02-19 15:06:37 +08:00
maxLength="25"
/>
< / Tooltip >
2016-11-24 14:03:57 +08:00
);
}
}
class NumericInputDemo extends React.Component {
constructor(props) {
super(props);
this.state = { value: '' };
}
onChange = (value) => {
this.setState({ value });
}
render() {
2017-02-19 15:21:46 +08:00
return < NumericInput style = {{ width: 120 } } value = {this.state.value} onChange = {this.onChange} / > ;
2016-11-24 14:03:57 +08:00
}
}
ReactDOM.render(< NumericInputDemo / > , mountNode);
````
````css
2017-01-05 15:35:43 +08:00
/* to prevent the arrow overflow the popup container,
2016-11-24 14:03:57 +08:00
or the height is not enough when content is empty */
.numeric-input .ant-tooltip-inner {
min-width: 32px;
min-height: 37px;
}
.numeric-input .numeric-input-title {
font-size: 14px;
}
````