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