Blame view

src/components/dropdown/dropdown.vue 4.5 KB
ab8aaf95   梁灏   add Dropdown comp...
1
2
3
  <template>
      <div
          :class="[prefixCls]"
407eabd5   梁灏   update Dropdown
4
          v-clickoutside="handleClose"
ab8aaf95   梁灏   add Dropdown comp...
5
          @mouseenter="handleMouseenter"
407eabd5   梁灏   update Dropdown
6
          @mouseleave="handleMouseleave">
e05d7289   梁灏   update Menu
7
          <div :class="[prefixCls-rel]" v-el:reference @click="handleClick"><slot></slot></div>
407eabd5   梁灏   update Dropdown
8
          <Drop v-show="visible" :placement="placement" :transition="transition" v-ref:drop><slot name="list"></slot></Drop>
ab8aaf95   梁灏   add Dropdown comp...
9
10
11
12
13
14
15
16
17
18
      </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 {
745bcbc2   梁灏   update Dropdown
19
          name: 'Dropdown',
ab8aaf95   梁灏   add Dropdown comp...
20
21
22
23
24
          directives: { clickoutside },
          components: { Drop },
          props: {
              trigger: {
                  validator (value) {
51f9f894   梁灏   Dropdown add cust...
25
                      return oneOf(value, ['click', 'hover', 'custom']);
ab8aaf95   梁灏   add Dropdown comp...
26
27
28
                  },
                  default: 'hover'
              },
745bcbc2   梁灏   update Dropdown
29
              placement: {
ab8aaf95   梁灏   add Dropdown comp...
30
                  validator (value) {
745bcbc2   梁灏   update Dropdown
31
                      return oneOf(value, ['top', 'top-start', 'top-end', 'bottom', 'bottom-start', 'bottom-end', 'left', 'left-start', 'left-end', 'right', 'right-start', 'right-end']);
ab8aaf95   梁灏   add Dropdown comp...
32
                  },
745bcbc2   梁灏   update Dropdown
33
                  default: 'bottom'
51f9f894   梁灏   Dropdown add cust...
34
35
36
37
              },
              visible: {
                  type: Boolean,
                  default: false
ab8aaf95   梁灏   add Dropdown comp...
38
39
              }
          },
407eabd5   梁灏   update Dropdown
40
41
42
43
44
          computed: {
              transition () {
                  return ['bottom-start', 'bottom', 'bottom-end'].indexOf(this.placement) > -1 ? 'slide-up' : 'fade';
              }
          },
ab8aaf95   梁灏   add Dropdown comp...
45
46
          data () {
              return {
51f9f894   梁灏   Dropdown add cust...
47
                  prefixCls: prefixCls
b0893113   jingsam   :art: add eslint
48
              };
ab8aaf95   梁灏   add Dropdown comp...
49
          },
ab8aaf95   梁灏   add Dropdown comp...
50
51
          methods: {
              handleClick () {
51f9f894   梁灏   Dropdown add cust...
52
                  if (this.trigger === 'custom') return false;
ab8aaf95   梁灏   add Dropdown comp...
53
54
55
56
57
58
                  if (this.trigger !== 'click') {
                      return false;
                  }
                  this.visible = !this.visible;
              },
              handleMouseenter () {
51f9f894   梁灏   Dropdown add cust...
59
                  if (this.trigger === 'custom') return false;
ab8aaf95   梁灏   add Dropdown comp...
60
61
62
63
64
65
66
67
68
                  if (this.trigger !== 'hover') {
                      return false;
                  }
                  clearTimeout(this.timeout);
                  this.timeout = setTimeout(() => {
                      this.visible = true;
                  }, 250);
              },
              handleMouseleave () {
51f9f894   梁灏   Dropdown add cust...
69
                  if (this.trigger === 'custom') return false;
ab8aaf95   梁灏   add Dropdown comp...
70
71
72
73
74
75
76
77
78
                  if (this.trigger !== 'hover') {
                      return false;
                  }
                  clearTimeout(this.timeout);
                  this.timeout = setTimeout(() => {
                      this.visible = false;
                  }, 150);
              },
              handleClose () {
51f9f894   梁灏   Dropdown add cust...
79
                  if (this.trigger === 'custom') return false;
ab8aaf95   梁灏   add Dropdown comp...
80
81
82
83
                  if (this.trigger !== 'click') {
                      return false;
                  }
                  this.visible = false;
6b71ba94   梁灏   update Dropdown
84
85
86
87
88
89
90
91
              },
              hasParent () {
                  const $parent = this.$parent.$parent;
                  if ($parent && $parent.$options.name === 'Dropdown') {
                      return $parent;
                  } else {
                      return false;
                  }
ab8aaf95   梁灏   add Dropdown comp...
92
93
94
95
96
              }
          },
          watch: {
              visible (val) {
                  if (val) {
745bcbc2   梁灏   update Dropdown
97
                      this.$refs.drop.update();
ab8aaf95   梁灏   add Dropdown comp...
98
                  } else {
745bcbc2   梁灏   update Dropdown
99
100
                      this.$refs.drop.destroy();
                  }
fc640135   梁灏   Tabs add on-visib...
101
                  this.$emit('on-visible-change', val);
745bcbc2   梁灏   update Dropdown
102
103
104
105
              }
          },
          events: {
              'on-click' (key) {
6b71ba94   梁灏   update Dropdown
106
                  const $parent = this.hasParent();
407eabd5   梁灏   update Dropdown
107
                  if ($parent ) $parent.$emit('on-click', key);
5557dd66   梁灏   update Dropdown
108
109
              },
              'on-hover-click' () {
6b71ba94   梁灏   update Dropdown
110
                  const $parent = this.hasParent();
407eabd5   梁灏   update Dropdown
111
112
                  if ($parent) {
                      this.$nextTick(() => {
51f9f894   梁灏   Dropdown add cust...
113
                          if (this.trigger === 'custom') return false;
407eabd5   梁灏   update Dropdown
114
115
116
117
118
                          this.visible = false;
                      });
                      $parent.$emit('on-hover-click');
                  } else {
                      this.$nextTick(() => {
51f9f894   梁灏   Dropdown add cust...
119
                          if (this.trigger === 'custom') return false;
407eabd5   梁灏   update Dropdown
120
121
122
                          this.visible = false;
                      });
                  }
6b71ba94   梁灏   update Dropdown
123
124
125
              },
              'on-haschild-click' () {
                  this.$nextTick(() => {
51f9f894   梁灏   Dropdown add cust...
126
                      if (this.trigger === 'custom') return false;
6b71ba94   梁灏   update Dropdown
127
128
129
130
                      this.visible = true;
                  });
                  const $parent = this.hasParent();
                  if ($parent) $parent.$emit('on-haschild-click');
ab8aaf95   梁灏   add Dropdown comp...
131
132
              }
          }
b0893113   jingsam   :art: add eslint
133
134
      };
  </script>