Blame view

src/components/cascader/cascader.vue 15.4 KB
0a48ac45   梁灏   Input add readonl...
1
  <template>
26369639   Graham Fairweather   Update v-click-ou...
2
      <div :class="classes" v-click-outside="handleClose">
a9cd43b3   梁灏   Cascader add tran...
3
          <div :class="[prefixCls + '-rel']" @click="toggleOpen" ref="reference">
0460a1e8   梁灏   fixed #812
4
              <input type="hidden" :name="name" :value="currentValue">
75e5c6a5   梁灏   Cascader support ...
5
6
              <slot>
                  <i-input
acb79ba3   梁灏   fixed #433
7
                      :element-id="elementId"
3ae11e85   梁灏   update Cascader
8
                      ref="input"
5a9a12cd   梁灏   update Cascader
9
                      :readonly="!filterable"
75e5c6a5   梁灏   Cascader support ...
10
                      :disabled="disabled"
3ae11e85   梁灏   update Cascader
11
                      :value="displayInputRender"
7ec0b533   梁灏   Cascader support ...
12
                      @on-change="handleInput"
75e5c6a5   梁灏   Cascader support ...
13
                      :size="size"
3ae11e85   梁灏   update Cascader
14
15
16
17
18
                      :placeholder="inputPlaceholder"></i-input>
                  <div
                      :class="[prefixCls + '-label']"
                      v-show="filterable && query === ''"
                      @click="handleFocus">{{ displayRender }}</div>
207d6b07   梁灏   update Cascader I...
19
20
                  <Icon type="ios-close-circle" :class="[prefixCls + '-arrow']" v-show="showCloseIcon" @click.native.stop="clearSelect"></Icon>
                  <Icon type="ios-arrow-down" :class="[prefixCls + '-arrow']"></Icon>
75e5c6a5   梁灏   Cascader support ...
21
22
              </slot>
          </div>
e09b07b7   huanghong   解决drop弹出动画异常
23
          <transition name="transition-drop">
a9cd43b3   梁灏   Cascader add tran...
24
25
26
27
28
29
              <Drop
                  v-show="visible"
                  :class="{ [prefixCls + '-transfer']: transfer }"
                  ref="drop"
                  :data-transfer="transfer"
                  v-transfer-dom>
47a7f21d   梁灏   support Cascader
30
31
                  <div>
                      <Caspanel
7ec0b533   梁灏   Cascader support ...
32
                          v-show="!filterable || (filterable && query === '')"
47a7f21d   梁灏   support Cascader
33
34
35
36
37
38
                          ref="caspanel"
                          :prefix-cls="prefixCls"
                          :data="data"
                          :disabled="disabled"
                          :change-on-select="changeOnSelect"
                          :trigger="trigger"></Caspanel>
952ddb51   梁灏   update Cascader
39
                      <div :class="[prefixCls + '-dropdown']" v-show="filterable && query !== '' && querySelections.length">
7ec0b533   梁灏   Cascader support ...
40
41
42
43
44
45
                          <ul :class="[selectPrefixCls + '-dropdown-list']">
                              <li
                                  :class="[selectPrefixCls + '-item', {
                                      [selectPrefixCls + '-item-disabled']: item.disabled
                                  }]"
                                  v-for="(item, index) in querySelections"
4e23e47c   梁灏   update Cascader
46
                                  @click="handleSelectItem(index)" v-html="item.display"></li>
7ec0b533   梁灏   Cascader support ...
47
48
                          </ul>
                      </div>
952ddb51   梁灏   update Cascader
49
                      <ul v-show="filterable && query !== '' && !querySelections.length" :class="[prefixCls + '-not-found-tip']"><li>{{ localeNotFoundText }}</li></ul>
47a7f21d   梁灏   support Cascader
50
51
52
                  </div>
              </Drop>
          </transition>
6ff31952   梁灏   optimize Input sh...
53
      </div>
0a48ac45   梁灏   Input add readonl...
54
55
  </template>
  <script>
6ff31952   梁灏   optimize Input sh...
56
      import iInput from '../input/input.vue';
47a7f21d   梁灏   support Cascader
57
      import Drop from '../select/dropdown.vue';
c463ab87   梁灏   add Cascader
58
59
      import Icon from '../icon/icon.vue';
      import Caspanel from './caspanel.vue';
26369639   Graham Fairweather   Update v-click-ou...
60
      import {directive as clickOutside} from 'v-click-outside-x';
