You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
213 lines
5.5 KiB
213 lines
5.5 KiB
import * as React from 'react';
|
|
import * as PropTypes from 'prop-types';
|
|
import classNames from 'classnames';
|
|
import omit from 'omit.js';
|
|
import Group from './Group';
|
|
import Search from './Search';
|
|
import TextArea from './TextArea';
|
|
import { Omit } from '../_util/type';
|
|
|
|
function fixControlledValue<T>(value: T) {
|
|
if (typeof value === 'undefined' || value === null) {
|
|
return '';
|
|
}
|
|
return value;
|
|
}
|
|
|
|
export interface InputProps extends Omit<React.InputHTMLAttributes<HTMLInputElement>, 'size' | 'prefix'> {
|
|
prefixCls?: string;
|
|
size?: 'large' | 'default' | 'small';
|
|
onPressEnter?: React.KeyboardEventHandler<HTMLInputElement>;
|
|
addonBefore?: React.ReactNode;
|
|
addonAfter?: React.ReactNode;
|
|
prefix?: React.ReactNode;
|
|
suffix?: React.ReactNode;
|
|
}
|
|
|
|
export default class Input extends React.Component<InputProps, any> {
|
|
static Group: typeof Group;
|
|
static Search: typeof Search;
|
|
static TextArea: typeof TextArea;
|
|
|
|
static defaultProps = {
|
|
prefixCls: 'ant-input',
|
|
type: 'text',
|
|
disabled: false,
|
|
};
|
|
|
|
static propTypes = {
|
|
type: PropTypes.string,
|
|
id: PropTypes.oneOfType([
|
|
PropTypes.string,
|
|
PropTypes.number,
|
|
]),
|
|
size: PropTypes.oneOf(['small', 'default', 'large']),
|
|
maxLength: PropTypes.oneOfType([
|
|
PropTypes.string,
|
|
PropTypes.number,
|
|
]),
|
|
disabled: PropTypes.bool,
|
|
value: PropTypes.any,
|
|
defaultValue: PropTypes.any,
|
|
className: PropTypes.string,
|
|
addonBefore: PropTypes.node,
|
|
addonAfter: PropTypes.node,
|
|
prefixCls: PropTypes.string,
|
|
onPressEnter: PropTypes.func,
|
|
onKeyDown: PropTypes.func,
|
|
onKeyUp: PropTypes.func,
|
|
onFocus: PropTypes.func,
|
|
onBlur: PropTypes.func,
|
|
prefix: PropTypes.node,
|
|
suffix: PropTypes.node,
|
|
};
|
|
|
|
input: HTMLInputElement;
|
|
|
|
handleKeyDown = (e: React.KeyboardEvent<HTMLInputElement>) => {
|
|
const { onPressEnter, onKeyDown } = this.props;
|
|
if (e.keyCode === 13 && onPressEnter) {
|
|
onPressEnter(e);
|
|
}
|
|
if (onKeyDown) {
|
|
onKeyDown(e);
|
|
}
|
|
}
|
|
|
|
focus() {
|
|
this.input.focus();
|
|
}
|
|
|
|
blur() {
|
|
this.input.blur();
|
|
}
|
|
|
|
select() {
|
|
this.input.select();
|
|
}
|
|
|
|
getInputClassName() {
|
|
const { prefixCls, size, disabled } = this.props;
|
|
return classNames(prefixCls, {
|
|
[`${prefixCls}-sm`]: size === 'small',
|
|
[`${prefixCls}-lg`]: size === 'large',
|
|
[`${prefixCls}-disabled`]: disabled,
|
|
});
|
|
}
|
|
|
|
saveInput = (node: HTMLInputElement) => {
|
|
this.input = node;
|
|
}
|
|
|
|
renderLabeledInput(children: React.ReactElement<any>) {
|
|
const props = this.props;
|
|
// Not wrap when there is not addons
|
|
if ((!props.addonBefore && !props.addonAfter)) {
|
|
return children;
|
|
}
|
|
|
|
const wrapperClassName = `${props.prefixCls}-group`;
|
|
const addonClassName = `${wrapperClassName}-addon`;
|
|
const addonBefore = props.addonBefore ? (
|
|
<span className={addonClassName}>
|
|
{props.addonBefore}
|
|
</span>
|
|
) : null;
|
|
|
|
const addonAfter = props.addonAfter ? (
|
|
<span className={addonClassName}>
|
|
{props.addonAfter}
|
|
</span>
|
|
) : null;
|
|
|
|
const className = classNames(`${props.prefixCls}-wrapper`, {
|
|
[wrapperClassName]: (addonBefore || addonAfter),
|
|
});
|
|
|
|
const groupClassName = classNames(`${props.prefixCls}-group-wrapper`, {
|
|
[`${props.prefixCls}-group-wrapper-sm`]: props.size === 'small',
|
|
[`${props.prefixCls}-group-wrapper-lg`]: props.size === 'large',
|
|
});
|
|
|
|
// Need another wrapper for changing display:table to display:inline-block
|
|
// and put style prop in wrapper
|
|
return (
|
|
<span
|
|
className={groupClassName}
|
|
style={props.style}
|
|
>
|
|
<span className={className}>
|
|
{addonBefore}
|
|
{React.cloneElement(children, { style: null })}
|
|
{addonAfter}
|
|
</span>
|
|
</span>
|
|
);
|
|
}
|
|
|
|
renderLabeledIcon(children: React.ReactElement<any>) {
|
|
const { props } = this;
|
|
if (!('prefix' in props || 'suffix' in props)) {
|
|
return children;
|
|
}
|
|
|
|
const prefix = props.prefix ? (
|
|
<span className={`${props.prefixCls}-prefix`}>
|
|
{props.prefix}
|
|
</span>
|
|
) : null;
|
|
|
|
const suffix = props.suffix ? (
|
|
<span className={`${props.prefixCls}-suffix`}>
|
|
{props.suffix}
|
|
</span>
|
|
) : null;
|
|
|
|
const affixWrapperCls = classNames(props.className, `${props.prefixCls}-affix-wrapper`, {
|
|
[`${props.prefixCls}-affix-wrapper-sm`]: props.size === 'small',
|
|
[`${props.prefixCls}-affix-wrapper-lg`]: props.size === 'large',
|
|
});
|
|
return (
|
|
<span
|
|
className={affixWrapperCls}
|
|
style={props.style}
|
|
>
|
|
{prefix}
|
|
{React.cloneElement(children, { style: null, className: this.getInputClassName() })}
|
|
{suffix}
|
|
</span>
|
|
);
|
|
}
|
|
|
|
renderInput() {
|
|
const { value, className } = this.props;
|
|
// Fix https://fb.me/react-unknown-prop
|
|
const otherProps = omit(this.props, [
|
|
'prefixCls',
|
|
'onPressEnter',
|
|
'addonBefore',
|
|
'addonAfter',
|
|
'prefix',
|
|
'suffix',
|
|
]);
|
|
|
|
if ('value' in this.props) {
|
|
otherProps.value = fixControlledValue(value);
|
|
// Input elements must be either controlled or uncontrolled,
|
|
// specify either the value prop, or the defaultValue prop, but not both.
|
|
delete otherProps.defaultValue;
|
|
}
|
|
return this.renderLabeledIcon(
|
|
<input
|
|
{...otherProps}
|
|
className={classNames(this.getInputClassName(), className)}
|
|
onKeyDown={this.handleKeyDown}
|
|
ref={this.saveInput}
|
|
/>,
|
|
);
|
|
}
|
|
|
|
render() {
|
|
return this.renderLabeledInput(this.renderInput());
|
|
}
|
|
}
|
|
|