iview/src/components/cascader/cascader.vue

326 lines
12 KiB
Vue
Raw Normal View History

<template>
2016-11-15 19:17:54 +08:00
<div :class="classes" v-clickoutside="handleClose">
<div :class="[prefixCls + '-rel']" @click="toggleOpen">
<slot>
<i-input
2017-05-11 17:17:44 +08:00
ref="input"
2017-05-10 09:18:54 +08:00
:readonly="!filterable"
:disabled="disabled"
2017-05-11 17:17:44 +08:00
:value="displayInputRender"
2017-05-10 18:24:30 +08:00
@on-change="handleInput"
:size="size"
2017-05-11 17:17:44 +08:00
:placeholder="inputPlaceholder"></i-input>
<div
:class="[prefixCls + '-label']"
v-show="filterable && query === ''"
@click="handleFocus">{{ displayRender }}</div>
2017-03-06 17:30:39 +08:00
<Icon type="ios-close" :class="[prefixCls + '-arrow']" v-show="showCloseIcon" @click.native.stop="clearSelect"></Icon>
<Icon type="arrow-down-b" :class="[prefixCls + '-arrow']"></Icon>
</slot>
</div>
2017-03-06 17:30:39 +08:00
<transition name="slide-up">
<Drop v-show="visible">
<div>
<Caspanel
2017-05-10 18:24:30 +08:00
v-show="!filterable || (filterable && query === '')"
2017-03-06 17:30:39 +08:00
ref="caspanel"
:prefix-cls="prefixCls"
:data="data"
:disabled="disabled"
:change-on-select="changeOnSelect"
:trigger="trigger"></Caspanel>
2017-05-10 18:24:30 +08:00
<div :class="[prefixCls + '-dropdown']" v-show="filterable && query !== ''">
<ul :class="[selectPrefixCls + '-dropdown-list']">
<li
:class="[selectPrefixCls + '-item', {
[selectPrefixCls + '-item-disabled']: item.disabled
}]"
v-for="(item, index) in querySelections"
@click="handleSelectItem(index)">{{ item.label }}</li>
</ul>
</div>
2017-03-06 17:30:39 +08:00
</div>
</Drop>
</transition>
</div>
</template>
<script>
import iInput from '../input/input.vue';
2017-03-06 17:30:39 +08:00
import Drop from '../select/dropdown.vue';
2016-11-15 19:17:54 +08:00
import Icon from '../icon/icon.vue';
import Caspanel from './caspanel.vue';
import clickoutside from '../../directives/clickoutside';
2016-11-15 19:17:54 +08:00
import { oneOf } from '../../utils/assist';
2017-03-06 17:30:39 +08:00
import Emitter from '../../mixins/emitter';
2017-05-11 17:17:44 +08:00
import Locale from '../../mixins/locale';
const prefixCls = 'ivu-cascader';
2017-05-10 18:24:30 +08:00
const selectPrefixCls = 'ivu-select';
export default {
name: 'Cascader',
2017-05-11 17:17:44 +08:00
mixins: [ Emitter, Locale ],
2017-03-06 17:30:39 +08:00
components: { iInput, Drop, Icon, Caspanel },
2016-11-15 19:17:54 +08:00
directives: { clickoutside },
props: {
data: {
type: Array,
default () {
2016-12-25 22:49:42 +08:00
return [];
}
},
value: {
2016-11-16 11:01:54 +08:00
type: Array,
default () {
2016-12-25 22:49:42 +08:00
return [];
2016-11-16 11:01:54 +08:00
}
},
disabled: {
type: Boolean,
default: false
},
clearable: {
type: Boolean,
2016-11-15 19:17:54 +08:00
default: true
},
placeholder: {
2017-05-11 17:17:44 +08:00
type: String
},
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,
2016-11-16 12:44:47 +08:00
default (label) {
2016-11-15 23:23:16 +08:00
return label.join(' / ');
}
2017-05-09 15:46:08 +08:00
},
loadData: {
type: Function
2017-05-10 09:18:54 +08:00
},
filterable: {
type: Boolean,
default: false
}
},
data () {
return {
prefixCls: prefixCls,
2017-05-10 18:24:30 +08:00
selectPrefixCls: selectPrefixCls,
2016-11-15 19:17:54 +08:00
visible: false,
selected: [],
2017-01-10 19:29:59 +08:00
tmpSelected: [],
2017-03-06 17:30:39 +08:00
updatingValue: false, // to fix set value in changeOnSelect type
2017-05-10 18:24:30 +08:00
currentValue: this.value,
query: ''
2016-12-25 22:49:42 +08:00
};
},
computed: {
2016-11-15 19:17:54 +08:00
classes () {
return [
`${prefixCls}`,
{
2016-11-16 10:07:03 +08:00
[`${prefixCls}-show-clear`]: this.showCloseIcon,
2017-05-11 17:17:44 +08:00
[`${prefixCls}-size-${this.size}`]: !!this.size,
2016-11-16 12:44:47 +08:00
[`${prefixCls}-visible`]: this.visible,
[`${prefixCls}-disabled`]: this.disabled
2016-11-15 19:17:54 +08:00
}
2016-12-25 22:49:42 +08:00
];
2016-11-15 19:17:54 +08:00
},
showCloseIcon () {
2017-04-10 22:43:24 +08:00
return this.currentValue && this.currentValue.length && this.clearable && !this.disabled;
2016-11-15 19:17:54 +08:00
},
displayRender () {
let label = [];
for (let i = 0; i < this.selected.length; i++) {
label.push(this.selected[i].label);
}
2016-11-16 10:07:03 +08:00
return this.renderFormat(label, this.selected);
2017-05-10 18:24:30 +08:00
},
2017-05-11 17:17:44 +08:00
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;
},
2017-05-10 18:24:30 +08:00
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,
item: item,
disabled: !!item.disabled
});
}
}
}
getSelections(this.data);
selections = selections.filter(item => item.label.indexOf(this.query) > -1);
return selections;
}
},
methods: {
2016-11-15 19:17:54 +08:00
clearSelect () {
2017-04-10 22:43:24 +08:00
if (this.disabled) return false;
2017-03-06 17:30:39 +08:00
const oldVal = JSON.stringify(this.currentValue);
this.currentValue = this.selected = this.tmpSelected = [];
2016-11-16 10:07:03 +08:00
this.handleClose();
2017-03-06 17:30:39 +08:00
this.emitValue(this.currentValue, oldVal);
// this.$broadcast('on-clear');
this.broadcast('Caspanel', 'on-clear');
2016-11-15 19:17:54 +08:00
},
handleClose () {
this.visible = false;
},
toggleOpen () {
if (this.disabled) return false;
if (this.visible) {
2017-05-10 18:24:30 +08:00
if (!this.filterable) this.handleClose();
} else {
this.onFocus();
}
},
2016-11-15 19:17:54 +08:00
onFocus () {
this.visible = true;
2017-03-06 17:30:39 +08:00
if (!this.currentValue.length) {
this.broadcast('Caspanel', 'on-clear');
2016-11-16 10:07:03 +08:00
}
2016-11-15 19:17:54 +08:00
},
updateResult (result) {
2016-11-15 23:23:16 +08:00
this.tmpSelected = result;
},
2016-11-16 10:07:03 +08:00
updateSelected (init = false) {
if (!this.changeOnSelect || init) {
2017-03-06 17:30:39 +08:00
this.broadcast('Caspanel', 'on-find-selected', {
value: this.currentValue
});
2016-11-16 10:07:03 +08:00
}
},
emitValue (val, oldVal) {
if (JSON.stringify(val) !== oldVal) {
2017-03-06 17:30:39 +08:00
this.$emit('on-change', this.currentValue, JSON.parse(JSON.stringify(this.selected)));
2017-03-29 09:33:31 +08:00
this.$nextTick(() => {
this.dispatch('FormItem', 'on-form-change', {
value: this.currentValue,
selected: JSON.parse(JSON.stringify(this.selected))
});
});
2016-11-16 10:07:03 +08:00
}
2017-05-10 18:24:30 +08:00
},
handleInput (event) {
this.query = event.target.value;
},
handleSelectItem (index) {
const item = this.querySelections[index];
if (item.item.disabled) return false;
2017-05-11 17:17:44 +08:00
// todo 还有bug选完删除后失焦不能回到上次选择的
2017-05-10 18:24:30 +08:00
this.query = '';
2017-05-11 17:17:44 +08:00
this.$refs.input.currentValue = '';
2017-05-10 18:24:30 +08:00
const oldVal = JSON.stringify(this.currentValue);
this.currentValue = item.value.split(',');
this.emitValue(this.currentValue, oldVal);
this.handleClose();
2017-05-11 17:17:44 +08:00
},
handleFocus () {
this.$refs.input.focus();
2016-11-15 19:17:54 +08:00
}
},
2017-05-04 10:33:50 +08:00
created () {
2017-03-06 17:30:39 +08:00
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;
2016-11-15 23:23:16 +08:00
if (lastValue || changeOnSelect) {
2017-03-06 17:30:39 +08:00
const oldVal = JSON.stringify(this.currentValue);
2016-11-15 23:23:16 +08:00
this.selected = this.tmpSelected;
let newVal = [];
this.selected.forEach((item) => {
newVal.push(item.value);
});
2016-11-15 19:17:54 +08:00
2016-11-16 10:07:03 +08:00
if (!fromInit) {
2017-01-10 19:29:59 +08:00
this.updatingValue = true;
2017-03-06 17:30:39 +08:00
this.currentValue = newVal;
this.emitValue(this.currentValue, oldVal);
2016-11-15 23:23:16 +08:00
}
}
if (lastValue && !fromInit) {
this.handleClose();
}
2017-03-06 17:30:39 +08:00
});
2016-11-15 23:23:16 +08:00
},
2017-05-04 10:33:50 +08:00
mounted () {
this.updateSelected(true);
},
2016-11-15 23:23:16 +08:00
watch: {
visible (val) {
if (val) {
2017-03-06 17:30:39 +08:00
if (this.currentValue.length) {
2016-11-15 23:23:16 +08:00
this.updateSelected();
}
2017-05-11 17:17:44 +08:00
} else {
if (this.filterable) {
this.query = '';
this.$refs.input.currentValue = '';
}
2016-11-15 23:23:16 +08:00
}
2017-04-06 09:17:45 +08:00
this.$emit('on-visible-change', val);
2016-12-15 20:33:16 +08:00
},
2017-03-06 17:30:39 +08:00
value (val) {
this.currentValue = val;
2017-03-27 09:41:08 +08:00
if (!val.length) this.selected = [];
2017-03-06 17:30:39 +08:00
},
currentValue () {
this.$emit('input', this.currentValue);
2017-01-10 19:29:59 +08:00
if (this.updatingValue) {
this.updatingValue = false;
return;
}
this.updateSelected(true);
2017-04-01 10:22:34 +08:00
},
2017-05-09 15:46:08 +08:00
data: {
deep: true,
handler () {
this.$nextTick(() => this.updateSelected());
}
2016-11-15 23:23:16 +08:00
}
}
2016-12-25 22:49:42 +08:00
};
</script>