Blame view

src/components/select/select.vue 28 KB
e355dd49   梁灏   add Select Component
1
  <template>
2fbe636b   梁灏   Select support a ...
2
      <div
2fbe636b   梁灏   Select support a ...
3
          :class="classes"
c9b86944   Sergio Crisostomo   Refactor Select!
4
          v-click-outside.capture="onClickOutside"
4a9974f6   Graham Fairweather   Normalise v-ckick...
5
          v-click-outside:mousedown.capture="onClickOutside"
c9b86944   Sergio Crisostomo   Refactor Select!
6
      >
e355dd49   梁灏   add Select Component
7
          <div
4aec6a66   梁灏   support Select
8
              ref="reference"
c9b86944   Sergio Crisostomo   Refactor Select!
9
10
11
12
13
14
15
16
17
18
  
              :class="selectionCls"
              :tabindex="selectTabindex"
  
              @blur="toggleHeaderFocus"
              @focus="toggleHeaderFocus"
  
              @click="toggleMenu"
              @keydown.esc="handleKeydown"
              @keydown.enter="handleKeydown"
66f807ed   梁灏   update Select
19
20
              @keydown.up.prevent="handleKeydown"
              @keydown.down.prevent="handleKeydown"
c9b86944   Sergio Crisostomo   Refactor Select!
21
22
23
24
25
26
27
28
              @keydown.tab="handleKeydown"
              @keydown.delete="handleKeydown"
  
  
              @mouseenter="hasMouseHoverHead = true"
              @mouseleave="hasMouseHoverHead = false"
  
          >
fed3e09d   梁灏   add AutoComplete ...
29
              <slot name="input">
c9b86944   Sergio Crisostomo   Refactor Select!
30
31
32
33
34
35
                  <input type="hidden" :name="name" :value="publicValue">
                  <select-head
                      :filterable="filterable"
                      :multiple="multiple"
                      :values="values"
                      :clearable="canBeCleared"
fed3e09d   梁灏   add AutoComplete ...
36
                      :disabled="disabled"
c9b86944   Sergio Crisostomo   Refactor Select!
37
38
39
40
41
42
43
44
45
                      :remote="remote"
                      :input-element-id="elementId"
                      :initial-label="initialLabel"
                      :placeholder="placeholder"
                      :query-prop="query"
  
                      @on-query-change="onQueryChange"
                      @on-input-focus="isFocused = true"
                      @on-input-blur="isFocused = false"
7dbde804   Sergio Crisostomo   add on-clear event
46
                      @on-clear="clearSingleSelect"
c9b86944   Sergio Crisostomo   Refactor Select!
47
                  />
fed3e09d   梁灏   add AutoComplete ...
48
              </slot>
e355dd49   梁灏   add Select Component
49
          </div>
e09b07b7   huanghong   解决drop弹出动画异常
50
          <transition name="transition-drop">
595cfa72   梁灏   fixed #1187 #844 ...
51
              <Drop
ecaf8d51   梁灏   Date add transfer...
52
                  :class="dropdownCls"
595cfa72   梁灏   fixed #1187 #844 ...
53
54
55
56
                  v-show="dropVisible"
                  :placement="placement"
                  ref="dropdown"
                  :data-transfer="transfer"
c9b86944   Sergio Crisostomo   Refactor Select!
57
58
59
60
                  v-transfer-dom
              >
                  <ul v-show="showNotFoundLabel" :class="[prefixCls + '-not-found']"><li>{{ localeNotFoundText }}</li></ul>
                  <ul :class="prefixCls + '-dropdown-list'">
220161f5   Sergio Crisostomo   Clean up empty/nu...
61
62
63
64
65
66
                      <functional-options
                          v-if="(!remote) || (remote && !loading)"
                          :options="selectOptions"
                          :slot-update-hook="updateSlotOptions"
                          :slot-options="slotOptions"
                      ></functional-options>
c9b86944   Sergio Crisostomo   Refactor Select!
67
                  </ul>
01b54e30   梁灏   Select support re...
68
                  <ul v-show="loading" :class="[prefixCls + '-loading']">{{ localeLoadingText }}</ul>
4aec6a66   梁灏   support Select
69
70
              </Drop>
          </transition>
e355dd49   梁灏   add Select Component
71
72
73
74
      </div>
  </template>
  <script>
      import Icon from '../icon';
4aec6a66   梁灏   support Select
75
      import Drop from './dropdown.vue';
8624560f   Graham Fairweather   Fix: Webpack is n...
76
      import vClickOutside from 'v-click-outside-x';
595cfa72   梁灏   fixed #1187 #844 ...
77
      import TransferDom from '../../directives/transfer-dom';
c9b86944   Sergio Crisostomo   Refactor Select!
78
      import { oneOf } from '../../utils/assist';
4aec6a66   梁灏   support Select
79
      import Emitter from '../../mixins/emitter';
e5337c81   梁灏   fixed some compon...
80
      import Locale from '../../mixins/locale';
c9b86944   Sergio Crisostomo   Refactor Select!
81
82
      import SelectHead from './select-head.vue';
      import FunctionalOptions from './functional-options.vue';
e355dd49   梁灏   add Select Component
83
84
  
      const prefixCls = 'ivu-select';
523e2c81   Sergio Crisostomo   correct match log...
85
86
      const optionRegexp = /^i-option$|^Option$/;
      const optionGroupRegexp = /option-?group/i;
