ant-design-vue/components/auto-complete/index.jsx

138 lines
3.5 KiB
React
Raw Normal View History

2018-03-19 10:16:27 +08:00
2018-02-28 19:07:04 +08:00
import { Option, OptGroup } from '../vc-select'
2018-02-27 19:08:49 +08:00
import Select, { AbstractSelectProps, SelectValue } from '../select'
import Input from '../input'
import InputElement from './InputElement'
import PropTypes from '../_util/vue-types'
import { getComponentFromProp, getOptionProps, filterEmpty } from '../_util/props-util'
const DataSourceItemObject = PropTypes.shape({
value: String,
text: String,
}).loose
const DataSourceItemType = PropTypes.oneOfType([
PropTypes.string,
DataSourceItemObject,
]).isRequired
// export interface AutoCompleteInputProps {
// onChange?: React.FormEventHandler<any>;
// value: any;
// }
const AutoCompleteProps = {
...AbstractSelectProps,
value: SelectValue,
defaultValue: SelectValue,
2018-02-28 19:07:04 +08:00
dataSource: PropTypes.arrayOf(DataSourceItemType),
2018-02-27 19:08:49 +08:00
optionLabelProp: String,
2018-02-28 19:07:04 +08:00
dropdownMatchSelectWidth: PropTypes.bool,
2018-02-27 19:08:49 +08:00
// onChange?: (value: SelectValue) => void;
// onSelect?: (value: SelectValue, option: Object) => any;
}
export default {
2018-04-08 21:17:20 +08:00
name: 'AAutoComplete',
2018-02-27 19:08:49 +08:00
props: {
...AutoCompleteProps,
prefixCls: PropTypes.string.def('ant-select'),
showSearch: PropTypes.bool.def(false),
transitionName: PropTypes.string.def('slide-up'),
choiceTransitionName: PropTypes.string.def('zoom'),
optionLabelProp: PropTypes.string.def('children'),
2018-02-28 19:07:04 +08:00
filterOption: PropTypes.oneOfType([
PropTypes.bool,
PropTypes.func,
]).def(false),
defaultActiveFirstOption: PropTypes.bool.def(true),
2018-02-27 19:08:49 +08:00
},
2018-04-08 21:17:20 +08:00
Option: { ...Option, name: 'AAutoCompleteOption' },
OptGroup: { ...OptGroup, name: 'AAutoCompleteOptGroup' },
2018-02-28 19:07:04 +08:00
model: {
prop: 'value',
event: 'change',
},
2018-02-27 19:08:49 +08:00
methods: {
getInputElement () {
const { $slots } = this
const children = filterEmpty($slots.default)
2018-02-28 19:07:04 +08:00
const element = children.length ? children[0] : <Input />
2018-02-27 19:08:49 +08:00
return (
2018-02-28 23:30:40 +08:00
<InputElement>{element}</InputElement>
2018-02-27 19:08:49 +08:00
)
},
focus () {
this.$nextTick(() => {
if (this.$refs.select) {
this.$refs.select.focus()
}
})
},
blur () {
this.$nextTick(() => {
if (this.$refs.select) {
this.$refs.select.blur()
}
})
},
},
render () {
const {
size, prefixCls, optionLabelProp, dataSource, $slots, $listeners,
} = this
const cls = {
[`${prefixCls}-lg`]: size === 'large',
[`${prefixCls}-sm`]: size === 'small',
[`${prefixCls}-show-search`]: true,
[`${prefixCls}-auto-complete`]: true,
}
let options
const childArray = filterEmpty($slots.dataSource)
if (childArray.length) {
options = childArray
} else {
options = dataSource ? dataSource.map((item) => {
switch (typeof item) {
case 'string':
return <Option key={item}>{item}</Option>
case 'object':
return (
<Option key={item.value}>
{item.text}
</Option>
)
default:
throw new Error('AutoComplete[dataSource] only supports type `string[] | Object[]`.')
}
}) : []
}
2018-02-28 19:07:04 +08:00
const selectProps = {
props: {
...getOptionProps(this),
mode: 'combobox',
optionLabelProp,
getInputElement: this.getInputElement,
notFoundContent: getComponentFromProp(this, 'notFoundContent'),
},
class: cls,
ref: 'select',
on: {
...$listeners,
},
}
2018-02-27 19:08:49 +08:00
return (
<Select
2018-02-28 19:07:04 +08:00
{...selectProps}
2018-02-27 19:08:49 +08:00
>
{options}
</Select>
)
},
}