Blame view

src/components/select/select.vue 24.3 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
5
          v-click-outside.capture="onClickOutside"
      >
e355dd49   梁灏   add Select Component
6
          <div
4aec6a66   梁灏   support Select
7
              ref="reference"
c9b86944   Sergio Crisostomo   Refactor Select!
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
  
              :class="selectionCls"
              :tabindex="selectTabindex"
  
              @blur="toggleHeaderFocus"
              @focus="toggleHeaderFocus"
  
              @click="toggleMenu"
              @keydown.esc="handleKeydown"
              @keydown.enter="handleKeydown"
              @keydown.up="handleKeydown"
              @keydown.down="handleKeydown"
              @keydown.tab="handleKeydown"
              @keydown.delete="handleKeydown"
  
  
              @mouseenter="hasMouseHoverHead = true"
              @mouseleave="hasMouseHoverHead = false"
  
          >
fed3e09d   梁灏   add AutoComplete ...
28
              <slot name="input">
c9b86944   Sergio Crisostomo   Refactor Select!
29
30
31
32
33
34
                  <input type="hidden" :name="name" :value="publicValue">
                  <select-head
                      :filterable="filterable"
                      :multiple="multiple"
                      :values="values"
                      :clearable="canBeCleared"
fed3e09d   梁灏   add AutoComplete ...
35
                      :disabled="disabled"
c9b86944   Sergio Crisostomo   Refactor Select!
36
37
38
39
40
41
42
43
44
45
46
47
                      :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"
  
                      ref="selectHead"
                  />
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
61
62
63
64
65
66
67
                  v-transfer-dom
              >
                  <ul v-show="showNotFoundLabel" :class="[prefixCls + '-not-found']"><li>{{ localeNotFoundText }}</li></ul>
                  <ul :class="prefixCls + '-dropdown-list'">
                    <functional-options
                        v-if="(!remote) || (remote && !loading)"
                        :options="selectOptions"
                        :slot-update-hook="updateSlotOptions"
                        :slot-options="slotOptions"
                    ></functional-options>
                  </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';
c9b86944   Sergio Crisostomo   Refactor Select!
76
      import vClickOutside from 'v-click-outside-x/index';
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';
c9b86944   Sergio Crisostomo   Refactor Select!
85
86
87
88
89
90
91
92
93
94
95
      const optionGroupRegexp = /option\-?group/i;
  
      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
