1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
import _mergeJSXProps from 'babel-helper-vue-jsx-merge-props';
import _extends from 'babel-runtime/helpers/extends';
/**
* Since search box is in different position with different mode.
* - Single: in the popup box
* - multiple: in the selector
* Move the code as a SearchInput for easy management.
*/
import PropTypes from '../../_util/vue-types';
import { createRef } from './util';
var SearchInput = {
name: 'SearchInput',
props: {
open: PropTypes.bool,
searchValue: PropTypes.string,
prefixCls: PropTypes.string,
disabled: PropTypes.bool,
renderPlaceholder: PropTypes.func,
needAlign: PropTypes.bool,
ariaId: PropTypes.string
},
inject: {
vcTreeSelect: { 'default': function _default() {
return {};
} }
},
created: function created() {
this.inputRef = createRef();
this.mirrorInputRef = createRef();
this.prevProps = _extends({}, this.$props);
},
mounted: function mounted() {
var _this = this;
this.$nextTick(function () {
var _$props = _this.$props,
open = _$props.open,
needAlign = _$props.needAlign;
if (needAlign) {
_this.alignInputWidth();
}
if (open) {
_this.focus(true);
}
});
},
updated: function updated() {
var _this2 = this;
var _$props2 = this.$props,
open = _$props2.open,
searchValue = _$props2.searchValue,
needAlign = _$props2.needAlign;
var prevProps = this.prevProps;
this.$nextTick(function () {
if (open && prevProps.open !== open) {
_this2.focus();
}
if (needAlign && searchValue !== prevProps.searchValue) {
_this2.alignInputWidth();
}
_this2.prevProps = _extends({}, _this2.$props);
});
},
methods: {
/**
* `scrollWidth` is not correct in IE, do the workaround.
* ref: https://github.com/react-component/tree-select/issues/65
* clientWidth 0 when mounted in vue. why?
*/
alignInputWidth: function alignInputWidth() {
this.inputRef.current.style.width = (this.mirrorInputRef.current.clientWidth || this.mirrorInputRef.current.offsetWidth) + 'px';
},
/**
* Need additional timeout for focus cause parent dom is not ready when didMount trigger
*/
focus: function focus(isDidMount) {
var _this3 = this;
if (this.inputRef.current) {
if (isDidMount) {
setTimeout(function () {
_this3.inputRef.current.focus();
}, 0);
} else {
// set it into else, Avoid scrolling when focus
this.inputRef.current.focus();
}
}
},
blur: function blur() {
if (this.inputRef.current) {
this.inputRef.current.blur();
}
}
},
render: function render() {
var h = arguments[0];
var _$props3 = this.$props,
searchValue = _$props3.searchValue,
prefixCls = _$props3.prefixCls,
disabled = _$props3.disabled,
renderPlaceholder = _$props3.renderPlaceholder,
open = _$props3.open,
ariaId = _$props3.ariaId;
var _vcTreeSelect = this.vcTreeSelect,
onSearchInputChange = _vcTreeSelect.onSearchInputChange,
onSearchInputKeyDown = _vcTreeSelect.onSearchInputKeyDown;
return h(
'span',
{ 'class': prefixCls + '-search__field__wrap' },
[h('input', _mergeJSXProps([{
attrs: {
type: 'text'
}
}, {
directives: [{
name: 'ant-ref',
value: this.inputRef
}]
}, {
on: {
'input': onSearchInputChange,
'keydown': onSearchInputKeyDown
},
domProps: {
'value': searchValue
},
attrs: {
disabled: disabled,
'aria-label': 'filter select',
'aria-autocomplete': 'list',
'aria-controls': open ? ariaId : undefined,
'aria-multiline': 'false'
},
'class': prefixCls + '-search__field' }])), h(
'span',
_mergeJSXProps([{
directives: [{
name: 'ant-ref',
value: this.mirrorInputRef
}]
}, {
'class': prefixCls + '-search__field__mirror'
}]),
[searchValue, '\xA0']
), renderPlaceholder ? renderPlaceholder() : null]
);
}
};
export default SearchInput;