Blame view

src/components/menu/menu.vue 3.32 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>
e05d7289   梁灏   update Menu
5
      import { oneOf } 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
46
47
48
          data () {
              return {
                  currentActiveName: this.activeName
              };
          },
e05d7289   梁灏   update Menu
49
50
          computed: {
              classes () {
fd5cd823   梁灏   publish 0.9.10-rc-1
51
52
53
                  let theme = this.theme;
                  if (this.mode === 'vertical' && this.theme === 'primary') theme = 'light';
  
e05d7289   梁灏   update Menu
54
55
                  return [
                      `${prefixCls}`,
fd5cd823   梁灏   publish 0.9.10-rc-1
56
                      `${prefixCls}-${theme}`,
e05d7289   梁灏   update Menu
57
                      {
fd5cd823   梁灏   publish 0.9.10-rc-1
58
                          [`${prefixCls}-${this.mode}`]: this.mode
e05d7289   梁灏   update Menu
59
                      }
b0893113   jingsam   :art: add eslint
60
                  ];
fc3ffbe0   梁灏   publish 0.9.10-rc-2
61
62
63
64
65
66
67
              },
              styles () {
                  let style = {};
  
                  if (this.mode === 'vertical') style.width = this.width;
  
                  return style;
e05d7289   梁灏   update Menu
68
69
70
              }
          },
          methods: {
fd1582c5   梁灏   support Menu & La...
71
72
73
74
75
76
              updateActiveName () {
                  if (!this.currentActiveName) {
                      this.currentActiveName = -1;
                  }
                  this.broadcast('Submenu', 'on-update-active-name', false);
                  this.broadcast('MenuItem', 'on-update-active-name', this.currentActiveName);
ab673ebc   梁灏   update Menu
77
              },
fd1582c5   梁灏   support Menu & La...
78
79
              updateOpenKeys (name) {
                  const index = this.openNames.indexOf(name);
ab673ebc   梁灏   update Menu
80
                  if (index > -1) {
fd1582c5   梁灏   support Menu & La...
81
                      this.openNames.splice(index, 1);
ab673ebc   梁灏   update Menu
82
                  } else {
fd1582c5   梁灏   support Menu & La...
83
                      this.openNames.push(name);
ab673ebc   梁灏   update Menu
84
                  }
fc3ffbe0   梁灏   publish 0.9.10-rc-2
85
86
87
88
              },
              updateOpened () {
                  this.$children.forEach(item => {
                      if (item.$options.name === 'Submenu') {
fd1582c5   梁灏   support Menu & La...
89
                          if (this.openNames.indexOf(item.name) > -1) item.opened = true;
fc3ffbe0   梁灏   publish 0.9.10-rc-2
90
                      }
b0893113   jingsam   :art: add eslint
91
                  });
e05d7289   梁灏   update Menu
92
93
              }
          },
fd1582c5   梁灏   support Menu & La...
94
95
          mounted () {
              this.updateActiveName();
fc3ffbe0   梁灏   publish 0.9.10-rc-2
96
              this.updateOpened();
fd1582c5   梁灏   support Menu & La...
97
98
99
100
              this.$on('on-menu-item-select', (name) => {
                  this.currentActiveName = name;
                  this.$emit('on-select', name);
              });
ab673ebc   梁灏   update Menu
101
102
          },
          watch: {
fd1582c5   梁灏   support Menu & La...
103
104
105
106
107
              openNames () {
                  this.$emit('on-open-change', this.openNames);
              },
              activeName (val) {
                  this.currentActiveName = val;
e069c7ae   梁灏   fixed #230
108
              },
fd1582c5   梁灏   support Menu & La...
109
110
              currentActiveName () {
                  this.updateActiveName();
ab673ebc   梁灏   update Menu
111
              }
e05d7289   梁灏   update Menu
112
          }
b0893113   jingsam   :art: add eslint
113
114
      };
  </script>