c9b86944   Sergio Crisostomo   Refactor Select!
87
88
89
90
91
92
93
94
95
96
  
      const findChild = (instance, checkFn) => {
          let match = checkFn(instance);
          if (match) return instance;
          for (let i = 0, l = instance.$children.length; i < l; i++){
              const child = instance.$children[i];
              match = findChild(child, checkFn);
              if (match) return match;
          }
      };
e355dd49   梁灏   add Select Component
97
  
06a74f9e   Sergio Crisostomo   Allow select to n...
98
99
      const findOptionsInVNode = (node) => {
          const opts = node.componentOptions;
523e2c81   Sergio Crisostomo   correct match log...
100
          if (opts && opts.tag.match(optionRegexp)) return [node];
7d14e70c   Sergio Crisostomo   Include both node...
101
102
103
          if (!node.children && (!opts || !opts.children)) return [];
          const children = [...(node.children || []),  ...(opts && opts.children || [])];
          const options = children.reduce(
06a74f9e   Sergio Crisostomo   Allow select to n...
104
105
106
107
108
109
110
111
112
              (arr, el) => [...arr, ...findOptionsInVNode(el)], []
          ).filter(Boolean);
          return options.length > 0 ? options : [];
      };
  
      const extractOptions = (options) => options.reduce((options, slotEntry) => {
          return options.concat(findOptionsInVNode(slotEntry));
      }, []);
  
aa21cdf9   Sergio Crisostomo   Process also shal...
113
114
115
116
117
118
119
120
121
122
123
124
125
      const applyProp = (node, propName, value) => {
          return {
              ...node,
              componentOptions: {
                  ...node.componentOptions,
                  propsData: {
                      ...node.componentOptions.propsData,
                      [propName]: value,
                  }
              }
          };
      };
  
31788df3   Sergio Crisostomo   Normalise behavio...
126
127
      const ANIMATION_TIMEOUT = 300;
  
