Blame view

src/components/menu/menu.vue 4.2 KB
8778b343   梁灏   init Menu components
1
  <template>
fc3ffbe0   梁灏   publish 0.9.10-rc-2
2
      <ul :class="classes" :style="styles"><slot></slot></ul>
8778b343   梁灏   init Menu components
3
4
  </template>
  <script>
a163daa0   zhigang.li   Add logical treat...
5
      import { oneOf, findComponentsDownward, findBrothersComponents } from '../../utils/assist';
fd1582c5   梁灏   support Menu & La...
6
      import Emitter from '../../mixins/emitter';
e05d7289   梁灏   update Menu
7
8
9
  
      const prefixCls = 'ivu-menu';
  
8778b343   梁灏   init Menu components
10
      export default {
fd1582c5   梁灏   support Menu & La...
11
12
          name: 'Menu',
          mixins: [ Emitter ],
e05d7289   梁灏   update Menu
13
14
15
16
17
18
19
20
21
22
23
24
25
          props: {
              mode: {
                  validator (value) {
                      return oneOf(value, ['horizontal', 'vertical']);
                  },
                  default: 'vertical'
              },
              theme: {
                  validator (value) {
                      return oneOf(value, ['light', 'dark', 'primary']);
                  },
                  default: 'light'
              },
fd1582c5   梁灏   support Menu & La...
26
              activeName: {
e05d7289   梁灏   update Menu
27
28
                  type: [String, Number]
              },
fd1582c5   梁灏   support Menu & La...
29
              openNames: {
ab673ebc   梁灏   update Menu
30
31
                  type: Array,
                  default () {
b0893113   jingsam   :art: add eslint
32
                      return [];
ab673ebc   梁灏   update Menu
33
                  }
e05d7289   梁灏   update Menu
34
35
36
37
              },
              accordion: {
                  type: Boolean,
                  default: false
fc3ffbe0   梁灏   publish 0.9.10-rc-2
38
39
40
41
              },
              width: {
                  type: String,
                  default: '240px'
e05d7289   梁灏   update Menu
42
43
              }
          },
fd1582c5   梁灏   support Menu & La...
44
45
          data () {
              return {
b3b4134d   zhigang.li   fixed https://git...
46
47
                  currentActiveName: this.activeName,
                  openedNames: []
fd1582c5   梁灏   support Menu & La...
48
49
              };
          },
e05d7289   梁灏   update Menu
50
51
          computed: {
              classes () {
fd5cd823   梁灏   publish 0.9.10-rc-1
52
53
54
                  let theme = this.theme;
                  if (this.mode === 'vertical' && this.theme === 'primary') theme = 'light';
  
e05d7289   梁灏   update Menu
55
56
                  return [
                      `${prefixCls}`,
fd5cd823   梁灏   publish 0.9.10-rc-1
57
                      `${prefixCls}-${theme}`,
e05d7289   梁灏   update Menu
58
                      {
fd5cd823   梁灏   publish 0.9.10-rc-1
59
                          [`${prefixCls}-${this.mode}`]: this.mode
e05d7289   梁灏   update Menu
60
                      }
b0893113   jingsam   :art: add eslint
61
                  ];
fc3ffbe0   梁灏   publish 0.9.10-rc-2
62
63
64
65
66
67
68
              },
              styles () {
                  let style = {};
  
                  if (this.mode === 'vertical') style.width = this.width;
  
                  return style;
e05d7289   梁灏   update Menu
69
70
71
              }
          },
          methods: {
fd1582c5   梁灏   support Menu & La...
72
              updateActiveName () {
8dd54687   梁灏   #709
73
                  if (this.currentActiveName === undefined) {
fd1582c5   梁灏   support Menu & La...
74
75
76
77
                      this.currentActiveName = -1;
                  }
                  this.broadcast('Submenu', 'on-update-active-name', false);
                  this.broadcast('MenuItem', 'on-update-active-name', this.currentActiveName);
ab673ebc   梁灏   update Menu
78
              },
fd1582c5   梁灏   support Menu & La...
79
              updateOpenKeys (name) {
b3b4134d   zhigang.li   fixed https://git...
80
81
82
83
                  let names = [...this.openedNames];
                  const index = names.indexOf(name);
                  if (index >= 0) {
                      names.splice(index, 1);
ab673ebc   梁灏   update Menu
84
                  } else {
a8a03995   Aresn   update #1102
85
                      if (this.accordion) {
b3b4134d   zhigang.li   fixed https://git...
86
                          let currentSubmenu = null;
a163daa0   zhigang.li   Add logical treat...
87
88
89
90
                          findComponentsDownward(this, 'Submenu').forEach(item => {
                              if (item.name === name) currentSubmenu = item;
                          });
                          findBrothersComponents(currentSubmenu, 'Submenu').forEach(item => {
b3b4134d   zhigang.li   fixed https://git...
91
92
                              let i = names.indexOf(item.name);
                              if (i >= 0) names.splice(i, 1);
a163daa0   zhigang.li   Add logical treat...
93
                          });
b3b4134d   zhigang.li   fixed https://git...
94
                          names.push(name);
a8a03995   Aresn   update #1102
95
                      }
ab673ebc   梁灏   update Menu
96
                  }
b3b4134d   zhigang.li   fixed https://git...
97
98
                  this.openedNames = names;
                  this.$emit('on-open-change', this.openedNames);
fc3ffbe0   梁灏   publish 0.9.10-rc-2
99
100
              },
              updateOpened () {
67f4d8e7   梁灏   update Menu
101
102
103
104
                  const items = findComponentsDownward(this, 'Submenu');
  
                  if (items.length) {
                      items.forEach(item => {
b3b4134d   zhigang.li   fixed https://git...
105
106
                          if (this.openedNames.indexOf(item.name) > -1) item.opened = true;
                          else item.opened = false;
67f4d8e7   梁灏   update Menu
107
108
                      });
                  }
e05d7289   梁灏   update Menu
109
110
              }
          },
fd1582c5   梁灏   support Menu & La...
111
112
          mounted () {
              this.updateActiveName();
b3b4134d   zhigang.li   fixed https://git...
113
              this.openedNames = [...this.openNames];
fc3ffbe0   梁灏   publish 0.9.10-rc-2
114
              this.updateOpened();
fd1582c5   梁灏   support Menu & La...
115
116
117
118
              this.$on('on-menu-item-select', (name) => {
                  this.currentActiveName = name;
                  this.$emit('on-select', name);
              });
ab673ebc   梁灏   update Menu
119
120
          },
          watch: {
b3b4134d   zhigang.li   fixed https://git...
121
122
              openNames (names) {
                  this.openedNames = names;
fd1582c5   梁灏   support Menu & La...
123
124
125
              },
              activeName (val) {
                  this.currentActiveName = val;
e069c7ae   梁灏   fixed #230
126
              },
fd1582c5   梁灏   support Menu & La...
127
128
              currentActiveName () {
                  this.updateActiveName();
ab673ebc   梁灏   update Menu
129
              }
e05d7289   梁灏   update Menu
130
          }
b0893113   jingsam   :art: add eslint
131
132
      };
  </script>