Blame view

src/components/menu/menu.vue 4.19 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>
2b24fcce   zhigang.li   change the way to...
5
      import { oneOf, findComponentsDownward, findComponentsUpward } 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;
2b24fcce   zhigang.li   change the way to...
87
                          names = [];
a163daa0   zhigang.li   Add logical treat...
88
89
90
                          findComponentsDownward(this, 'Submenu').forEach(item => {
                              if (item.name === name) currentSubmenu = item;
                          });
2b24fcce   zhigang.li   change the way to...
91
92
                          findComponentsUpward(currentSubmenu, 'Submenu').forEach(item => {
                              names.push(item.name);
a163daa0   zhigang.li   Add logical treat...
93
                          });
a8a03995   Aresn   update #1102
94
                      }
8bac3f86   Stephen Ma   update menu.vue u...
95
                      names.push(name);
ab673ebc   梁灏   update Menu
96
                  }
b3b4134d   zhigang.li   fixed https://git...
97
                  this.openedNames = names;
2b24fcce   zhigang.li   change the way to...
98
                  this.updateOpened();
b3b4134d   zhigang.li   fixed https://git...
99
                  this.$emit('on-open-change', this.openedNames);
fc3ffbe0   梁灏   publish 0.9.10-rc-2
100
101
              },
              updateOpened () {
67f4d8e7   梁灏   update Menu
102
103
104
105
                  const items = findComponentsDownward(this, 'Submenu');
  
                  if (items.length) {
                      items.forEach(item => {
b3b4134d   zhigang.li   fixed https://git...
106
107
                          if (this.openedNames.indexOf(item.name) > -1) item.opened = true;
                          else item.opened = false;
67f4d8e7   梁灏   update Menu
108
109
                      });
                  }
e05d7289   梁灏   update Menu
110
111
              }
          },
fd1582c5   梁灏   support Menu & La...
112
113
          mounted () {
              this.updateActiveName();
b3b4134d   zhigang.li   fixed https://git...
114
              this.openedNames = [...this.openNames];
fc3ffbe0   梁灏   publish 0.9.10-rc-2
115
              this.updateOpened();
fd1582c5   梁灏   support Menu & La...
116
117
118
119
              this.$on('on-menu-item-select', (name) => {
                  this.currentActiveName = name;
                  this.$emit('on-select', name);
              });
ab673ebc   梁灏   update Menu
120
121
          },
          watch: {
b3b4134d   zhigang.li   fixed https://git...
122
123
              openNames (names) {
                  this.openedNames = names;
fd1582c5   梁灏   support Menu & La...
124
125
126
              },
              activeName (val) {
                  this.currentActiveName = val;
e069c7ae   梁灏   fixed #230
127
              },
fd1582c5   梁灏   support Menu & La...
128
129
              currentActiveName () {
                  this.updateActiveName();
ab673ebc   梁灏   update Menu
130
              }
e05d7289   梁灏   update Menu
131
          }
b0893113   jingsam   :art: add eslint
132
133
      };
  </script>