iview/src/components/dropdown/dropdown.vue

124 lines
4 KiB
Vue
Raw Normal View History

<template>
<div
:class="[prefixCls]"
2016-12-04 17:04:48 +08:00
v-clickoutside="handleClose"
@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>
</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',
directives: { clickoutside },
components: { Drop },
props: {
trigger: {
validator (value) {
return oneOf(value, ['click', 'hover']);
},
default: 'hover'
},
2016-12-04 13:35:09 +08:00
placement: {
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-04 13:35:09 +08:00
default: 'bottom'
}
},
2016-12-04 17:04:48 +08:00
computed: {
transition () {
return ['bottom-start', 'bottom', 'bottom-end'].indexOf(this.placement) > -1 ? 'slide-up' : 'fade';
}
},
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;
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;
}
}
},
watch: {
visible (val) {
if (val) {
2016-12-04 13:35:09 +08:00
this.$refs.drop.update();
} else {
2016-12-04 13:35:09 +08:00
this.$refs.drop.destroy();
}
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(() => {
this.visible = false;
});
$parent.$emit('on-hover-click');
} else {
this.$nextTick(() => {
this.visible = false;
});
}
2016-12-04 14:33:06 +08:00
},
'on-haschild-click' () {
this.$nextTick(() => {
this.visible = true;
});
const $parent = this.hasParent();
if ($parent) $parent.$emit('on-haschild-click');
}
}
}
</script>