import React from 'react'; import Select, { Option, OptGroup } from '../select'; import classNames from 'classnames'; export interface SelectedValue { key: string; label: React.ReactNode; } export interface DataSourceItemObject { value: string; text: string; }; export type DataSourceItemType = string | DataSourceItemObject; export interface AutoCompleteProps { size?: 'large' | 'small' | 'default'; className?: string; notFoundContent?: Element; dataSource: DataSourceItemType[]; prefixCls?: string; transitionName?: string; optionLabelProp?: string; choiceTransitionName?: string; showSearch?: boolean; defaultValue?: string | Array | SelectedValue | Array; value?: string | Array | SelectedValue | Array; allowClear?: boolean; onChange?: (value) => void; disabled?: boolean; } export default class AutoComplete extends React.Component { static Option = Option; static OptGroup = OptGroup; static defaultProps = { prefixCls: 'ant-select', transitionName: 'slide-up', optionLabelProp: 'children', choiceTransitionName: 'zoom', showSearch: false, }; static contextTypes = { antLocale: React.PropTypes.object, }; render() { let { size, className, notFoundContent, prefixCls, optionLabelProp, dataSource, children, } = this.props; const cls = classNames({ [`${prefixCls}-lg`]: size === 'large', [`${prefixCls}-sm`]: size === 'small', [className]: !!className, [`${prefixCls}-show-search`]: true, }); const options = children || (dataSource ? dataSource.map((item, index) => { switch (typeof item) { case 'string': return ; case 'object': return ( ); default: throw new Error('AutoComplete[dataSource] only supports type `string[] | Object[]`.'); } }) : []); return ( ); } }