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