2016-12-03 23:46:25 +08:00
|
|
|
<template>
|
|
|
|
<div
|
|
|
|
:class="[prefixCls]"
|
|
|
|
@click="handleClick"
|
|
|
|
@mouseenter="handleMouseenter"
|
|
|
|
@mouseleave="handleMouseleave"
|
|
|
|
v-clickoutside="handleClose">
|
|
|
|
<div :class="[prefixCls-rel]" v-el:reference><slot></slot></div>
|
2016-12-04 13:35:09 +08:00
|
|
|
<Drop v-show="visible" :placement="placement" transition="slide-up" v-ref:drop><slot name="list"></slot></Drop>
|
2016-12-03 23:46:25 +08:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
<script>
|
|
|
|
import Drop from '../select/dropdown.vue';
|
|
|
|
import clickoutside from '../../directives/clickoutside';
|
|
|
|
import { oneOf } from '../../utils/assist';
|
|
|
|
|
|
|
|
const prefixCls = 'ivu-dropdown';
|
|
|
|
|
|
|
|
export default {
|
2016-12-04 13:35:09 +08:00
|
|
|
name: 'Dropdown',
|
2016-12-03 23:46:25 +08:00
|
|
|
directives: { clickoutside },
|
|
|
|
components: { Drop },
|
|
|
|
props: {
|
|
|
|
trigger: {
|
|
|
|
validator (value) {
|
|
|
|
return oneOf(value, ['click', 'hover']);
|
|
|
|
},
|
|
|
|
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'
|
2016-12-03 23:46:25 +08:00
|
|
|
}
|
|
|
|
},
|
|
|
|
data () {
|
|
|
|
return {
|
|
|
|
prefixCls: prefixCls,
|
|
|
|
visible: false
|
|
|
|
}
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
handleClick () {
|
|
|
|
if (this.trigger !== 'click') {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
this.visible = !this.visible;
|
|
|
|
},
|
|
|
|
handleMouseenter () {
|
|
|
|
if (this.trigger !== 'hover') {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
clearTimeout(this.timeout);
|
|
|
|
this.timeout = setTimeout(() => {
|
|
|
|
this.visible = true;
|
|
|
|
}, 250);
|
|
|
|
},
|
|
|
|
handleMouseleave () {
|
|
|
|
if (this.trigger !== 'hover') {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
clearTimeout(this.timeout);
|
|
|
|
this.timeout = setTimeout(() => {
|
|
|
|
this.visible = false;
|
|
|
|
}, 150);
|
|
|
|
},
|
|
|
|
handleClose () {
|
|
|
|
if (this.trigger !== 'click') {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
this.visible = false;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
watch: {
|
|
|
|
visible (val) {
|
|
|
|
if (val) {
|
2016-12-04 13:35:09 +08:00
|
|
|
this.$refs.drop.update();
|
2016-12-03 23:46:25 +08:00
|
|
|
} else {
|
2016-12-04 13:35:09 +08:00
|
|
|
this.$refs.drop.destroy();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
events: {
|
|
|
|
'on-click' (key) {
|
|
|
|
const $parent = this.$parent.$parent;
|
|
|
|
if ($parent && $parent.$options.name === 'Dropdown') {
|
|
|
|
$parent.$emit('on-click', key);
|
2016-12-03 23:46:25 +08:00
|
|
|
}
|
2016-12-04 13:52:51 +08:00
|
|
|
},
|
|
|
|
'on-hover-click' () {
|
|
|
|
const $parent = this.$parent.$parent;
|
|
|
|
if ($parent && $parent.$options.name === 'Dropdown') {
|
|
|
|
$parent.visible = false;
|
|
|
|
$parent.$emit('on-hover-click');
|
|
|
|
}
|
2016-12-03 23:46:25 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|