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">
|
2016-12-07 20:45:21 +08:00
|
|
|
<div :class="[prefixCls-rel]" v-el:reference @click="handleClick"><slot></slot></div>
|
2016-12-04 17:04:48 +08:00
|
|
|
<Drop v-show="visible" :placement="placement" :transition="transition" 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) {
|
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
|
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-01-13 11:32:56 +08:00
|
|
|
prefixCls: prefixCls
|
2016-12-25 22:49:42 +08:00
|
|
|
};
|
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;
|
|
|
|
}
|
|
|
|
this.visible = !this.visible;
|
|
|
|
},
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
clearTimeout(this.timeout);
|
|
|
|
this.timeout = setTimeout(() => {
|
|
|
|
this.visible = true;
|
|
|
|
}, 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;
|
|
|
|
}
|
|
|
|
clearTimeout(this.timeout);
|
|
|
|
this.timeout = setTimeout(() => {
|
|
|
|
this.visible = false;
|
|
|
|
}, 150);
|
|
|
|
},
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
this.visible = false;
|
2016-12-04 14:33:06 +08:00
|
|
|
},
|
|
|
|
hasParent () {
|
|
|
|
const $parent = this.$parent.$parent;
|
|
|
|
if ($parent && $parent.$options.name === 'Dropdown') {
|
|
|
|
return $parent;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
2016-12-03 23:46:25 +08:00
|
|
|
}
|
|
|
|
},
|
|
|
|
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();
|
|
|
|
}
|
2016-12-20 17:12:08 +08:00
|
|
|
this.$emit('on-visible-change', val);
|
2016-12-04 13:35:09 +08:00
|
|
|
}
|
|
|
|
},
|
|
|
|
events: {
|
|
|
|
'on-click' (key) {
|
2016-12-04 14:33:06 +08:00
|
|
|
const $parent = this.hasParent();
|
2016-12-04 17:04:48 +08:00
|
|
|
if ($parent ) $parent.$emit('on-click', key);
|
2016-12-04 13:52:51 +08:00
|
|
|
},
|
|
|
|
'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;
|
2016-12-04 17:04:48 +08:00
|
|
|
this.visible = false;
|
|
|
|
});
|
|
|
|
$parent.$emit('on-hover-click');
|
|
|
|
} else {
|
|
|
|
this.$nextTick(() => {
|
2017-01-13 11:32:56 +08:00
|
|
|
if (this.trigger === 'custom') return false;
|
2016-12-04 17:04:48 +08:00
|
|
|
this.visible = false;
|
|
|
|
});
|
|
|
|
}
|
2016-12-04 14:33:06 +08:00
|
|
|
},
|
|
|
|
'on-haschild-click' () {
|
|
|
|
this.$nextTick(() => {
|
2017-01-13 11:32:56 +08:00
|
|
|
if (this.trigger === 'custom') return false;
|
2016-12-04 14:33:06 +08:00
|
|
|
this.visible = true;
|
|
|
|
});
|
|
|
|
const $parent = this.hasParent();
|
|
|
|
if ($parent) $parent.$emit('on-haschild-click');
|
2016-12-03 23:46:25 +08:00
|
|
|
}
|
|
|
|
}
|
2016-12-25 22:49:42 +08:00
|
|
|
};
|
|
|
|
</script>
|