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.
127 lines
3.1 KiB
127 lines
3.1 KiB
import React from 'react';
|
|
|
|
function prefixClsFn(prefixCls, ...args) {
|
|
return args.map((s)=> {
|
|
return prefixCls + '-' + s;
|
|
}).join(' ');
|
|
}
|
|
|
|
class Group extends React.Component {
|
|
render() {
|
|
return (
|
|
<div className={this.props.className} key="ant-input-group">
|
|
{this.props.children}
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
Group.propTypes = {
|
|
className: React.PropTypes.string,
|
|
children: React.PropTypes.any,
|
|
};
|
|
|
|
Group.defaultProps = {
|
|
className: 'ant-input-group',
|
|
};
|
|
|
|
|
|
class Input extends React.Component {
|
|
getInputDOMNode() {
|
|
return this.refs.input;
|
|
}
|
|
|
|
getValue() {
|
|
if (this.props.type === 'static') {
|
|
return this.props.value;
|
|
} else if (this.props.type) {
|
|
return this.getInputDOMNode().value;
|
|
}
|
|
|
|
throw new Error('Cannot use getValue without specifying input type.');
|
|
}
|
|
|
|
renderLabledInput(children) {
|
|
const props = this.props;
|
|
const wrapperClassName = prefixClsFn(props.prefixCls, 'input-group');
|
|
const addonClassName = prefixClsFn(wrapperClassName, 'addon');
|
|
const addonBefore = props.addonBefore ? (
|
|
<span className={addonClassName} key="addonBefore">
|
|
{props.addonBefore}
|
|
</span>
|
|
) : null;
|
|
|
|
const addonAfter = props.addonAfter ? (
|
|
<span className={addonClassName} key="addonAfter">
|
|
{props.addonAfter}
|
|
</span>
|
|
) : null;
|
|
|
|
return addonBefore || addonAfter ? (
|
|
<div className={wrapperClassName} key="ant-input-group">
|
|
{addonBefore}
|
|
{children}
|
|
{addonAfter}
|
|
</div>
|
|
) : children;
|
|
}
|
|
|
|
renderInput() {
|
|
const props = this.props;
|
|
const prefixCls = props.prefixCls;
|
|
let inputClassName = prefixClsFn(prefixCls, 'input');
|
|
if (!props.type) {
|
|
return props.children;
|
|
}
|
|
|
|
switch (props.size) {
|
|
case 'small': inputClassName = prefixClsFn(prefixCls, 'input', 'input-sm'); break;
|
|
case 'large': inputClassName = prefixClsFn(prefixCls, 'input', 'input-lg'); break;
|
|
default:
|
|
}
|
|
|
|
switch (props.type) {
|
|
case 'textarea':
|
|
return <textarea {...props} className={inputClassName} ref="input" />;
|
|
case 'static':
|
|
return (
|
|
<p id={props.id} className={prefixClsFn(prefixCls, 'form-text')} ref="input">
|
|
{props.value}
|
|
</p>
|
|
);
|
|
default:
|
|
inputClassName = props.className ? props.className : inputClassName;
|
|
return <input {...props} className={inputClassName} ref="input" key="input"/>;
|
|
}
|
|
}
|
|
|
|
render() {
|
|
return this.renderLabledInput(this.renderInput());
|
|
}
|
|
}
|
|
|
|
Input.propTypes = {
|
|
type: React.PropTypes.string,
|
|
id: React.PropTypes.oneOfType([
|
|
React.PropTypes.string,
|
|
React.PropTypes.number,
|
|
]),
|
|
size: React.PropTypes.oneOf(['small', 'default', 'large']),
|
|
disabled: React.PropTypes.bool,
|
|
value: React.PropTypes.any,
|
|
defaultValue: React.PropTypes.any,
|
|
className: React.PropTypes.string,
|
|
addonBefore: React.PropTypes.node,
|
|
addonAfter: React.PropTypes.node,
|
|
children: React.PropTypes.any,
|
|
prefixCls: React.PropTypes.string,
|
|
};
|
|
|
|
Input.defaultProps = {
|
|
defaultValue: '',
|
|
disabled: false,
|
|
prefixCls: 'ant',
|
|
};
|
|
|
|
module.exports = Input;
|
|
module.exports.Group = Group;
|
|
|