e355dd49   梁灏   add Select Component
128
      export default {
8f5b1686   梁灏   fixed #196
129
          name: 'iSelect',
e5337c81   梁灏   fixed some compon...
130
          mixins: [ Emitter, Locale ],
c9b86944   Sergio Crisostomo   Refactor Select!
131
132
          components: { FunctionalOptions, Drop, Icon, SelectHead },
          directives: { clickOutside: vClickOutside.directive, TransferDom },
e355dd49   梁灏   add Select Component
133
          props: {
4aec6a66   梁灏   support Select
134
              value: {
e355dd49   梁灏   add Select Component
135
136
137
                  type: [String, Number, Array],
                  default: ''
              },
98bf25b3   梁灏   fixed #1286
138
              // 使用时,也得设置 value 才行
ddc35c9a   梁灏   fixed #952
139
140
141
142
              label: {
                  type: [String, Number, Array],
                  default: ''
              },
e355dd49   梁灏   add Select Component
143
144
145
146
147
148
149
150
151
152
153
154
155
              multiple: {
                  type: Boolean,
                  default: false
              },
              disabled: {
                  type: Boolean,
                  default: false
              },
              clearable: {
                  type: Boolean,
                  default: false
              },
              placeholder: {
e5337c81   梁灏   fixed some compon...
156
                  type: String
e355dd49   梁灏   add Select Component
157
158
159
160
161
162
163
164
              },
              filterable: {
                  type: Boolean,
                  default: false
              },
              filterMethod: {
                  type: Function
              },
01b54e30   梁灏   Select support re...
165
166
167
168
169
170
171
172
173
174
              remoteMethod: {
                  type: Function
              },
              loading: {
                  type: Boolean,
                  default: false
              },
              loadingText: {
                  type: String
              },
e355dd49   梁灏   add Select Component
175
176
              size: {
                  validator (value) {
6932b4d7   梁灏   update Page compo...
177
                      return oneOf(value, ['small', 'large', 'default']);
e355dd49   梁灏   add Select Component
178
179
180
181
182
                  }
              },
              labelInValue: {
                  type: Boolean,
                  default: false
294e2412   梁灏   update Select com...
183
184
              },
              notFoundText: {
e5337c81   梁灏   fixed some compon...
185
                  type: String
f89dd9c2   梁灏   Paeg、Select add p...
186
187
188
189
190
191
              },
              placement: {
                  validator (value) {
                      return oneOf(value, ['top', 'bottom']);
                  },
                  default: 'bottom'
595cfa72   梁灏   fixed #1187 #844 ...
192
193
194
195
              },
              transfer: {
                  type: Boolean,
                  default: false
fed3e09d   梁灏   add AutoComplete ...
196
197
198
199
200
              },
              // Use for AutoComplete
              autoComplete: {
                  type: Boolean,
                  default: false
0460a1e8   梁灏   fixed #812
201
202
203
              },
              name: {
                  type: String
acb79ba3   梁灏   fixed #433
204
205
206
              },
              elementId: {
                  type: String
e355dd49   梁灏   add Select Component
207
208
              }
          },
c9b86944   Sergio Crisostomo   Refactor Select!
209
210
211
212
          mounted(){
              this.$on('on-select-selected', this.onOptionClick);
  
              // set the initial values if there are any
7f63e58c   Sergio Crisostomo   Make possible for...
213
              if (this.values.length > 0 && !this.remote && this.selectOptions.length > 0){
220161f5   Sergio Crisostomo   Clean up empty/nu...
214
                  this.values = this.values.map(this.getOptionData).filter(Boolean);
c9b86944   Sergio Crisostomo   Refactor Select!
215
              }
7f63e58c   Sergio Crisostomo   Make possible for...
216
217
218
219
  
              if (this.values.length > 0 && this.selectOptions.length === 0){
                  this.hasExpectedValue = this.values;
              }
c9b86944   Sergio Crisostomo   Refactor Select!
220
          },
e355dd49   梁灏   add Select Component
221
          data () {
c9b86944   Sergio Crisostomo   Refactor Select!
222
  
e355dd49   梁灏   add Select Component
223
224
              return {
                  prefixCls: prefixCls,
c9b86944   Sergio Crisostomo   Refactor Select!
225
226
                  values: this.getInitialValue(),
                  dropDownWidth: 0,
e355dd49   梁灏   add Select Component
227
                  visible: false,
c9b86944   Sergio Crisostomo   Refactor Select!
228
229
                  focusIndex: -1,
                  isFocused: false,
e355dd49   梁灏   add Select Component
230
                  query: '',
c9b86944   Sergio Crisostomo   Refactor Select!
231
232
233
234
235
                  initialLabel: this.label,
                  hasMouseHoverHead: false,
                  slotOptions: this.$slots.default,
                  caretPosition: -1,
                  lastRemoteQuery: '',
31788df3   Sergio Crisostomo   Normalise behavio...
236
                  unchangedQuery: true,
7f63e58c   Sergio Crisostomo   Make possible for...
237
                  hasExpectedValue: false,
45bcc14d   Sergio Crisostomo   prevent calling r...
238
                  preventRemoteCall: false,
b0893113   jingsam   :art: add eslint
239
              };
e355dd49   梁灏   add Select Component
240
241
242
243
          },
          computed: {
              classes () {
                  return [
4b7138b9   梁灏   fixed some bugs
244
                      `${prefixCls}`,
e355dd49   梁灏   add Select Component
245
                      {
4b7138b9   梁灏   fixed some bugs
246
247
248
249
250
251
                          [`${prefixCls}-visible`]: this.visible,
                          [`${prefixCls}-disabled`]: this.disabled,
                          [`${prefixCls}-multiple`]: this.multiple,
                          [`${prefixCls}-single`]: !this.multiple,
                          [`${prefixCls}-show-clear`]: this.showCloseIcon,
                          [`${prefixCls}-${this.size}`]: !!this.size
e355dd49   梁灏   add Select Component
252
                      }
b0893113   jingsam   :art: add eslint
253
                  ];
e355dd49   梁灏   add Select Component
254
              },
ecaf8d51   梁灏   Date add transfer...
255
256
257
              dropdownCls () {
                  return {
                      [prefixCls + '-dropdown-transfer']: this.transfer,
fed3e09d   梁灏   add AutoComplete ...
258
259
260
261
262
263
                      [prefixCls + '-multiple']: this.multiple && this.transfer,
                      ['ivu-auto-complete']: this.autoComplete,
                  };
              },
              selectionCls () {
                  return {
c9b86944   Sergio Crisostomo   Refactor Select!
264
265
                      [`${prefixCls}-selection`]: !this.autoComplete,
                      [`${prefixCls}-selection-focused`]: this.isFocused
ecaf8d51   梁灏   Date add transfer...
266
267
                  };
              },
31788df3   Sergio Crisostomo   Normalise behavio...
268
269
              queryStringMatchesSelectedOption(){
                  const selectedOptions = this.values[0];
5266c905   Sergio Crisostomo   Trim label so we ...
270
271
272
                  if (!selectedOptions) return false;
                  const [query, label] = [this.query, selectedOptions.label].map(str => (str || '').trim());
                  return !this.multiple && this.unchangedQuery && query === label;
31788df3   Sergio Crisostomo   Normalise behavio...
273
              },
e5337c81   梁灏   fixed some compon...
274
              localeNotFoundText () {
c9b86944   Sergio Crisostomo   Refactor Select!
275
                  if (typeof this.notFoundText === 'undefined') {
e5337c81   梁灏   fixed some compon...
276
277
278
279
                      return this.t('i.select.noMatch');
                  } else {
                      return this.notFoundText;
                  }
f89dd9c2   梁灏   Paeg、Select add p...
280
              },
01b54e30   梁灏   Select support re...
281
              localeLoadingText () {
c9b86944   Sergio Crisostomo   Refactor Select!
282
                  if (typeof this.loadingText === 'undefined') {
01b54e30   梁灏   Select support re...
283
284
285
286
287
                      return this.t('i.select.loading');
                  } else {
                      return this.loadingText;
                  }
              },
f89dd9c2   梁灏   Paeg、Select add p...
288
289
              transitionName () {
                  return this.placement === 'bottom' ? 'slide-up' : 'slide-down';
ec98f3c3   梁灏   update Select
290
291
292
              },
              dropVisible () {
                  let status = true;
bc348e7e   Sergio Crisostomo   adapt to auto-com...
293
294
                  const noOptions = !this.selectOptions || this.selectOptions.length === 0;
                  if (!this.loading && this.remote && this.query === '' && noOptions) status = false;
fed3e09d   梁灏   add AutoComplete ...
295
  
bc348e7e   Sergio Crisostomo   adapt to auto-com...
296
                  if (this.autoComplete && noOptions) status = false;
fed3e09d   梁灏   add AutoComplete ...
297
  
ec98f3c3   梁灏   update Select
298
                  return this.visible && status;
29264399   梁灏   update Select
299
              },
c9b86944   Sergio Crisostomo   Refactor Select!
300
301
              showNotFoundLabel () {
                  const {loading, remote, selectOptions} = this;
bc348e7e   Sergio Crisostomo   adapt to auto-com...
302
                  return selectOptions && selectOptions.length === 0 && (!remote || (remote && !loading));
e355dd49   梁灏   add Select Component
303
              },
c9b86944   Sergio Crisostomo   Refactor Select!
304
305
306
              publicValue(){
                  if (this.labelInValue){
                      return this.multiple ? this.values : this.values[0];
e355dd49   梁灏   add Select Component
307
                  } else {
c9b86944   Sergio Crisostomo   Refactor Select!
308
                      return this.multiple ? this.values.map(option => option.value) : (this.values[0] || {}).value;
e355dd49   梁灏   add Select Component
309
310
                  }
              },
c9b86944   Sergio Crisostomo   Refactor Select!
311
312
313
314
315
316
317
              canBeCleared(){
                  const uiStateMatch = this.hasMouseHoverHead || this.active;
                  const qualifiesForClear = !this.multiple && this.clearable;
                  return uiStateMatch && qualifiesForClear && this.reset; // we return a function
              },
              selectOptions() {
                  const selectOptions = [];
06a74f9e   Sergio Crisostomo   Allow select to n...
318
                  const slotOptions = (this.slotOptions || []);
c9b86944   Sergio Crisostomo   Refactor Select!
319
320
                  let optionCounter = -1;
                  const currentIndex = this.focusIndex;
220161f5   Sergio Crisostomo   Clean up empty/nu...
321
                  const selectedValues = this.values.filter(Boolean).map(({value}) => value);
06a74f9e   Sergio Crisostomo   Allow select to n...
322
323
324
325
326
327
328
329
330
331
                  if (this.autoComplete) {
                      const copyChildren = (node, fn) => {
                          return {
                              ...node,
                              children: (node.children || []).map(fn).map(child => copyChildren(child, fn))
                          };
                      };
                      const autoCompleteOptions = extractOptions(slotOptions);
                      const selectedSlotOption = autoCompleteOptions[currentIndex];
  
aa21cdf9   Sergio Crisostomo   Process also shal...
332
333
334
335
336
337
338
                      return slotOptions.map(node => {
                          if (node === selectedSlotOption) return applyProp(node, 'isFocused', true);
                          return copyChildren(node, (child) => {
                              if (child !== selectedSlotOption) return child;
                              return applyProp(child, 'isFocused', true);
                          });
                      });
06a74f9e   Sergio Crisostomo   Allow select to n...
339
                  }
bc348e7e   Sergio Crisostomo   adapt to auto-com...
340
  
06a74f9e   Sergio Crisostomo   Allow select to n...
341
                  for (let option of slotOptions) {
e355dd49   梁灏   add Select Component
342
  
b6c069ca   Sergio Crisostomo   reset query if op...
343
344
                      const cOptions = option.componentOptions;
                      if (!cOptions) continue;
b6c069ca   Sergio Crisostomo   reset query if op...
345
346
                      if (cOptions.tag.match(optionGroupRegexp)){
                          let children = cOptions.children;
e355dd49   梁灏   add Select Component
347
  
c9b86944   Sergio Crisostomo   Refactor Select!
348
349
350
351
352
353
                          // remove filtered children
                          if (this.filterable){
                              children = children.filter(
                                  ({componentOptions}) => this.validateOption(componentOptions)
                              );
                          }
e355dd49   梁灏   add Select Component
354
  
b6c069ca   Sergio Crisostomo   reset query if op...
355
                          cOptions.children = children.map(opt => {
c9b86944   Sergio Crisostomo   Refactor Select!
356
357
358
                              optionCounter = optionCounter + 1;
                              return this.processOption(opt, selectedValues, optionCounter === currentIndex);
                          });
3e855e34   梁灏   fixed #46
359
  
c9b86944   Sergio Crisostomo   Refactor Select!
360
                          // keep the group if it still has children
b6c069ca   Sergio Crisostomo   reset query if op...
361
                          if (cOptions.children.length > 0) selectOptions.push({...option});
c9b86944   Sergio Crisostomo   Refactor Select!
362
363
                      } else {
                          // ignore option if not passing filter
b6c069ca   Sergio Crisostomo   reset query if op...
364
                          const optionPassesFilter = this.filterable ? this.validateOption(cOptions) : option;
c9b86944   Sergio Crisostomo   Refactor Select!
365
                          if (!optionPassesFilter) continue;
3e855e34   梁灏   fixed #46
366
  
c9b86944   Sergio Crisostomo   Refactor Select!
367
368
                          optionCounter = optionCounter + 1;
                          selectOptions.push(this.processOption(option, selectedValues, optionCounter === currentIndex));
3e855e34   梁灏   fixed #46
369
                      }
e355dd49   梁灏   add Select Component
370
371
                  }
  
c9b86944   Sergio Crisostomo   Refactor Select!
372
                  return selectOptions;
e355dd49   梁灏   add Select Component
373
              },
c9b86944   Sergio Crisostomo   Refactor Select!
374
              flatOptions(){
06a74f9e   Sergio Crisostomo   Allow select to n...
375
                  return extractOptions(this.selectOptions);
c9b86944   Sergio Crisostomo   Refactor Select!
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
              },
              selectTabindex(){
                  return this.disabled || this.filterable ? -1 : 0;
              },
              remote(){
                  return typeof this.remoteMethod === 'function';
              }
          },
          methods: {
              setQuery(query){ // PUBLIC API
                  if (query) {
                      this.onQueryChange(query);
                      return;
                  }
                  if (query === null) {
                      this.onQueryChange('');
                      this.values = [];
e355dd49   梁灏   add Select Component
393
394
                  }
              },
c9b86944   Sergio Crisostomo   Refactor Select!
395
              clearSingleSelect(){ // PUBLIC API
7dbde804   Sergio Crisostomo   add on-clear event
396
                  this.$emit('on-clear');
c3304bce   Sergio Crisostomo   correct unchanged...
397
                  this.hideMenu();
c9b86944   Sergio Crisostomo   Refactor Select!
398
399
400
401
                  if (this.clearable) this.values = [];
              },
              getOptionData(value){
                  const option = this.flatOptions.find(({componentOptions}) => componentOptions.propsData.value === value);
7f63e58c   Sergio Crisostomo   Make possible for...
402
                  if (!option) return null;
c9b86944   Sergio Crisostomo   Refactor Select!
403
404
405
406
407
408
409
410
411
412
                  const textContent = option.componentOptions.children.reduce((str, child) => str + (child.text || ''), '');
                  const label = option.componentOptions.propsData.label || textContent || '';
                  return {
                      value: value,
                      label: label,
                  };
              },
              getInitialValue(){
                  const {multiple, value} = this;
                  let initialValue = Array.isArray(value) ? value : [value];
b4138675   luffyzhao   select-binding-0
413
414
415
                  return initialValue.filter((item) => {
                    return Boolean(item) || item === 0
                  });
c9b86944   Sergio Crisostomo   Refactor Select!
416
417
418
419
420
421
422
423
424
425
426
427
428
              },
              processOption(option, values, isFocused){
                  if (!option.componentOptions) return option;
                  const optionValue = option.componentOptions.propsData.value;
                  const disabled = option.componentOptions.propsData.disabled;
                  const isSelected = values.includes(optionValue);
  
                  const propsData = {
                      ...option.componentOptions.propsData,
                      selected: isSelected,
                      isFocused: isFocused,
                      disabled: typeof disabled === 'undefined' ? false : disabled !== false,
                  };
e355dd49   梁灏   add Select Component
429
  
c9b86944   Sergio Crisostomo   Refactor Select!
430
431
432
433
434
                  return {
                      ...option,
                      componentOptions: {
                          ...option.componentOptions,
                          propsData: propsData
e355dd49   梁灏   add Select Component
435
                      }
c9b86944   Sergio Crisostomo   Refactor Select!
436
437
                  };
              },
e355dd49   梁灏   add Select Component
438
  
db5110c2   Sergio Crisostomo   Allow wider searc...
439
              validateOption({children, elm, propsData}){
31788df3   Sergio Crisostomo   Normalise behavio...
440
                  if (this.queryStringMatchesSelectedOption) return true;
db5110c2   Sergio Crisostomo   Allow wider searc...
441
  
c9b86944   Sergio Crisostomo   Refactor Select!
442
443
                  const value = propsData.value;
                  const label = propsData.label || '';
db5110c2   Sergio Crisostomo   Allow wider searc...
444
445
446
447
                  const textContent = (elm && elm.textContent) || (children || []).reduce((str, node) => {
                      const nodeText = node.elm ? node.elm.textContent : node.text;
                      return `${str} ${nodeText}`;
                  }, '') || '';
c9b86944   Sergio Crisostomo   Refactor Select!
448
                  const stringValues = JSON.stringify([value, label, textContent]);
5266c905   Sergio Crisostomo   Trim label so we ...
449
                  const query = this.query.toLowerCase().trim();
c3304bce   Sergio Crisostomo   correct unchanged...
450
                  return stringValues.toLowerCase().includes(query);
e355dd49   梁灏   add Select Component
451
              },
d87ce40a   梁灏   update Select
452
  
c9b86944   Sergio Crisostomo   Refactor Select!
453
454
455
              toggleMenu (e, force) {
                  if (this.disabled || this.autoComplete) {
                      return false;
d87ce40a   梁灏   update Select
456
                  }
d87ce40a   梁灏   update Select
457
  
c9b86944   Sergio Crisostomo   Refactor Select!
458
459
460
                  this.visible = typeof force !== 'undefined' ? force : !this.visible;
                  if (this.visible){
                      this.dropDownWidth = this.$el.getBoundingClientRect().width;
cf753854   Sergio Crisostomo   Corrections after...
461
                      this.broadcast('Drop', 'on-update-popper');
e4ce9917   梁灏   update Select com...
462
                  }
e355dd49   梁灏   add Select Component
463
              },
c9b86944   Sergio Crisostomo   Refactor Select!
464
465
              hideMenu () {
                  this.toggleMenu(null, false);
31788df3   Sergio Crisostomo   Normalise behavio...
466
                  setTimeout(() => this.unchangedQuery = true, ANIMATION_TIMEOUT);
e355dd49   梁灏   add Select Component
467
              },
c9b86944   Sergio Crisostomo   Refactor Select!
468
469
              onClickOutside(event){
                  if (this.visible) {
4a9974f6   Graham Fairweather   Normalise v-ckick...
470
471
472
473
                      if (event.type === 'mousedown') {
                          event.preventDefault();
                          return;
                      }
c9b86944   Sergio Crisostomo   Refactor Select!
474
475
  
                      if (this.filterable) {
ae7579e9   Sergio Crisostomo   Fix input getters...
476
                          const input = this.$el.querySelector('input[type="text"]');
c9b86944   Sergio Crisostomo   Refactor Select!
477
478
479
480
                          this.caretPosition = input.selectionStart;
                          this.$nextTick(() => {
                              const caretPosition = this.caretPosition === -1 ? input.value.length : this.caretPosition;
                              input.setSelectionRange(caretPosition, caretPosition);
e355dd49   梁灏   add Select Component
481
482
483
                          });
                      }
  
ae7579e9   Sergio Crisostomo   Fix input getters...
484
                      if (!this.autoComplete) event.stopPropagation();
c9b86944   Sergio Crisostomo   Refactor Select!
485
486
487
488
489
490
                      event.preventDefault();
                      this.hideMenu();
                      this.isFocused = true;
                  } else {
                      this.caretPosition = -1;
                      this.isFocused = false;
e355dd49   梁灏   add Select Component
491
492
                  }
              },
c9b86944   Sergio Crisostomo   Refactor Select!
493
              reset(){
31788df3   Sergio Crisostomo   Normalise behavio...
494
                  this.unchangedQuery = true;
c9b86944   Sergio Crisostomo   Refactor Select!
495
                  this.values = [];
e355dd49   梁灏   add Select Component
496
497
              },
              handleKeydown (e) {
c9b86944   Sergio Crisostomo   Refactor Select!
498
499
500
501
                  if (e.key === 'Backspace'){
                      return; // so we don't call preventDefault
                  }
  
e355dd49   梁灏   add Select Component
502
                  if (this.visible) {
c9b86944   Sergio Crisostomo   Refactor Select!
503
504
505
506
507
                      e.preventDefault();
                      if (e.key === 'Tab'){
                          e.stopPropagation();
                      }
  
e355dd49   梁灏   add Select Component
508
                      // Esc slide-up
c9b86944   Sergio Crisostomo   Refactor Select!
509
                      if (e.key === 'Escape') {
16fc6361   Sergio Crisostomo   stop propagation ...
510
                          e.stopPropagation();
e355dd49   梁灏   add Select Component
511
512
513
                          this.hideMenu();
                      }
                      // next
c9b86944   Sergio Crisostomo   Refactor Select!
514
515
                      if (e.key === 'ArrowUp') {
                          this.navigateOptions(-1);
e355dd49   梁灏   add Select Component
516
517
                      }
                      // prev
c9b86944   Sergio Crisostomo   Refactor Select!
518
519
                      if (e.key === 'ArrowDown') {
                          this.navigateOptions(1);
e355dd49   梁灏   add Select Component
520
521
                      }
                      // enter
7e3fc4a5   Sergio Crisostomo   close the menu if...
522
523
                      if (e.key === 'Enter') {
                          if (this.focusIndex === -1) return this.hideMenu();
c9b86944   Sergio Crisostomo   Refactor Select!
524
525
526
                          const optionComponent = this.flatOptions[this.focusIndex];
                          const option = this.getOptionData(optionComponent.componentOptions.propsData.value);
                          this.onOptionClick(option);
e355dd49   梁灏   add Select Component
527
                      }
c9b86944   Sergio Crisostomo   Refactor Select!
528
529
530
                  } else {
                      const keysThatCanOpenSelect = ['ArrowUp', 'ArrowDown'];
                      if (keysThatCanOpenSelect.includes(e.key)) this.toggleMenu(null, true);
e355dd49   梁灏   add Select Component
531
532
                  }
  
e355dd49   梁灏   add Select Component
533
  
c9b86944   Sergio Crisostomo   Refactor Select!
534
535
536
              },
              navigateOptions(direction){
                  const optionsLength = this.flatOptions.length - 1;
e4ebd304   梁灏   update Select com...
537
  
c9b86944   Sergio Crisostomo   Refactor Select!
538
539
540
                  let index = this.focusIndex + direction;
                  if (index < 0) index = optionsLength;
                  if (index > optionsLength) index = 0;
e355dd49   梁灏   add Select Component
541
  
c9b86944   Sergio Crisostomo   Refactor Select!
542
543
544
545
546
547
548
                  // find nearest option in case of disabled options in between
                  if (direction > 0){
                      let nearestActiveOption = -1;
                      for (let i = 0; i < this.flatOptions.length; i++){
                          const optionIsActive = !this.flatOptions[i].componentOptions.propsData.disabled;
                          if (optionIsActive) nearestActiveOption = i;
                          if (nearestActiveOption >= index) break;
e355dd49   梁灏   add Select Component
549
                      }
c9b86944   Sergio Crisostomo   Refactor Select!
550
551
552
553
554
555
556
                      index = nearestActiveOption;
                  } else {
                      let nearestActiveOption = this.flatOptions.length;
                      for (let i = optionsLength; i >= 0; i--){
                          const optionIsActive = !this.flatOptions[i].componentOptions.propsData.disabled;
                          if (optionIsActive) nearestActiveOption = i;
                          if (nearestActiveOption <= index) break;
e4ebd304   梁灏   update Select com...
557
                      }
c9b86944   Sergio Crisostomo   Refactor Select!
558
                      index = nearestActiveOption;
e355dd49   梁灏   add Select Component
559
                  }
e355dd49   梁灏   add Select Component
560
  
c9b86944   Sergio Crisostomo   Refactor Select!
561
                  this.focusIndex = index;
e4ebd304   梁灏   update Select com...
562
              },
c9b86944   Sergio Crisostomo   Refactor Select!
563
564
565
566
567
568
              onOptionClick(option) {
                  if (this.multiple){
  
                      // keep the query for remote select
                      if (this.remote) this.lastRemoteQuery = this.lastRemoteQuery || this.query;
                      else this.lastRemoteQuery = '';
e4ebd304   梁灏   update Select com...
569
  
c9b86944   Sergio Crisostomo   Refactor Select!
570
571
572
                      const valueIsSelected = this.values.find(({value}) => value === option.value);
                      if (valueIsSelected){
                          this.values = this.values.filter(({value}) => value !== option.value);
e4ebd304   梁灏   update Select com...
573
                      } else {
c9b86944   Sergio Crisostomo   Refactor Select!
574
                          this.values = this.values.concat(option);
e4ebd304   梁灏   update Select com...
575
                      }
c9b86944   Sergio Crisostomo   Refactor Select!
576
577
578
  
                      this.isFocused = true; // so we put back focus after clicking with mouse on option elements
                  } else {
5266c905   Sergio Crisostomo   Trim label so we ...
579
                      this.query = String(option.label).trim();
c9b86944   Sergio Crisostomo   Refactor Select!
580
581
582
583
584
                      this.values = [option];
                      this.lastRemoteQuery = '';
                      this.hideMenu();
                  }
  
52cfcd66   Sergio Crisostomo   Keep last selecte...
585
586
587
588
589
                  this.focusIndex = this.flatOptions.findIndex((opt) => {
                      if (!opt || !opt.componentOptions) return false;
                      return opt.componentOptions.propsData.value === option.value;
                  });
  
c9b86944   Sergio Crisostomo   Refactor Select!
590
                  if (this.filterable){
ae7579e9   Sergio Crisostomo   Fix input getters...
591
592
                      const inputField = this.$el.querySelector('input[type="text"]');
                      if (!this.autoComplete) this.$nextTick(() => inputField.focus());
e4ce9917   梁灏   update Select com...
593
                  }
88ef37f5   Aresn   fixed in multiple...
594
                  this.broadcast('Drop', 'on-update-popper');
3e855e34   梁灏   fixed #46
595
              },
c9b86944   Sergio Crisostomo   Refactor Select!
596
              onQueryChange(query) {
c3304bce   Sergio Crisostomo   correct unchanged...
597
                  if (query.length > 0 && query !== this.query) this.visible = true;
2f0b086d   梁灏   fixed #116
598
                  this.query = query;
c3304bce   Sergio Crisostomo   correct unchanged...
599
                  this.unchangedQuery = this.visible;
9c3a3e7d   YikaJ   更新 Select 组件
600
              },
c9b86944   Sergio Crisostomo   Refactor Select!
601
602
603
              toggleHeaderFocus({type}){
                  if (this.disabled) {
                      return;
15b72d31   梁灏   fixed #566
604
                  }
c9b86944   Sergio Crisostomo   Refactor Select!
605
                  this.isFocused = type === 'focus';
98bf25b3   梁灏   fixed #1286
606
              },
c9b86944   Sergio Crisostomo   Refactor Select!
607
608
              updateSlotOptions(){
                  this.slotOptions = this.$slots.default;
e355dd49   梁灏   add Select Component
609
610
              }
          },
e355dd49   梁灏   add Select Component
611
          watch: {
c9b86944   Sergio Crisostomo   Refactor Select!
612
613
614
615
616
              value(value){
                  const {getInitialValue, getOptionData, publicValue} = this;
  
                  if (value === '') this.values = [];
                  else if (JSON.stringify(value) !== JSON.stringify(publicValue)) {
220161f5   Sergio Crisostomo   Clean up empty/nu...
617
                      this.$nextTick(() => this.values = getInitialValue().map(getOptionData).filter(Boolean));
e355dd49   梁灏   add Select Component
618
                  }
c9b86944   Sergio Crisostomo   Refactor Select!
619
620
621
622
623
624
625
626
627
628
              },
              values(now, before){
                  const newValue = JSON.stringify(now);
                  const oldValue = JSON.stringify(before);
                  const shouldEmitInput = newValue !== oldValue;
  
                  if (shouldEmitInput) {
                      // v-model is always just the value, event with labelInValue === true
                      const vModelValue = this.labelInValue ?
                          (this.multiple ? this.publicValue.map(({value}) => value)
220161f5   Sergio Crisostomo   Clean up empty/nu...
629
630
                              :
                              this.publicValue.value) : this.publicValue;
c9b86944   Sergio Crisostomo   Refactor Select!
631
632
633
                      this.$emit('input', vModelValue); // to update v-model
                      this.$emit('on-change', this.publicValue);
                      this.dispatch('FormItem', 'on-form-change', this.publicValue);
219e5c92   梁灏   fixed #957
634
                  }
e355dd49   梁灏   add Select Component
635
              },
c9b86944   Sergio Crisostomo   Refactor Select!
636
637
638
639
              query (query) {
                  this.$emit('on-query-change', query);
                  const {remoteMethod, lastRemoteQuery} = this;
                  const hasValidQuery = query !== '' && (query !== lastRemoteQuery || !lastRemoteQuery);
45bcc14d   Sergio Crisostomo   prevent calling r...
640
641
                  const shouldCallRemoteMethod = remoteMethod && hasValidQuery && !this.preventRemoteCall;
                  this.preventRemoteCall = false; // remove the flag
c9b86944   Sergio Crisostomo   Refactor Select!
642
643
644
645
646
647
648
649
650
  
                  if (shouldCallRemoteMethod){
                      this.focusIndex = -1;
                      const promise = this.remoteMethod(query);
                      this.initialLabel = '';
                      if (promise && promise.then){
                          promise.then(options => {
                              if (options) this.options = options;
                          });
b7cf983e   梁灏   update Select com...
651
                      }
e355dd49   梁灏   add Select Component
652
                  }
c9b86944   Sergio Crisostomo   Refactor Select!
653
                  if (query !== '' && this.remote) this.lastRemoteQuery = query;
e4ebd304   梁灏   update Select com...
654
              },
c9b86944   Sergio Crisostomo   Refactor Select!
655
656
657
658
659
660
              loading(state){
                  if (state === false){
                      this.updateSlotOptions();
                  }
              },
              isFocused(focused){
ae7579e9   Sergio Crisostomo   Fix input getters...
661
                  const el = this.filterable ? this.$el.querySelector('input[type="text"]') : this.$el;
c9b86944   Sergio Crisostomo   Refactor Select!
662
                  el[this.isFocused ? 'focus' : 'blur']();
d8bb1771   windywany   let select compon...
663
  
c9b86944   Sergio Crisostomo   Refactor Select!
664
665
666
                  // restore query value in filterable single selects
                  const [selectedOption] = this.values;
                  if (selectedOption && this.filterable && !this.multiple && !focused){
5266c905   Sergio Crisostomo   Trim label so we ...
667
                      const selectedLabel = String(selectedOption.label || selectedOption.value).trim();
9ca6671c   Sergio Crisostomo   Check for selecte...
668
                      if (selectedLabel && this.query !== selectedLabel) {
45bcc14d   Sergio Crisostomo   prevent calling r...
669
670
671
                          this.preventRemoteCall = true;
                          this.query = selectedLabel;
                      }
c9b86944   Sergio Crisostomo   Refactor Select!
672
673
674
                  }
              },
              focusIndex(index){
06a74f9e   Sergio Crisostomo   Allow select to n...
675
                  if (index < 0 || this.autoComplete) return;
c9b86944   Sergio Crisostomo   Refactor Select!
676
677
678
679
680
                  // update scroll
                  const optionValue = this.flatOptions[index].componentOptions.propsData.value;
                  const optionInstance = findChild(this, ({$options}) => {
                      return $options.componentName === 'select-item' && $options.propsData.value === optionValue;
                  });
e4ce9917   梁灏   update Select com...
681
  
c9b86944   Sergio Crisostomo   Refactor Select!
682
683
684
685
686
687
688
                  let bottomOverflowDistance = optionInstance.$el.getBoundingClientRect().bottom - this.$refs.dropdown.$el.getBoundingClientRect().bottom;
                  let topOverflowDistance = optionInstance.$el.getBoundingClientRect().top - this.$refs.dropdown.$el.getBoundingClientRect().top;
                  if (bottomOverflowDistance > 0) {
                      this.$refs.dropdown.$el.scrollTop += bottomOverflowDistance;
                  }
                  if (topOverflowDistance < 0) {
                      this.$refs.dropdown.$el.scrollTop += topOverflowDistance;
01b54e30   梁灏   Select support re...
689
                  }
cf753854   Sergio Crisostomo   Corrections after...
690
691
692
              },
              dropVisible(open){
                  this.broadcast('Drop', open ? 'on-update-popper' : 'on-destroy-popper');
7f63e58c   Sergio Crisostomo   Make possible for...
693
              },
f7f65c84   Sergio Crisostomo   reset query only ...
694
              selectOptions(){
7f63e58c   Sergio Crisostomo   Make possible for...
695
                  if (this.hasExpectedValue){
220161f5   Sergio Crisostomo   Clean up empty/nu...
696
                      this.values = this.values.map(this.getOptionData).filter(Boolean);
7f63e58c   Sergio Crisostomo   Make possible for...
697
698
                      this.hasExpectedValue = false;
                  }
b6c069ca   Sergio Crisostomo   reset query if op...
699
  
f7f65c84   Sergio Crisostomo   reset query only ...
700
                  if (this.slotOptions && this.slotOptions.length === 0){
b6c069ca   Sergio Crisostomo   reset query if op...
701
702
                      this.query = '';
                  }
1376a01a   Sergio Crisostomo   Emit on-open-chan...
703
704
705
              },
              visible(state){
                  this.$emit('on-open-change', state);
e355dd49   梁灏   add Select Component
706
707
              }
          }
b0893113   jingsam   :art: add eslint
708
      };
d6342fe1   jingsam   fixed ie bug
709
  </script>