fix: cascader autoFocus not work

pull/165/head
tangjinzhou 7 years ago
parent 7bfdb9aed7
commit 2c7aa93bd6

@ -53,7 +53,7 @@ const CascaderProps = {
disabled: PropTypes.bool.def(false),
/** 是否支持清除*/
allowClear: PropTypes.bool.def(true),
showSearch: PropTypes.oneOfType([PropTypes.bool, ShowSearchType]),
showSearch: PropTypes.oneOfType([Boolean, ShowSearchType]),
notFoundContent: PropTypes.any.def('Not Found'),
loadData: PropTypes.func,
/** 次级菜单的展开方式,可选 'click' 和 'hover' */
@ -66,6 +66,7 @@ const CascaderProps = {
inputPrefixCls: PropTypes.string.def('ant-input'),
getPopupContainer: PropTypes.func,
popupVisible: PropTypes.bool,
autoFocus: PropTypes.bool,
}
function defaultFilterOption (inputValue, path) {
@ -102,6 +103,13 @@ export default {
flattenOptions: showSearch && flattenTree(options, changeOnSelect),
}
},
mounted () {
this.$nextTick(() => {
if (this.autoFocus && !this.showSearch && !this.disabled) {
this.$refs.picker.focus()
}
})
},
watch: {
value (val) {
this.setState({ sValue: val || [] })
@ -119,7 +127,7 @@ export default {
highlightKeyword (str, keyword, prefixCls) {
return str.split(keyword)
.map((node, index) => index === 0 ? node : [
<span class={`${prefixCls}-menu-item-keyword`} key='seperator'>{keyword}</span>,
<span class={`${prefixCls}-menu-item-keyword`}>{keyword}</span>,
node,
])
},
@ -152,11 +160,15 @@ export default {
}
this.$emit('popupVisibleChange', popupVisible)
},
handleInputFocus (e) {
this.$emit('focus', e)
},
handleInputBlur () {
handleInputBlur (e) {
this.setState({
inputFocused: false,
})
this.$emit('blur', e)
},
handleInputClick (e) {
@ -164,7 +176,7 @@ export default {
// Prevent `Trigger` behaviour.
if (inputFocused || sPopupVisible) {
e.stopPropagation()
e.nativeEvent.stopImmediatePropagation()
e.nativeEvent && e.nativeEvent.stopImmediatePropagation()
}
},
@ -249,16 +261,24 @@ export default {
},
focus () {
if (this.showSearch) {
this.$refs.input.focus()
} else {
this.$refs.picker.focus()
}
},
blur () {
if (this.showSearch) {
this.$refs.input.blur()
} else {
this.$refs.picker.blur()
}
},
},
render () {
const { $slots, sValue: value, sPopupVisible, inputValue } = this
const { $slots, sValue: value, sPopupVisible, inputValue, $listeners } = this
const props = getOptionProps(this)
const {
prefixCls, inputPrefixCls, placeholder, size, disabled,
@ -329,6 +349,7 @@ export default {
if (resultListMatchInputWidth && inputValue && this.input) {
dropdownMenuColumnStyle.width = this.input.input.offsetWidth
}
// showSearchfocusblurinputref='picker'
const inputProps = {
props: {
...tempInputProps,
@ -342,6 +363,7 @@ export default {
class: `${prefixCls}-input ${sizeCls}`,
ref: 'input',
on: {
focus: showSearch ? this.handleInputFocus : noop,
click: showSearch ? this.handleInputClick : noop,
blur: showSearch ? this.handleInputBlur : noop,
keydown: this.handleKeyDown,
@ -354,6 +376,7 @@ export default {
<span
class={pickerCls}
style={getStyle(this)}
ref='picker'
>
{ showSearch ? <span class={`${prefixCls}-picker-label`}>
{this.getLabel()}
@ -375,6 +398,7 @@ export default {
dropdownMenuColumnStyle: dropdownMenuColumnStyle,
},
on: {
...$listeners,
popupVisibleChange: this.handlePopupVisibleChange,
change: this.handleChange,
},

@ -27,7 +27,12 @@ export default {
stateValue: fixControlledValue(!hasProp(this, 'value') ? defaultValue : value),
}
},
computed: {
mounted () {
this.$nextTick(() => {
if (this.autoFocus) {
this.focus()
}
})
},
watch: {
value (val) {

@ -524,7 +524,11 @@ export default {
newChildProps.on.blur = this.onBlur
} else {
newChildProps.on.focus = this.createTwoChains('focus')
newChildProps.on.blur = this.createTwoChains('blur')
newChildProps.on.blur = (e) => {
if (!e.relatedTarget || !contains(e.target, e.relatedTarget)) {
this.createTwoChains('blur')(e)
}
}
}
const { sPopupVisible, forceRender } = this
const trigger = cloneElement(child, newChildProps)

@ -257,7 +257,7 @@ export default {
render () {
const {
$props, $slots, sValue, sActiveValue, handleMenuSelect,
sPopupVisible, handlePopupVisibleChange, handleKeyDown,
sPopupVisible, handlePopupVisibleChange, handleKeyDown, $listeners,
} = this
const {
prefixCls, transitionName, popupClassName, options, disabled,
@ -274,6 +274,7 @@ export default {
visible: sPopupVisible,
},
on: {
...$listeners,
select: handleMenuSelect,
},
}
@ -298,6 +299,7 @@ export default {
popupClassName: popupClassName + emptyMenuClassName,
},
on: {
...$listeners,
popupVisibleChange: handlePopupVisibleChange,
},
ref: 'trigger',

Loading…
Cancel
Save