Blame view

src/components/layout/sider.vue 4.7 KB
a2eb0287   zhigang.li   add layout compon...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
  <template>
      <div 
          :class="wrapClasses" 
          :style="{width: siderWidth + 'px', minWidth: siderWidth + 'px', maxWidth: siderWidth + 'px', flex: '0 0 ' + siderWidth + 'px'}">
          <span v-show="showZeroTrigger" @click="toggleCollapse" :class="zeroWidthTriggerClasses">
              <i class="ivu-icon ivu-icon-navicon-round"></i>
          </span>
          <div :class="`${prefixCls}-children`">
              <slot></slot>
          </div>
          <div v-show="!mediaMatched && !hideTrigger" :class="triggerClasses" @click="toggleCollapse" :style="{width: siderWidth + 'px'}">
              <i :class="triggerIconClasses"></i>
          </div>
      </div>
  </template>
  <script>
      import { on, off } from '../../utils/dom';
      import { oneOf } from '../../utils/assist';
      const prefixCls = 'ivu-layout-sider';
      const dimensionMap = {
          xs: '480px',
          sm: '768px',
          md: '992px',
          lg: '1200px',
          xl: '1600px',
      };
      if (typeof window !== 'undefined') {
          const matchMediaPolyfill = mediaQuery => {
              return {
                  media: mediaQuery,
                  matches: false,
f724eb57   zhigang.li   update
32
33
                  on() {},
                  off() {},
a2eb0287   zhigang.li   add layout compon...
34
35
36
37
38
39
40
41
42
43
44
              };
          };
          window.matchMedia = window.matchMedia || matchMediaPolyfill;
      }
      export default {
          name: 'Sider',
          props: {
              value: {  // if it's collpased now
                  type: Boolean,
                  default: false
              },
a2eb0287   zhigang.li   add layout compon...
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
              width: {
                  type: [Number, String],
                  default: 200
              },
              collapsedWidth: {
                  type: [Number, String],
                  default: 64
              },
              hideTrigger: {
                  type: Boolean,
                  default: false
              },
              breakpoint: {
                  type: String,
                  default: '',
                  validator (val) {
                      return oneOf(val, ['xs', 'sm', 'md', 'lg', 'xl']);
                  }
              },
              defaultCollapsed: {
                  type: Boolean,
                  default: false
              },
              reverseArrow: {
                  type: Boolean,
                  default: false
              }
          },
          data () {
              return {
                  prefixCls: prefixCls,
                  mediaMatched: false
              };
          },
          computed: {
              wrapClasses () {
                  return [
                      `${prefixCls}`,
a2eb0287   zhigang.li   add layout compon...
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
                      this.siderWidth ? '' : `${prefixCls}-zero-width`,
                      this.value ? `${prefixCls}-collapsed` : ''
                  ];
              },
              triggerClasses () {
                  return [
                      `${prefixCls}-trigger`,
                      this.value ? `${prefixCls}-trigger-collapsed` : '',
                  ];
              },
              zeroWidthTriggerClasses () {
                  return [
                      `${prefixCls}-zero-width-trigger`,
                      this.reverseArrow ? `${prefixCls}-zero-width-trigger-left` : ''
                  ];
              },
              triggerIconClasses () {
                  return [
                      'ivu-icon',
                      `ivu-icon-chevron-${this.reverseArrow ? 'right' : 'left'}`,
                      `${prefixCls}-trigger-icon`,
                  ];
              },
              siderWidth () {
                  return this.value ? (this.mediaMatched ? 0 : parseInt(this.collapsedWidth)) : parseInt(this.width);
              },
              showZeroTrigger () {
                  return this.mediaMatched && !this.hideTrigger || (parseInt(this.collapsedWidth) === 0) && this.value && !this.hideTrigger;
              }
          },
          methods: {
              toggleCollapse () {
                  this.$emit('input', !this.value);
                  this.$emit('on-collapse', !this.value);
              },
              matchMedia () {
                  let matchMedia;
                  if (window.matchMedia) {
                      matchMedia = window.matchMedia;
                  }
                  let mediaMatched = this.mediaMatched;
                  this.mediaMatched = matchMedia(`(max-width: ${dimensionMap[this.breakpoint]})`).matches;
                  if (this.mediaMatched !== mediaMatched) {
                      this.$emit('input', this.mediaMatched);
                      this.$emit('on-collapse', this.mediaMatched);
                  }
              },
              onWindowResize () {
                  this.matchMedia();
              }
          },
          mounted () {
              on(window, 'resize', this.onWindowResize);
              this.matchMedia();
              this.$emit('input', this.defaultCollapsed);
          },
          destroyed () {
              off(window, 'resize', this.onWindowResize);
          }
      };
  </script>