2015-07-23 22:23:11 +08:00
|
|
|
import React from 'react';
|
2016-03-21 09:22:14 +08:00
|
|
|
import RcSelect, { Option, OptGroup } from 'rc-select';
|
2015-12-06 17:13:06 +08:00
|
|
|
import classNames from 'classnames';
|
2015-06-09 21:16:59 +08:00
|
|
|
|
2016-03-21 09:22:14 +08:00
|
|
|
export default class Select extends React.Component {
|
2016-03-29 14:01:10 +08:00
|
|
|
static Option = Option;
|
|
|
|
static OptGroup = OptGroup;
|
|
|
|
|
|
|
|
static defaultProps = {
|
|
|
|
prefixCls: 'ant-select',
|
|
|
|
transitionName: 'slide-up',
|
|
|
|
choiceTransitionName: 'zoom',
|
|
|
|
showSearch: false,
|
|
|
|
}
|
|
|
|
|
2016-05-08 16:05:36 +08:00
|
|
|
static contextTypes = {
|
|
|
|
antLocale: React.PropTypes.object,
|
|
|
|
}
|
|
|
|
|
2015-07-24 16:05:56 +08:00
|
|
|
render() {
|
2015-12-06 17:13:06 +08:00
|
|
|
let {
|
2016-05-04 20:31:12 +08:00
|
|
|
size, className, combobox, notFoundContent, prefixCls, showSearch, optionLabelProp,
|
2015-12-06 17:13:06 +08:00
|
|
|
} = this.props;
|
2015-11-12 21:28:02 +08:00
|
|
|
|
2015-12-06 17:13:06 +08:00
|
|
|
const cls = classNames({
|
2016-04-06 15:50:58 +08:00
|
|
|
[`${prefixCls}-lg`]: size === 'large',
|
|
|
|
[`${prefixCls}-sm`]: size === 'small',
|
2015-12-06 17:13:06 +08:00
|
|
|
[className]: !!className,
|
2016-04-27 20:44:36 +08:00
|
|
|
[`${prefixCls}-show-search`]: showSearch,
|
2015-12-06 17:13:06 +08:00
|
|
|
});
|
2015-11-12 21:28:02 +08:00
|
|
|
|
2016-05-08 16:05:36 +08:00
|
|
|
const { antLocale } = this.context;
|
|
|
|
if (antLocale && antLocale.Select) {
|
|
|
|
notFoundContent = notFoundContent || antLocale.Select.notFoundContent;
|
|
|
|
}
|
|
|
|
|
2015-12-06 17:13:06 +08:00
|
|
|
if (combobox) {
|
|
|
|
notFoundContent = null;
|
2016-05-04 20:31:12 +08:00
|
|
|
// children 带 dom 结构时,无法填入输入框
|
2016-05-19 15:36:35 +08:00
|
|
|
optionLabelProp = optionLabelProp || 'value';
|
2015-08-23 16:00:05 +08:00
|
|
|
}
|
2015-12-06 17:13:06 +08:00
|
|
|
|
2015-06-15 17:17:23 +08:00
|
|
|
return (
|
2016-03-21 09:22:14 +08:00
|
|
|
<RcSelect {...this.props}
|
2015-12-06 17:13:06 +08:00
|
|
|
className={cls}
|
2016-05-19 15:36:35 +08:00
|
|
|
optionLabelProp={optionLabelProp || 'children'}
|
2016-06-06 13:54:10 +08:00
|
|
|
notFoundContent={notFoundContent}
|
|
|
|
/>
|
2015-06-15 17:17:23 +08:00
|
|
|
);
|
|
|
|
}
|
2016-03-21 09:22:14 +08:00
|
|
|
}
|