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.
51 lines
1.3 KiB
51 lines
1.3 KiB
import * as React from 'react';
|
|
import RcSelect, { Option, OptGroup } from 'rc-select';
|
|
import classNames from 'classnames';
|
|
|
|
export default class Select extends React.Component {
|
|
static Option = Option;
|
|
static OptGroup = OptGroup;
|
|
|
|
static defaultProps = {
|
|
prefixCls: 'ant-select',
|
|
transitionName: 'slide-up',
|
|
choiceTransitionName: 'zoom',
|
|
showSearch: false,
|
|
};
|
|
|
|
static contextTypes = {
|
|
antLocale: React.PropTypes.object,
|
|
};
|
|
|
|
render() {
|
|
let {
|
|
size, className, combobox, notFoundContent, prefixCls, showSearch, optionLabelProp,
|
|
} = this.props;
|
|
|
|
const cls = classNames({
|
|
[`${prefixCls}-lg`]: size === 'large',
|
|
[`${prefixCls}-sm`]: size === 'small',
|
|
[className]: !!className,
|
|
[`${prefixCls}-show-search`]: showSearch,
|
|
});
|
|
|
|
const { antLocale } = this.context;
|
|
if (antLocale && antLocale.Select) {
|
|
notFoundContent = notFoundContent || antLocale.Select.notFoundContent;
|
|
}
|
|
|
|
if (combobox) {
|
|
notFoundContent = null;
|
|
// children 带 dom 结构时,无法填入输入框
|
|
optionLabelProp = optionLabelProp || 'value';
|
|
}
|
|
|
|
return (
|
|
<RcSelect {...this.props}
|
|
className={cls}
|
|
optionLabelProp={optionLabelProp || 'children'}
|
|
notFoundContent={notFoundContent}
|
|
/>
|
|
);
|
|
}
|
|
}
|
|
|