a9cd43b3   梁灏   Cascader add tran...
61
      import TransferDom from '../../directives/transfer-dom';
c463ab87   梁灏   add Cascader
62
      import { oneOf } from '../../utils/assist';
47a7f21d   梁灏   support Cascader
63
      import Emitter from '../../mixins/emitter';
3ae11e85   梁灏   update Cascader
64
      import Locale from '../../mixins/locale';
6ff31952   梁灏   optimize Input sh...
65
66
  
      const prefixCls = 'ivu-cascader';
7ec0b533   梁灏   Cascader support ...
67
      const selectPrefixCls = 'ivu-select';
6ff31952   梁灏   optimize Input sh...
68
  
0a48ac45   梁灏   Input add readonl...
69
      export default {
34ee7b4a   梁灏   support Tree & ad...
70
          name: 'Cascader',
3ae11e85   梁灏   update Cascader
71
          mixins: [ Emitter, Locale ],
47a7f21d   梁灏   support Cascader
72
          components: { iInput, Drop, Icon, Caspanel },
26369639   Graham Fairweather   Update v-click-ou...
73
          directives: { clickOutside, TransferDom },
0a48ac45   梁灏   Input add readonl...
74
          props: {
6ff31952   梁灏   optimize Input sh...
75
76
77
              data: {
                  type: Array,
                  default () {
b0893113   jingsam   :art: add eslint
78
                      return [];
6ff31952   梁灏   optimize Input sh...
79
80
81
                  }
              },
              value: {
9ec927b1   梁灏   update Cascader
82
83
                  type: Array,
                  default () {
b0893113   jingsam   :art: add eslint
84
                      return [];
9ec927b1   梁灏   update Cascader
85
                  }
6ff31952   梁灏   optimize Input sh...
86
87
88
89
90
91
92
              },
              disabled: {
                  type: Boolean,
                  default: false
              },
              clearable: {
                  type: Boolean,
c463ab87   梁灏   add Cascader
93
                  default: true
6ff31952   梁灏   optimize Input sh...
94
95
              },
              placeholder: {
3ae11e85   梁灏   update Cascader
96
                  type: String
6ff31952   梁灏   optimize Input sh...
97
98
99
              },
              size: {
                  validator (value) {
a7e1c2d6   梁灏   Cascader support ...
100
101
102
103
                      return oneOf(value, ['small', 'large', 'default']);
                  },
                  default () {
                      return this.$IVIEW.size === '' ? 'default' : this.$IVIEW.size;
6ff31952   梁灏   optimize Input sh...
104
105
106
107
108
109
110
111
112
113
114
115
116
117
                  }
              },
              trigger: {
                  validator (value) {
                      return oneOf(value, ['click', 'hover']);
                  },
                  default: 'click'
              },
              changeOnSelect: {
                  type: Boolean,
                  default: false
              },
              renderFormat: {
                  type: Function,
05b5dd7b   梁灏   update Cascader
118
                  default (label) {
bd4e3b9b   梁灏   update Cascader
119
                      return label.join(' / ');
6ff31952   梁灏   optimize Input sh...
120
                  }
f7ffdac5   梁灏   Cascader support ...
121
122
123
              },
              loadData: {
                  type: Function
5a9a12cd   梁灏   update Cascader
124
125
126
127
              },
              filterable: {
                  type: Boolean,
                  default: false
952ddb51   梁灏   update Cascader
128
129
130
              },
              notFoundText: {
                  type: String
a9cd43b3   梁灏   Cascader add tran...
131
132
133
              },
              transfer: {
                  type: Boolean,
a7e1c2d6   梁灏   Cascader support ...
134
135
136
                  default () {
                      return this.$IVIEW.transfer === '' ? false : this.$IVIEW.transfer;
                  }
0460a1e8   梁灏   fixed #812
137
138
139
              },
              name: {
                  type: String
acb79ba3   梁灏   fixed #433
140
141
142
              },
              elementId: {
                  type: String
6ff31952   梁灏   optimize Input sh...
143
              }
0a48ac45   梁灏   Input add readonl...
144
145
146
          },
          data () {
              return {
6ff31952   梁灏   optimize Input sh...
147
                  prefixCls: prefixCls,
7ec0b533   梁灏   Cascader support ...
148
                  selectPrefixCls: selectPrefixCls,
c463ab87   梁灏   add Cascader
149
150
                  visible: false,
                  selected: [],
2810d8c7   梁灏   fixed #183
151
                  tmpSelected: [],
47a7f21d   梁灏   support Cascader
152
                  updatingValue: false,    // to fix set value in changeOnSelect type
7ec0b533   梁灏   Cascader support ...
153
                  currentValue: this.value,
933afc7a   梁灏   fixed #950
154
155
156
                  query: '',
                  validDataStr: '',
                  isLoadedChildren: false    // #950
b0893113   jingsam   :art: add eslint
157
              };
0a48ac45   梁灏   Input add readonl...
158
159
          },
          computed: {
c463ab87   梁灏   add Cascader
160
161
162
163
              classes () {
                  return [
                      `${prefixCls}`,
                      {
165bb7c9   梁灏   update Cascader
164
                          [`${prefixCls}-show-clear`]: this.showCloseIcon,
3ae11e85   梁灏   update Cascader
165
                          [`${prefixCls}-size-${this.size}`]: !!this.size,
05b5dd7b   梁灏   update Cascader
166
                          [`${prefixCls}-visible`]: this.visible,
952ddb51   梁灏   update Cascader
167
168
                          [`${prefixCls}-disabled`]: this.disabled,
                          [`${prefixCls}-not-found`]: this.filterable && this.query !== '' && !this.querySelections.length
c463ab87   梁灏   add Cascader
169
                      }
b0893113   jingsam   :art: add eslint
170
                  ];
c463ab87   梁灏   add Cascader
171
172
              },
              showCloseIcon () {
65b41a2d   梁灏   fixed #635
173
                  return this.currentValue && this.currentValue.length && this.clearable && !this.disabled;
c463ab87   梁灏   add Cascader
174
              },
6ff31952   梁灏   optimize Input sh...
175
176
177
178
179
180
              displayRender () {
                  let label = [];
                  for (let i = 0; i < this.selected.length; i++) {
                      label.push(this.selected[i].label);
                  }
  
165bb7c9   梁灏   update Cascader
181
                  return this.renderFormat(label, this.selected);
7ec0b533   梁灏   Cascader support ...
182
              },
3ae11e85   梁灏   update Cascader
183
184
185
186
187
188
189
190
191
192
193
194
195
              displayInputRender () {
                  return this.filterable ? '' : this.displayRender;
              },
              localePlaceholder () {
                  if (this.placeholder === undefined) {
                      return this.t('i.select.placeholder');
                  } else {
                      return this.placeholder;
                  }
              },
              inputPlaceholder () {
                  return this.filterable && this.currentValue.length ? null : this.localePlaceholder;
              },
952ddb51   梁灏   update Cascader
196
197
198
199
200
201
202
              localeNotFoundText () {
                  if (this.notFoundText === undefined) {
                      return this.t('i.select.noMatch');
                  } else {
                      return this.notFoundText;
                  }
              },
7ec0b533   梁灏   Cascader support ...
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
              querySelections () {
                  let selections = [];
                  function getSelections (arr, label, value) {
                      for (let i = 0; i < arr.length; i++) {
                          let item = arr[i];
                          item.__label = label ? label + ' / ' + item.label : item.label;
                          item.__value = value ? value + ',' + item.value : item.value;
  
                          if (item.children && item.children.length) {
                              getSelections(item.children, item.__label, item.__value);
                              delete item.__label;
                              delete item.__value;
                          } else {
                              selections.push({
                                  label: item.__label,
                                  value: item.__value,
4e23e47c   梁灏   update Cascader
219
                                  display: item.__label,
7ec0b533   梁灏   Cascader support ...
220
221
222
223
224
225
226
                                  item: item,
                                  disabled: !!item.disabled
                              });
                          }
                      }
                  }
                  getSelections(this.data);
f7caa832   GLChen   Update cascader.vue
227
                  selections = selections.filter(item => {
3288b530   梁灏   update
228
                      return item.label ? item.label.indexOf(this.query) > -1 : false;
f7caa832   GLChen   Update cascader.vue
229
                  }).map(item => {
4e23e47c   梁灏   update Cascader
230
231
232
                      item.display = item.display.replace(new RegExp(this.query, 'g'), `<span>${this.query}</span>`);
                      return item;
                  });
7ec0b533   梁灏   Cascader support ...
233
                  return selections;
6ff31952   梁灏   optimize Input sh...
234
              }
0a48ac45   梁灏   Input add readonl...
235
236
          },
          methods: {
c463ab87   梁灏   add Cascader
237
              clearSelect () {
65b41a2d   梁灏   fixed #635
238
                  if (this.disabled) return false;
47a7f21d   梁灏   support Cascader
239
240
                  const oldVal = JSON.stringify(this.currentValue);
                  this.currentValue = this.selected = this.tmpSelected = [];
165bb7c9   梁灏   update Cascader
241
                  this.handleClose();
47a7f21d   梁灏   support Cascader
242
243
244
                  this.emitValue(this.currentValue, oldVal);
  //                this.$broadcast('on-clear');
                  this.broadcast('Caspanel', 'on-clear');
c463ab87   梁灏   add Cascader
245
246
247
248
              },
              handleClose () {
                  this.visible = false;
              },
75e5c6a5   梁灏   Cascader support ...
249
              toggleOpen () {
2aa0aa6e   Rijn   fix bug: cascader...
250
                  if (this.disabled) return false;
75e5c6a5   梁灏   Cascader support ...
251
                  if (this.visible) {
7ec0b533   梁灏   Cascader support ...
252
                      if (!this.filterable) this.handleClose();
75e5c6a5   梁灏   Cascader support ...
253
254
255
256
                  } else {
                      this.onFocus();
                  }
              },
c463ab87   梁灏   add Cascader
257
258
              onFocus () {
                  this.visible = true;
47a7f21d   梁灏   support Cascader
259
260
                  if (!this.currentValue.length) {
                      this.broadcast('Caspanel', 'on-clear');
165bb7c9   梁灏   update Cascader
261
                  }
c463ab87   梁灏   add Cascader
262
263
              },
              updateResult (result) {
bd4e3b9b   梁灏   update Cascader
264
265
                  this.tmpSelected = result;
              },
5dc44ccf   梁灏   fixed #2793
266
267
268
              updateSelected (init = false, changeOnSelectDataChange = false) {
                  // #2793 changeOnSelectDataChange used for changeOnSelect when data changed and set value
                  if (!this.changeOnSelect || init || changeOnSelectDataChange) {
47a7f21d   梁灏   support Cascader
269
270
271
                      this.broadcast('Caspanel', 'on-find-selected', {
                          value: this.currentValue
                      });
165bb7c9   梁灏   update Cascader
272
273
274
275
                  }
              },
              emitValue (val, oldVal) {
                  if (JSON.stringify(val) !== oldVal) {
47a7f21d   梁灏   support Cascader
276
                      this.$emit('on-change', this.currentValue, JSON.parse(JSON.stringify(this.selected)));
cc419499   梁灏   fixed #525
277
278
279
280
281
                      this.$nextTick(() => {
                          this.dispatch('FormItem', 'on-form-change', {
                              value: this.currentValue,
                              selected: JSON.parse(JSON.stringify(this.selected))
                          });
cd78c9c4   梁灏   some comps suppor...
282
                      });
165bb7c9   梁灏   update Cascader
283
                  }
7ec0b533   梁灏   Cascader support ...
284
285
286
287
288
289
290
291
              },
              handleInput (event) {
                  this.query = event.target.value;
              },
              handleSelectItem (index) {
                  const item = this.querySelections[index];
  
                  if (item.item.disabled) return false;
7ec0b533   梁灏   Cascader support ...
292
                  this.query = '';
3ae11e85   梁灏   update Cascader
293
                  this.$refs.input.currentValue = '';
7ec0b533   梁灏   Cascader support ...
294
295
296
297
                  const oldVal = JSON.stringify(this.currentValue);
                  this.currentValue = item.value.split(',');
                  this.emitValue(this.currentValue, oldVal);
                  this.handleClose();
3ae11e85   梁灏   update Cascader
298
299
300
              },
              handleFocus () {
                  this.$refs.input.focus();
933afc7a   梁灏   fixed #950
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
              },
              // 排除 loading 后的 data,避免重复触发 updateSelect
              getValidData (data) {
                  function deleteData (item) {
                      const new_item = Object.assign({}, item);
                      if ('loading' in new_item) {
                          delete new_item.loading;
                      }
                      if ('__value' in new_item) {
                          delete new_item.__value;
                      }
                      if ('__label' in new_item) {
                          delete new_item.__label;
                      }
                      if ('children' in new_item && new_item.children.length) {
                          new_item.children = new_item.children.map(i => deleteData(i));
                      }
                      return new_item;
                  }
  
                  return data.map(item => deleteData(item));
c463ab87   梁灏   add Cascader
322
323
              }
          },
687c4562   梁灏   fixed #810
324
          created () {
933afc7a   梁灏   fixed #950
325
              this.validDataStr = JSON.stringify(this.getValidData(this.data));
47a7f21d   梁灏   support Cascader
326
327
328
329
330
331
332
              this.$on('on-result-change', (params) => {
                  // lastValue: is click the final val
                  // fromInit: is this emit from update value
                  const lastValue = params.lastValue;
                  const changeOnSelect = params.changeOnSelect;
                  const fromInit = params.fromInit;
  
bd4e3b9b   梁灏   update Cascader
333
                  if (lastValue || changeOnSelect) {
47a7f21d   梁灏   support Cascader
334
                      const oldVal = JSON.stringify(this.currentValue);
bd4e3b9b   梁灏   update Cascader
335
336
337
338
339
340
                      this.selected = this.tmpSelected;
  
                      let newVal = [];
                      this.selected.forEach((item) => {
                          newVal.push(item.value);
                      });
c463ab87   梁灏   add Cascader
341
  
165bb7c9   梁灏   update Cascader
342
                      if (!fromInit) {
2810d8c7   梁灏   fixed #183
343
                          this.updatingValue = true;
47a7f21d   梁灏   support Cascader
344
345
                          this.currentValue = newVal;
                          this.emitValue(this.currentValue, oldVal);
bd4e3b9b   梁灏   update Cascader
346
347
348
349
350
                      }
                  }
                  if (lastValue && !fromInit) {
                      this.handleClose();
                  }
47a7f21d   梁灏   support Cascader
351
              });
bd4e3b9b   梁灏   update Cascader
352
          },
687c4562   梁灏   fixed #810
353
354
355
          mounted () {
              this.updateSelected(true);
          },
bd4e3b9b   梁灏   update Cascader
356
357
358
          watch: {
              visible (val) {
                  if (val) {
47a7f21d   梁灏   support Cascader
359
                      if (this.currentValue.length) {
bd4e3b9b   梁灏   update Cascader
360
361
                          this.updateSelected();
                      }
a9cd43b3   梁灏   Cascader add tran...
362
363
364
                      if (this.transfer) {
                          this.$refs.drop.update();
                      }
605bd2ae   huanghong   解决Cascader 下拉弹出位置问题
365
                      this.broadcast('Drop', 'on-update-popper');
3ae11e85   梁灏   update Cascader
366
367
368
369
370
                  } else {
                      if (this.filterable) {
                          this.query = '';
                          this.$refs.input.currentValue = '';
                      }
a9cd43b3   梁灏   Cascader add tran...
371
372
373
                      if (this.transfer) {
                          this.$refs.drop.destroy();
                      }
605bd2ae   huanghong   解决Cascader 下拉弹出位置问题
374
                      this.broadcast('Drop', 'on-destroy-popper');
bd4e3b9b   梁灏   update Cascader
375
                  }
bb1a3c38   梁灏   fixed #593
376
                  this.$emit('on-visible-change', val);
f46ebc38   梁灏   fixed #130
377
              },
47a7f21d   梁灏   support Cascader
378
379
              value (val) {
                  this.currentValue = val;
3bbb6b5f   梁灏   fixed #488
380
                  if (!val.length) this.selected = [];
47a7f21d   梁灏   support Cascader
381
382
383
              },
              currentValue () {
                  this.$emit('input', this.currentValue);
2810d8c7   梁灏   fixed #183
384
385
386
387
388
                  if (this.updatingValue) {
                      this.updatingValue = false;
                      return;
                  }
                  this.updateSelected(true);
48af1359   梁灏   fixed #553
389
              },
f7ffdac5   梁灏   Cascader support ...
390
391
392
              data: {
                  deep: true,
                  handler () {
933afc7a   梁灏   fixed #950
393
394
395
396
                      const validDataStr = JSON.stringify(this.getValidData(this.data));
                      if (validDataStr !== this.validDataStr) {
                          this.validDataStr = validDataStr;
                          if (!this.isLoadedChildren) {
5dc44ccf   梁灏   fixed #2793
397
                              this.$nextTick(() => this.updateSelected(false, this.changeOnSelect));
933afc7a   梁灏   fixed #950
398
399
400
                          }
                          this.isLoadedChildren = false;
                      }
f7ffdac5   梁灏   Cascader support ...
401
                  }
bd4e3b9b   梁灏   update Cascader
402
              }
0a48ac45   梁灏   Input add readonl...
403
          }
b0893113   jingsam   :art: add eslint
404
405
      };
  </script>