2016-09-21 11:54:53 +08:00
|
|
|
import React from 'react';
|
2016-10-18 11:55:00 +08:00
|
|
|
import { Option, OptGroup } from 'rc-select';
|
2016-07-25 17:46:45 +08:00
|
|
|
import classNames from 'classnames';
|
2017-03-28 15:10:07 +08:00
|
|
|
import Select, { AbstractSelectProps, SelectValue, OptionProps, OptGroupProps } from '../select';
|
|
|
|
import Input from '../input';
|
|
|
|
import InputElement from './InputElement';
|
2016-09-19 10:17:07 +08:00
|
|
|
|
2016-09-22 14:40:34 +08:00
|
|
|
export interface DataSourceItemObject { value: string; text: string; };
|
|
|
|
export type DataSourceItemType = string | DataSourceItemObject;
|
|
|
|
|
2017-01-13 21:19:23 +08:00
|
|
|
export interface InputProps {
|
|
|
|
onChange?: React.FormEventHandler<any>;
|
|
|
|
value: any;
|
|
|
|
}
|
|
|
|
|
|
|
|
export type ValidInputElement =
|
|
|
|
HTMLInputElement |
|
|
|
|
HTMLTextAreaElement |
|
|
|
|
React.ReactElement<InputProps>;
|
|
|
|
|
2017-01-12 09:23:56 +08:00
|
|
|
export interface AutoCompleteProps extends AbstractSelectProps {
|
2017-03-28 15:10:07 +08:00
|
|
|
value?: SelectValue;
|
|
|
|
defaultValue?: SelectValue;
|
2016-09-22 14:40:34 +08:00
|
|
|
dataSource: DataSourceItemType[];
|
2017-03-28 15:10:07 +08:00
|
|
|
optionLabelProp?: string;
|
|
|
|
filterOption?: boolean | ((inputValue: string, option: Object) => any);
|
|
|
|
onChange?: (value: SelectValue) => void;
|
|
|
|
onSelect?: (value: SelectValue, option: Object) => any;
|
2017-03-06 11:18:41 +08:00
|
|
|
children?: ValidInputElement |
|
2017-01-13 21:19:23 +08:00
|
|
|
React.ReactElement<OptionProps> |
|
|
|
|
Array<React.ReactElement<OptionProps>>;
|
|
|
|
}
|
|
|
|
|
2017-03-03 22:10:21 +08:00
|
|
|
function isSelectOptionOrSelectOptGroup(child: any): Boolean {
|
|
|
|
return child && child.type && (child.type.isSelectOption || child.type.isSelectOptGroup);
|
|
|
|
}
|
|
|
|
|
2016-07-25 17:46:45 +08:00
|
|
|
export default class AutoComplete extends React.Component<AutoCompleteProps, any> {
|
2016-10-18 11:55:00 +08:00
|
|
|
static Option = Option as React.ClassicComponentClass<OptionProps>;
|
|
|
|
static OptGroup = OptGroup as React.ClassicComponentClass<OptGroupProps>;
|
2016-07-25 17:46:45 +08:00
|
|
|
|
|
|
|
static defaultProps = {
|
|
|
|
prefixCls: 'ant-select',
|
|
|
|
transitionName: 'slide-up',
|
|
|
|
optionLabelProp: 'children',
|
|
|
|
choiceTransitionName: 'zoom',
|
|
|
|
showSearch: false,
|
2017-05-03 15:33:40 +08:00
|
|
|
filterOption: false,
|
2016-07-25 17:46:45 +08:00
|
|
|
};
|
|
|
|
|
2017-01-13 21:19:23 +08:00
|
|
|
getInputElement = () => {
|
|
|
|
const { children } = this.props;
|
|
|
|
const element = children && React.isValidElement(children) && children.type !== Option ?
|
|
|
|
React.Children.only(this.props.children) :
|
|
|
|
<Input/>;
|
2017-04-22 10:48:21 +08:00
|
|
|
return (
|
2017-04-22 10:57:28 +08:00
|
|
|
<InputElement
|
|
|
|
{...element.props}
|
|
|
|
className={classNames('ant-input', element.props.className)}
|
|
|
|
>
|
|
|
|
{element}
|
|
|
|
</InputElement>
|
2017-04-22 10:48:21 +08:00
|
|
|
);
|
2017-01-13 21:19:23 +08:00
|
|
|
}
|
2017-01-20 18:28:09 +08:00
|
|
|
|
2016-07-25 17:46:45 +08:00
|
|
|
render() {
|
|
|
|
let {
|
2016-10-21 18:02:37 +08:00
|
|
|
size, className = '', notFoundContent, prefixCls, optionLabelProp, dataSource, children,
|
2016-07-25 17:46:45 +08:00
|
|
|
} = this.props;
|
|
|
|
|
|
|
|
const cls = classNames({
|
|
|
|
[`${prefixCls}-lg`]: size === 'large',
|
|
|
|
[`${prefixCls}-sm`]: size === 'small',
|
|
|
|
[className]: !!className,
|
|
|
|
[`${prefixCls}-show-search`]: true,
|
2017-01-13 21:19:23 +08:00
|
|
|
[`${prefixCls}-auto-complete`]: true,
|
2016-07-25 17:46:45 +08:00
|
|
|
});
|
|
|
|
|
2017-01-13 21:19:23 +08:00
|
|
|
let options;
|
|
|
|
const childArray = React.Children.toArray(children);
|
2017-03-03 22:10:21 +08:00
|
|
|
if (childArray.length &&
|
|
|
|
isSelectOptionOrSelectOptGroup(childArray[0])
|
|
|
|
) {
|
2017-02-09 10:45:42 +08:00
|
|
|
options = children;
|
2017-01-13 21:19:23 +08:00
|
|
|
} else {
|
|
|
|
options = dataSource ? dataSource.map((item) => {
|
|
|
|
if (React.isValidElement(item)) {
|
|
|
|
return item;
|
|
|
|
}
|
|
|
|
switch (typeof item) {
|
|
|
|
case 'string':
|
|
|
|
return <Option key={item}>{item}</Option>;
|
|
|
|
case 'object':
|
|
|
|
return (
|
|
|
|
<Option key={(item as DataSourceItemObject).value}>
|
|
|
|
{(item as DataSourceItemObject).text}
|
|
|
|
</Option>
|
|
|
|
);
|
|
|
|
default:
|
|
|
|
throw new Error('AutoComplete[dataSource] only supports type `string[] | Object[]`.');
|
|
|
|
}
|
|
|
|
}) : [];
|
|
|
|
}
|
2016-07-25 17:46:45 +08:00
|
|
|
|
|
|
|
return (
|
2016-11-23 17:53:10 +08:00
|
|
|
<Select
|
|
|
|
{...this.props}
|
2016-07-25 17:46:45 +08:00
|
|
|
className={cls}
|
2017-03-28 21:27:58 +08:00
|
|
|
mode="combobox"
|
2016-07-25 17:46:45 +08:00
|
|
|
optionLabelProp={optionLabelProp}
|
2017-01-13 21:19:23 +08:00
|
|
|
getInputElement={this.getInputElement}
|
2016-11-23 17:53:10 +08:00
|
|
|
notFoundContent={notFoundContent}
|
|
|
|
>
|
2016-07-25 17:46:45 +08:00
|
|
|
{options}
|
|
|
|
</Select>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|