2016-12-03 23:46:25 +08:00
|
|
|
<template>
|
|
|
|
<div
|
|
|
|
:class="[prefixCls]"
|
2016-12-04 17:04:48 +08:00
|
|
|
v-clickoutside="handleClose"
|
2016-12-03 23:46:25 +08:00
|
|
|
@mouseenter="handleMouseenter"
|
2016-12-04 17:04:48 +08:00
|
|
|
@mouseleave="handleMouseleave">
|
2017-03-03 17:46:09 +08:00
|
|
|
<div :class="[prefixCls + '-rel']" ref="reference" @click="handleClick"><slot></slot></div>
|
|
|
|
<transition :name="transition">
|
2017-07-18 17:58:45 +08:00
|
|
|
<Drop
|
|
|
|
v-show="currentVisible"
|
|
|
|
:placement="placement"
|
|
|
|
ref="drop"
|
|
|
|
@mouseenter.native="handleMouseenter"
|
|
|
|
@mouseleave.native="handleMouseleave"
|
|
|
|
v-transfer-dom:forbidden="transfer"><slot name="list"></slot></Drop>
|
2017-03-03 17:46:09 +08:00
|
|
|
</transition>
|
2016-12-03 23:46:25 +08:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
<script>
|
|
|
|
import Drop from '../select/dropdown.vue';
|
|
|
|
import clickoutside from '../../directives/clickoutside';
|
2017-07-18 17:58:45 +08:00
|
|
|
import TransferDom from '../../directives/transfer-dom';
|
2017-04-27 16:55:48 +08:00
|
|
|
import { oneOf, findComponentUpward } from '../../utils/assist';
|
2016-12-03 23:46:25 +08:00
|
|
|
|
|
|
|
const prefixCls = 'ivu-dropdown';
|
|
|
|
|
|
|
|
export default {
|
2016-12-04 13:35:09 +08:00
|
|
|
name: 'Dropdown',
|
2017-07-18 17:58:45 +08:00
|
|
|
directives: { clickoutside, TransferDom },
|
2016-12-03 23:46:25 +08:00
|
|
|
components: { Drop },
|
|
|
|
props: {
|
|
|
|
trigger: {
|
|
|
|
validator (value) {
|
2017-01-13 11:32:56 +08:00
|
|
|
return oneOf(value, ['click', 'hover', 'custom']);
|
2016-12-03 23:46:25 +08:00
|
|
|
},
|
|
|
|
default: 'hover'
|
|
|
|
},
|
2016-12-04 13:35:09 +08:00
|
|
|
placement: {
|
2016-12-03 23:46:25 +08:00
|
|
|
validator (value) {
|
2016-12-04 13:35:09 +08:00
|
|
|
return oneOf(value, ['top', 'top-start', 'top-end', 'bottom', 'bottom-start', 'bottom-end', 'left', 'left-start', 'left-end', 'right', 'right-start', 'right-end']);
|
2016-12-03 23:46:25 +08:00
|
|
|
},
|
2016-12-04 13:35:09 +08:00
|
|
|
default: 'bottom'
|
2017-01-13 11:32:56 +08:00
|
|
|
},
|
|
|
|
visible: {
|
|
|
|
type: Boolean,
|
|
|
|
default: false
|
2017-07-18 17:58:45 +08:00
|
|
|
},
|
|
|
|
transfer: {
|
|
|
|
type: Boolean,
|
|
|
|
default: false
|
2016-12-03 23:46:25 +08:00
|
|
|
}
|
|
|
|
},
|
2016-12-04 17:04:48 +08:00
|
|
|
computed: {
|
|
|
|
transition () {
|
|
|
|
return ['bottom-start', 'bottom', 'bottom-end'].indexOf(this.placement) > -1 ? 'slide-up' : 'fade';
|
|
|
|
}
|
|
|
|
},
|
2016-12-03 23:46:25 +08:00
|
|
|
data () {
|
|
|
|
return {
|
2017-03-03 17:46:09 +08:00
|
|
|
prefixCls: prefixCls,
|
|
|
|
currentVisible: this.visible
|
2016-12-25 22:49:42 +08:00
|
|
|
};
|
2016-12-03 23:46:25 +08:00
|
|
|
},
|
2017-03-03 17:46:09 +08:00
|
|
|
watch: {
|
|
|
|
visible (val) {
|
|
|
|
this.currentVisible = val;
|
|
|
|
},
|
|
|
|
currentVisible (val) {
|
|
|
|
if (val) {
|
|
|
|
this.$refs.drop.update();
|
|
|
|
} else {
|
|
|
|
this.$refs.drop.destroy();
|
|
|
|
}
|
|
|
|
this.$emit('on-visible-change', val);
|
|
|
|
}
|
|
|
|
},
|
2016-12-03 23:46:25 +08:00
|
|
|
methods: {
|
|
|
|
handleClick () {
|
2017-01-13 11:32:56 +08:00
|
|
|
if (this.trigger === 'custom') return false;
|
2016-12-03 23:46:25 +08:00
|
|
|
if (this.trigger !== 'click') {
|
|
|
|
return false;
|
|
|
|
}
|
2017-03-03 17:46:09 +08:00
|
|
|
this.currentVisible = !this.currentVisible;
|
2016-12-03 23:46:25 +08:00
|
|
|
},
|
|
|
|
handleMouseenter () {
|
2017-01-13 11:32:56 +08:00
|
|
|
if (this.trigger === 'custom') return false;
|
2016-12-03 23:46:25 +08:00
|
|
|
if (this.trigger !== 'hover') {
|
|
|
|
return false;
|
|
|
|
}
|
2017-07-18 17:58:45 +08:00
|
|
|
if (this.timeout) clearTimeout(this.timeout);
|
2016-12-03 23:46:25 +08:00
|
|
|
this.timeout = setTimeout(() => {
|
2017-03-03 17:46:09 +08:00
|
|
|
this.currentVisible = true;
|
2016-12-03 23:46:25 +08:00
|
|
|
}, 250);
|
|
|
|
},
|
|
|
|
handleMouseleave () {
|
2017-01-13 11:32:56 +08:00
|
|
|
if (this.trigger === 'custom') return false;
|
2016-12-03 23:46:25 +08:00
|
|
|
if (this.trigger !== 'hover') {
|
|
|
|
return false;
|
|
|
|
}
|
2017-07-18 17:58:45 +08:00
|
|
|
if (this.timeout) {
|
|
|
|
clearTimeout(this.timeout);
|
|
|
|
this.timeout = setTimeout(() => {
|
|
|
|
this.currentVisible = false;
|
|
|
|
}, 150);
|
|
|
|
}
|
2016-12-03 23:46:25 +08:00
|
|
|
},
|
|
|
|
handleClose () {
|
2017-01-13 11:32:56 +08:00
|
|
|
if (this.trigger === 'custom') return false;
|
2016-12-03 23:46:25 +08:00
|
|
|
if (this.trigger !== 'click') {
|
|
|
|
return false;
|
|
|
|
}
|
2017-03-03 17:46:09 +08:00
|
|
|
this.currentVisible = false;
|
2016-12-04 14:33:06 +08:00
|
|
|
},
|
|
|
|
hasParent () {
|
2017-04-27 16:55:48 +08:00
|
|
|
// const $parent = this.$parent.$parent.$parent;
|
|
|
|
const $parent = findComponentUpward(this, 'Dropdown');
|
|
|
|
if ($parent) {
|
2016-12-04 14:33:06 +08:00
|
|
|
return $parent;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
2016-12-03 23:46:25 +08:00
|
|
|
}
|
|
|
|
},
|
2017-03-03 17:46:09 +08:00
|
|
|
mounted () {
|
|
|
|
this.$on('on-click', (key) => {
|
2016-12-04 14:33:06 +08:00
|
|
|
const $parent = this.hasParent();
|
2017-03-03 17:46:09 +08:00
|
|
|
if ($parent) $parent.$emit('on-click', key);
|
|
|
|
});
|
|
|
|
this.$on('on-hover-click', () => {
|
2016-12-04 14:33:06 +08:00
|
|
|
const $parent = this.hasParent();
|
2016-12-04 17:04:48 +08:00
|
|
|
if ($parent) {
|
|
|
|
this.$nextTick(() => {
|
2017-01-13 11:32:56 +08:00
|
|
|
if (this.trigger === 'custom') return false;
|
2017-03-03 17:46:09 +08:00
|
|
|
this.currentVisible = false;
|
2016-12-04 17:04:48 +08:00
|
|
|
});
|
|
|
|
$parent.$emit('on-hover-click');
|
|
|
|
} else {
|
|
|
|
this.$nextTick(() => {
|
2017-01-13 11:32:56 +08:00
|
|
|
if (this.trigger === 'custom') return false;
|
2017-03-03 17:46:09 +08:00
|
|
|
this.currentVisible = false;
|
2016-12-04 17:04:48 +08:00
|
|
|
});
|
|
|
|
}
|
2017-03-03 17:46:09 +08:00
|
|
|
});
|
|
|
|
this.$on('on-haschild-click', () => {
|
2016-12-04 14:33:06 +08:00
|
|
|
this.$nextTick(() => {
|
2017-01-13 11:32:56 +08:00
|
|
|
if (this.trigger === 'custom') return false;
|
2017-03-03 17:46:09 +08:00
|
|
|
this.currentVisible = true;
|
2016-12-04 14:33:06 +08:00
|
|
|
});
|
|
|
|
const $parent = this.hasParent();
|
|
|
|
if ($parent) $parent.$emit('on-haschild-click');
|
2017-03-03 17:46:09 +08:00
|
|
|
});
|
2017-03-03 18:08:10 +08:00
|
|
|
}
|
2016-12-25 22:49:42 +08:00
|
|
|
};
|
|
|
|
</script>
|