ant-design/components/auto-complete/index.tsx

87 lines
2.5 KiB
TypeScript
Raw Normal View History

2016-09-21 11:54:53 +08:00
import React from 'react';
import Select, { OptionProps, OptGroupProps } from '../select';
import { Option, OptGroup } from 'rc-select';
2016-07-25 17:46:45 +08:00
import classNames from 'classnames';
2016-09-19 10:22:52 +08:00
export interface SelectedValue {
key: string;
label: React.ReactNode;
}
export interface DataSourceItemObject { value: string; text: string; };
export type DataSourceItemType = string | DataSourceItemObject;
2016-07-25 17:46:45 +08:00
export interface AutoCompleteProps {
2016-08-22 17:26:14 +08:00
size?: 'large' | 'small' | 'default';
2016-07-25 17:46:45 +08:00
className?: string;
notFoundContent?: Element;
dataSource: DataSourceItemType[];
2016-07-25 17:46:45 +08:00
prefixCls?: string;
transitionName?: string;
optionLabelProp?: string;
choiceTransitionName?: string;
showSearch?: boolean;
defaultValue?: string | Array<any> | SelectedValue | Array<SelectedValue>;
value?: string | Array<any> | SelectedValue | Array<SelectedValue>;
allowClear?: boolean;
onChange?: (value: string | Array<any> | SelectedValue | Array<SelectedValue>) => void;
disabled?: boolean;
2016-07-25 17:46:45 +08:00
}
export default class AutoComplete extends React.Component<AutoCompleteProps, any> {
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,
};
static contextTypes = {
antLocale: React.PropTypes.object,
};
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,
});
2016-10-20 19:19:16 +08:00
const options = children || (dataSource ? dataSource.map((item) => {
2016-07-25 17:46:45 +08:00
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>
);
2016-07-25 17:46:45 +08:00
default:
throw new Error('AutoComplete[dataSource] only supports type `string[] | Object[]`.');
2016-07-25 17:46:45 +08:00
}
}) : []);
2016-07-25 17:46:45 +08:00
return (
<Select
{...this.props}
2016-07-25 17:46:45 +08:00
className={cls}
optionLabelProp={optionLabelProp}
combobox
notFoundContent={notFoundContent}
>
2016-07-25 17:46:45 +08:00
{options}
</Select>
);
}
}