2015-10-09 13:53:04 +08:00
|
|
|
import React from 'react';
|
2015-11-24 20:03:57 +08:00
|
|
|
import classNames from 'classnames';
|
2016-06-16 22:06:06 +08:00
|
|
|
import PureRenderMixin from 'react-addons-pure-render-mixin';
|
2016-07-07 12:06:05 +08:00
|
|
|
import omit from 'object.omit';
|
2015-10-09 13:53:04 +08:00
|
|
|
|
2016-03-14 12:52:06 +08:00
|
|
|
export default class Form extends React.Component {
|
2016-03-29 14:01:10 +08:00
|
|
|
static defaultProps = {
|
|
|
|
prefixCls: 'ant-form',
|
|
|
|
onSubmit(e) {
|
|
|
|
e.preventDefault();
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
static propTypes = {
|
|
|
|
prefixCls: React.PropTypes.string,
|
|
|
|
horizontal: React.PropTypes.bool,
|
|
|
|
inline: React.PropTypes.bool,
|
|
|
|
form: React.PropTypes.object,
|
|
|
|
children: React.PropTypes.any,
|
|
|
|
onSubmit: React.PropTypes.func,
|
|
|
|
}
|
|
|
|
|
|
|
|
static childContextTypes = {
|
|
|
|
form: React.PropTypes.object,
|
|
|
|
}
|
|
|
|
|
2016-06-12 10:15:59 +08:00
|
|
|
shouldComponentUpdate(...args) {
|
|
|
|
return PureRenderMixin.shouldComponentUpdate.apply(this, args);
|
|
|
|
}
|
|
|
|
|
2016-01-21 16:23:35 +08:00
|
|
|
getChildContext() {
|
|
|
|
return {
|
|
|
|
form: this.props.form,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2015-10-09 13:53:04 +08:00
|
|
|
render() {
|
2016-07-07 12:06:05 +08:00
|
|
|
const { prefixCls, className, inline, horizontal } = this.props;
|
2015-12-25 14:30:28 +08:00
|
|
|
const formClassName = classNames({
|
2016-07-07 12:06:05 +08:00
|
|
|
[`${prefixCls}-horizontal`]: horizontal,
|
|
|
|
[`${prefixCls}-inline`]: inline,
|
2016-03-30 10:58:37 +08:00
|
|
|
[className]: !!className,
|
2015-12-25 14:30:28 +08:00
|
|
|
});
|
2015-10-09 13:53:04 +08:00
|
|
|
|
2016-07-07 12:06:05 +08:00
|
|
|
const formProps = omit(this.props, [
|
|
|
|
'prefixCls',
|
|
|
|
'className',
|
|
|
|
'inline',
|
|
|
|
'horizontal',
|
|
|
|
'form',
|
|
|
|
]);
|
|
|
|
|
|
|
|
return <form {...formProps} className={formClassName} />;
|
2015-10-09 13:53:04 +08:00
|
|
|
}
|
|
|
|
}
|