96
97
  
      export default {
8f5b1686   梁灏   fixed #196
98
          name: 'iSelect',
e5337c81   梁灏   fixed some compon...
99
          mixins: [ Emitter, Locale ],
c9b86944   Sergio Crisostomo   Refactor Select!
100
101
          components: { FunctionalOptions, Drop, Icon, SelectHead },
          directives: { clickOutside: vClickOutside.directive, TransferDom },
e355dd49   梁灏   add Select Component
102
          props: {
4aec6a66   梁灏   support Select
103
              value: {
e355dd49   梁灏   add Select Component
104
105
106
                  type: [String, Number, Array],
                  default: ''
              },
98bf25b3   梁灏   fixed #1286
107
              // 使用时,也得设置 value 才行
ddc35c9a   梁灏   fixed #952
108
109
110
111
              label: {
                  type: [String, Number, Array],
                  default: ''
              },
e355dd49   梁灏   add Select Component
112
113
114
115
116
117
118
119
120
121
122
123
124
              multiple: {
                  type: Boolean,
                  default: false
              },
              disabled: {
                  type: Boolean,
                  default: false
              },
              clearable: {
                  type: Boolean,
                  default: false
              },
              placeholder: {
e5337c81   梁灏   fixed some compon...
125
                  type: String
e355dd49   梁灏   add Select Component
126
127
128
129
130
131
132
133
              },
              filterable: {
                  type: Boolean,
                  default: false
              },
              filterMethod: {
                  type: Function
              },
01b54e30   梁灏   Select support re...
134
135
136
137
138
139
140
141
142
143
              remoteMethod: {
                  type: Function
              },
              loading: {
                  type: Boolean,
                  default: false
              },
              loadingText: {
                  type: String
              },
e355dd49   梁灏   add Select Component
144
145
              size: {
                  validator (value) {
6932b4d7   梁灏   update Page compo...
146
                      return oneOf(value, ['small', 'large', 'default']);
e355dd49   梁灏   add Select Component
147
148
149
150
151
                  }
              },
              labelInValue: {
                  type: Boolean,
                  default: false
294e2412   梁灏   update Select com...
152
153
              },
              notFoundText: {
e5337c81   梁灏   fixed some compon...
154
                  type: String
f89dd9c2   梁灏   Paeg、Select add p...
155
156
157
158
159
160
              },
              placement: {
                  validator (value) {
                      return oneOf(value, ['top', 'bottom']);
                  },
                  default: 'bottom'
595cfa72   梁灏   fixed #1187 #844 ...
161
162
163
164
              },
              transfer: {
                  type: Boolean,
                  default: false
fed3e09d   梁灏   add AutoComplete ...
165
166
167
168
169
              },
              // Use for AutoComplete
              autoComplete: {
                  type: Boolean,
                  default: false
0460a1e8   梁灏   fixed #812
170
171
172
              },
              name: {
                  type: String
acb79ba3   梁灏   fixed #433
173
174
175
              },
              elementId: {
                  type: String
e355dd49   梁灏   add Select Component
176
177
              }
          },
c9b86944   Sergio Crisostomo   Refactor Select!
178
179
180
181
          mounted(){
              this.$on('on-select-selected', this.onOptionClick);
  
              // set the initial values if there are any
7f63e58c   Sergio Crisostomo   Make possible for...
182
              if (this.values.length > 0 && !this.remote && this.selectOptions.length > 0){
c9b86944   Sergio Crisostomo   Refactor Select!
183
184
                  this.values = this.values.map(this.getOptionData);
              }
7f63e58c   Sergio Crisostomo   Make possible for...
185
186
187
188
  
              if (this.values.length > 0 && this.selectOptions.length === 0){
                  this.hasExpectedValue = this.values;
              }
c9b86944   Sergio Crisostomo   Refactor Select!
189
          },
e355dd49   梁灏   add Select Component
190
          data () {
c9b86944   Sergio Crisostomo   Refactor Select!
191
  
e355dd49   梁灏   add Select Component
192
193
              return {
                  prefixCls: prefixCls,
c9b86944   Sergio Crisostomo   Refactor Select!
194
195
                  values: this.getInitialValue(),
                  dropDownWidth: 0,
e355dd49   梁灏   add Select Component
196
                  visible: false,
c9b86944   Sergio Crisostomo   Refactor Select!
197
198
                  focusIndex: -1,
                  isFocused: false,
e355dd49   梁灏   add Select Component
199
                  query: '',
c9b86944   Sergio Crisostomo   Refactor Select!
200
201
202
203
204
                  initialLabel: this.label,
                  hasMouseHoverHead: false,
                  slotOptions: this.$slots.default,
                  caretPosition: -1,
                  lastRemoteQuery: '',
7f63e58c   Sergio Crisostomo   Make possible for...
205
                  hasExpectedValue: false,
45bcc14d   Sergio Crisostomo   prevent calling r...
206
                  preventRemoteCall: false,
b0893113   jingsam   :art: add eslint
207
              };
e355dd49   梁灏   add Select Component
208
209
210
211
          },
          computed: {
              classes () {
                  return [
4b7138b9   梁灏   fixed some bugs
212
                      `${prefixCls}`,
e355dd49   梁灏   add Select Component
213
                      {
4b7138b9   梁灏   fixed some bugs
214
215
216
217
218
219
                          [`${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
220
                      }
b0893113   jingsam   :art: add eslint
221
                  ];
e355dd49   梁灏   add Select Component
222
              },
ecaf8d51   梁灏   Date add transfer...
223
224
225
              dropdownCls () {
                  return {
                      [prefixCls + '-dropdown-transfer']: this.transfer,
fed3e09d   梁灏   add AutoComplete ...
226
227
228
229
230
231
                      [prefixCls + '-multiple']: this.multiple && this.transfer,
                      ['ivu-auto-complete']: this.autoComplete,
                  };
              },
              selectionCls () {
                  return {
c9b86944   Sergio Crisostomo   Refactor Select!
232
233
                      [`${prefixCls}-selection`]: !this.autoComplete,
                      [`${prefixCls}-selection-focused`]: this.isFocused
ecaf8d51   梁灏   Date add transfer...
234
235
                  };
              },
e5337c81   梁灏   fixed some compon...
236
              localeNotFoundText () {
c9b86944   Sergio Crisostomo   Refactor Select!
237
                  if (typeof this.notFoundText === 'undefined') {
e5337c81   梁灏   fixed some compon...
238
239
240
241
                      return this.t('i.select.noMatch');
                  } else {
                      return this.notFoundText;
                  }
f89dd9c2   梁灏   Paeg、Select add p...
242
              },
01b54e30   梁灏   Select support re...
243
              localeLoadingText () {
c9b86944   Sergio Crisostomo   Refactor Select!
244
                  if (typeof this.loadingText === 'undefined') {
01b54e30   梁灏   Select support re...
245
246
247
248
249
                      return this.t('i.select.loading');
                  } else {
                      return this.loadingText;
                  }
              },
f89dd9c2   梁灏   Paeg、Select add p...
250
251
              transitionName () {
                  return this.placement === 'bottom' ? 'slide-up' : 'slide-down';
ec98f3c3   梁灏   update Select
252
253
254
              },
              dropVisible () {
                  let status = true;
c9b86944   Sergio Crisostomo   Refactor Select!
255
                  const options = this.selectOptions;
13a940ee   梁灏   update Select
256
                  if (!this.loading && this.remote && this.query === '' && !options.length) status = false;
fed3e09d   梁灏   add AutoComplete ...
257
258
259
  
                  if (this.autoComplete && !options.length) status = false;
  
ec98f3c3   梁灏   update Select
260
                  return this.visible && status;
29264399   梁灏   update Select
261
              },
c9b86944   Sergio Crisostomo   Refactor Select!
262
263
264
              showNotFoundLabel () {
                  const {loading, remote, selectOptions} = this;
                  return selectOptions.length === 0 && (!remote || (remote && !loading));
e355dd49   梁灏   add Select Component
265
              },
c9b86944   Sergio Crisostomo   Refactor Select!
266
267
268
              publicValue(){
                  if (this.labelInValue){
                      return this.multiple ? this.values : this.values[0];
e355dd49   梁灏   add Select Component
269
                  } else {
c9b86944   Sergio Crisostomo   Refactor Select!
270
                      return this.multiple ? this.values.map(option => option.value) : (this.values[0] || {}).value;
e355dd49   梁灏   add Select Component
271
272
                  }
              },
c9b86944   Sergio Crisostomo   Refactor Select!
273
274
275
276
277
278
279
280
281
282
283
              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 = [];
                  let optionCounter = -1;
                  const currentIndex = this.focusIndex;
                  const selectedValues = this.values.map(({value}) => value);
                  for (let option of (this.slotOptions || [])) {
e355dd49   梁灏   add Select Component
284
  
c9b86944   Sergio Crisostomo   Refactor Select!
285
                      if (!option.componentOptions) continue;
e355dd49   梁灏   add Select Component
286
  
c9b86944   Sergio Crisostomo   Refactor Select!
287
288
                      if (option.componentOptions.tag.match(optionGroupRegexp)){
                          let children = option.componentOptions.children;
e355dd49   梁灏   add Select Component
289
  
c9b86944   Sergio Crisostomo   Refactor Select!
290
291
292
293
294
295
                          // remove filtered children
                          if (this.filterable){
                              children = children.filter(
                                  ({componentOptions}) => this.validateOption(componentOptions)
                              );
                          }
e355dd49   梁灏   add Select Component
296
  
c9b86944   Sergio Crisostomo   Refactor Select!
297
298
299
300
                          option.componentOptions.children = children.map(opt => {
                              optionCounter = optionCounter + 1;
                              return this.processOption(opt, selectedValues, optionCounter === currentIndex);
                          });
3e855e34   梁灏   fixed #46
301
  
c9b86944   Sergio Crisostomo   Refactor Select!
302
303
304
305
306
307
                          // keep the group if it still has children
                          if (option.componentOptions.children.length > 0) selectOptions.push({...option});
                      } else {
                          // ignore option if not passing filter
                          const optionPassesFilter = this.filterable ? this.validateOption(option.componentOptions) : option;
                          if (!optionPassesFilter) continue;
3e855e34   梁灏   fixed #46
308
  
c9b86944   Sergio Crisostomo   Refactor Select!
309
310
                          optionCounter = optionCounter + 1;
                          selectOptions.push(this.processOption(option, selectedValues, optionCounter === currentIndex));
3e855e34   梁灏   fixed #46
311
                      }
e355dd49   梁灏   add Select Component
312
313
                  }
  
c9b86944   Sergio Crisostomo   Refactor Select!
314
                  return selectOptions;
e355dd49   梁灏   add Select Component
315
              },
c9b86944   Sergio Crisostomo   Refactor Select!
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
              flatOptions(){
                  return this.selectOptions.reduce((options, option) => {
                      const isOptionGroup = option.componentOptions.tag.match(optionGroupRegexp);
                      if (isOptionGroup) return options.concat(option.componentOptions.children || []);
                      else return options.concat(option);
                  }, []);
              },
              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
339
340
                  }
              },
c9b86944   Sergio Crisostomo   Refactor Select!
341
342
343
344
345
              clearSingleSelect(){ // PUBLIC API
                  if (this.clearable) this.values = [];
              },
              getOptionData(value){
                  const option = this.flatOptions.find(({componentOptions}) => componentOptions.propsData.value === value);
7f63e58c   Sergio Crisostomo   Make possible for...
346
                  if (!option) return null;
c9b86944   Sergio Crisostomo   Refactor Select!
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
                  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];
                  if (!multiple && (typeof initialValue[0] === 'undefined' || String(initialValue[0]).trim() === '')) initialValue = [];
                  return initialValue;
              },
              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
372
  
c9b86944   Sergio Crisostomo   Refactor Select!
373
374
375
376
377
                  return {
                      ...option,
                      componentOptions: {
                          ...option.componentOptions,
                          propsData: propsData
e355dd49   梁灏   add Select Component
378
                      }
c9b86944   Sergio Crisostomo   Refactor Select!
379
380
                  };
              },
e355dd49   梁灏   add Select Component
381
  
c9b86944   Sergio Crisostomo   Refactor Select!
382
383
384
385
386
387
              validateOption({elm, propsData}){
                  const value = propsData.value;
                  const label = propsData.label || '';
                  const textContent = elm && elm.textContent || '';
                  const stringValues = JSON.stringify([value, label, textContent]);
                  return stringValues.toLowerCase().includes(this.query.toLowerCase());
e355dd49   梁灏   add Select Component
388
              },
d87ce40a   梁灏   update Select
389
  
c9b86944   Sergio Crisostomo   Refactor Select!
390
391
392
              toggleMenu (e, force) {
                  if (this.disabled || this.autoComplete) {
                      return false;
d87ce40a   梁灏   update Select
393
                  }
c9b86944   Sergio Crisostomo   Refactor Select!
394
                  this.focusIndex = -1;
d87ce40a   梁灏   update Select
395
  
c9b86944   Sergio Crisostomo   Refactor Select!
396
397
398
                  this.visible = typeof force !== 'undefined' ? force : !this.visible;
                  if (this.visible){
                      this.dropDownWidth = this.$el.getBoundingClientRect().width;
cf753854   Sergio Crisostomo   Corrections after...
399
                      this.broadcast('Drop', 'on-update-popper');
e4ce9917   梁灏   update Select com...
400
                  }
e355dd49   梁灏   add Select Component
401
              },
c9b86944   Sergio Crisostomo   Refactor Select!
402
403
              hideMenu () {
                  this.toggleMenu(null, false);
e355dd49   梁灏   add Select Component
404
              },
c9b86944   Sergio Crisostomo   Refactor Select!
405
406
407
408
409
410
411
412
413
              onClickOutside(event){
                  if (this.visible) {
  
                      if (this.filterable) {
                          const input = this.$refs.selectHead.$refs.input;
                          this.caretPosition = input.selectionStart;
                          this.$nextTick(() => {
                              const caretPosition = this.caretPosition === -1 ? input.value.length : this.caretPosition;
                              input.setSelectionRange(caretPosition, caretPosition);
e355dd49   梁灏   add Select Component
414
415
416
                          });
                      }
  
c9b86944   Sergio Crisostomo   Refactor Select!
417
418
419
420
421
422
423
                      event.stopPropagation();
                      event.preventDefault();
                      this.hideMenu();
                      this.isFocused = true;
                  } else {
                      this.caretPosition = -1;
                      this.isFocused = false;
e355dd49   梁灏   add Select Component
424
425
                  }
              },
c9b86944   Sergio Crisostomo   Refactor Select!
426
427
              reset(){
                  this.values = [];
e355dd49   梁灏   add Select Component
428
429
              },
              handleKeydown (e) {
c9b86944   Sergio Crisostomo   Refactor Select!
430
431
432
433
                  if (e.key === 'Backspace'){
                      return; // so we don't call preventDefault
                  }
  
e355dd49   梁灏   add Select Component
434
                  if (this.visible) {
c9b86944   Sergio Crisostomo   Refactor Select!
435
436
437
438
439
                      e.preventDefault();
                      if (e.key === 'Tab'){
                          e.stopPropagation();
                      }
  
e355dd49   梁灏   add Select Component
440
                      // Esc slide-up
c9b86944   Sergio Crisostomo   Refactor Select!
441
                      if (e.key === 'Escape') {
e355dd49   梁灏   add Select Component
442
443
444
                          this.hideMenu();
                      }
                      // next
c9b86944   Sergio Crisostomo   Refactor Select!
445
446
                      if (e.key === 'ArrowUp') {
                          this.navigateOptions(-1);
e355dd49   梁灏   add Select Component
447
448
                      }
                      // prev
c9b86944   Sergio Crisostomo   Refactor Select!
449
450
                      if (e.key === 'ArrowDown') {
                          this.navigateOptions(1);
e355dd49   梁灏   add Select Component
451
452
                      }
                      // enter
c9b86944   Sergio Crisostomo   Refactor Select!
453
454
455
456
                      if (e.key === 'Enter' && this.focusIndex > -1) {
                          const optionComponent = this.flatOptions[this.focusIndex];
                          const option = this.getOptionData(optionComponent.componentOptions.propsData.value);
                          this.onOptionClick(option);
e355dd49   梁灏   add Select Component
457
                      }
c9b86944   Sergio Crisostomo   Refactor Select!
458
459
460
                  } else {
                      const keysThatCanOpenSelect = ['ArrowUp', 'ArrowDown'];
                      if (keysThatCanOpenSelect.includes(e.key)) this.toggleMenu(null, true);
e355dd49   梁灏   add Select Component
461
462
                  }
  
e355dd49   梁灏   add Select Component
463
  
c9b86944   Sergio Crisostomo   Refactor Select!
464
465
466
              },
              navigateOptions(direction){
                  const optionsLength = this.flatOptions.length - 1;
e4ebd304   梁灏   update Select com...
467
  
c9b86944   Sergio Crisostomo   Refactor Select!
468
469
470
                  let index = this.focusIndex + direction;
                  if (index < 0) index = optionsLength;
                  if (index > optionsLength) index = 0;
e355dd49   梁灏   add Select Component
471
  
c9b86944   Sergio Crisostomo   Refactor Select!
472
473
474
475
476
477
478
                  // 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
479
                      }
c9b86944   Sergio Crisostomo   Refactor Select!
480
481
482
483
484
485
486
                      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...
487
                      }
c9b86944   Sergio Crisostomo   Refactor Select!
488
                      index = nearestActiveOption;
e355dd49   梁灏   add Select Component
489
                  }
e355dd49   梁灏   add Select Component
490
  
c9b86944   Sergio Crisostomo   Refactor Select!
491
                  this.focusIndex = index;
e4ebd304   梁灏   update Select com...
492
              },
c9b86944   Sergio Crisostomo   Refactor Select!
493
494
495
496
497
498
              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...
499
  
c9b86944   Sergio Crisostomo   Refactor Select!
500
501
502
                      const valueIsSelected = this.values.find(({value}) => value === option.value);
                      if (valueIsSelected){
                          this.values = this.values.filter(({value}) => value !== option.value);
e4ebd304   梁灏   update Select com...
503
                      } else {
c9b86944   Sergio Crisostomo   Refactor Select!
504
                          this.values = this.values.concat(option);
e4ebd304   梁灏   update Select com...
505
                      }
c9b86944   Sergio Crisostomo   Refactor Select!
506
507
508
509
510
511
512
513
514
515
516
  
                      this.isFocused = true; // so we put back focus after clicking with mouse on option elements
                  } else {
                      this.values = [option];
                      this.lastRemoteQuery = '';
                      this.hideMenu();
                  }
  
                  if (this.filterable){
                      const inputField = this.$refs.selectHead.$refs.input;
                      this.$nextTick(() => inputField.focus());
e4ce9917   梁灏   update Select com...
517
                  }
3e855e34   梁灏   fixed #46
518
              },
c9b86944   Sergio Crisostomo   Refactor Select!
519
              onQueryChange(query) {
2f0b086d   梁灏   fixed #116
520
                  this.query = query;
c9b86944   Sergio Crisostomo   Refactor Select!
521
                  if (this.query.length > 0) this.visible = true;
9c3a3e7d   YikaJ   更新 Select 组件
522
              },
c9b86944   Sergio Crisostomo   Refactor Select!
523
524
525
              toggleHeaderFocus({type}){
                  if (this.disabled) {
                      return;
15b72d31   梁灏   fixed #566
526
                  }
c9b86944   Sergio Crisostomo   Refactor Select!
527
                  this.isFocused = type === 'focus';
98bf25b3   梁灏   fixed #1286
528
              },
c9b86944   Sergio Crisostomo   Refactor Select!
529
530
              updateSlotOptions(){
                  this.slotOptions = this.$slots.default;
e355dd49   梁灏   add Select Component
531
532
              }
          },
e355dd49   梁灏   add Select Component
533
          watch: {
c9b86944   Sergio Crisostomo   Refactor Select!
534
535
536
537
538
539
              value(value){
                  const {getInitialValue, getOptionData, publicValue} = this;
  
                  if (value === '') this.values = [];
                  else if (JSON.stringify(value) !== JSON.stringify(publicValue)) {
                      this.$nextTick(() => this.values = getInitialValue().map(getOptionData));
e355dd49   梁灏   add Select Component
540
                  }
c9b86944   Sergio Crisostomo   Refactor Select!
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
              },
              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)
                          :
                          this.publicValue.value) : this.publicValue;
                      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
556
                  }
e355dd49   梁灏   add Select Component
557
              },
c9b86944   Sergio Crisostomo   Refactor Select!
558
559
560
561
              query (query) {
                  this.$emit('on-query-change', query);
                  const {remoteMethod, lastRemoteQuery} = this;
                  const hasValidQuery = query !== '' && (query !== lastRemoteQuery || !lastRemoteQuery);
45bcc14d   Sergio Crisostomo   prevent calling r...
562
563
                  const shouldCallRemoteMethod = remoteMethod && hasValidQuery && !this.preventRemoteCall;
                  this.preventRemoteCall = false; // remove the flag
c9b86944   Sergio Crisostomo   Refactor Select!
564
565
566
567
568
569
570
571
572
  
                  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...
573
                      }
e355dd49   梁灏   add Select Component
574
                  }
c9b86944   Sergio Crisostomo   Refactor Select!
575
                  if (query !== '' && this.remote) this.lastRemoteQuery = query;
e4ebd304   梁灏   update Select com...
576
              },
c9b86944   Sergio Crisostomo   Refactor Select!
577
578
579
580
581
582
583
584
585
              loading(state){
                  if (state === false){
                      this.updateSlotOptions();
                  }
              },
              isFocused(focused){
                  const {selectHead, reference} = this.$refs;
                  const el = this.filterable ? selectHead.$el.querySelector('input') : reference;
                  el[this.isFocused ? 'focus' : 'blur']();
d8bb1771   windywany   let select compon...
586
  
c9b86944   Sergio Crisostomo   Refactor Select!
587
588
589
590
                  // restore query value in filterable single selects
                  const [selectedOption] = this.values;
                  if (selectedOption && this.filterable && !this.multiple && !focused){
                      const selectedLabel = selectedOption.label || selectedOption.value;
45bcc14d   Sergio Crisostomo   prevent calling r...
591
592
593
594
                      if (this.query !== selectedLabel) {
                          this.preventRemoteCall = true;
                          this.query = selectedLabel;
                      }
c9b86944   Sergio Crisostomo   Refactor Select!
595
596
597
598
599
600
601
602
603
                  }
              },
              focusIndex(index){
                  if (index < 0) return;
                  // 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...
604
  
c9b86944   Sergio Crisostomo   Refactor Select!
605
606
607
608
609
610
611
                  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...
612
                  }
cf753854   Sergio Crisostomo   Corrections after...
613
614
615
              },
              dropVisible(open){
                  this.broadcast('Drop', open ? 'on-update-popper' : 'on-destroy-popper');
7f63e58c   Sergio Crisostomo   Make possible for...
616
617
618
619
620
621
              },
              selectOptions(){
                  if (this.hasExpectedValue){
                      this.values = this.values.map(this.getOptionData);
                      this.hasExpectedValue = false;
                  }
e355dd49   梁灏   add Select Component
622
623
              }
          }
b0893113   jingsam   :art: add eslint
624
      };
d6342fe1   jingsam   fixed ie bug
625
  </script>