Blame view

src/components/modal/modal.vue 6.4 KB
be966e9f   梁灏   add Modal component
1
2
3
4
  <template>
      <div :class="wrapClasses">
          <div :class="maskClasses" v-show="visible" @click="mask" transition="fade"></div>
          <div :class="classes" :style="styles" v-show="visible" transition="ease">
d6342fe1   jingsam   fixed ie bug
5
6
              <div :class="[prefixCls + '-content]">
                  <a :class="[prefixCls + '-close']" v-if="closable" @click="close">
be966e9f   梁灏   add Modal component
7
8
9
10
                      <slot name="close">
                          <Icon type="ios-close-empty"></Icon>
                      </slot>
                  </a>
d6342fe1   jingsam   fixed ie bug
11
12
13
                  <div :class="[prefixCls + '-header']" v-if="showHead" v-el:head><slot name="header"><p>{{ title }}</p></slot></div>
                  <div :class="[prefixCls + '-body']"><slot></slot></div>
                  <div :class="[prefixCls + '-footer']" v-if="!footerHide">
be966e9f   梁灏   add Modal component
14
                      <slot name="footer">
4b7138b9   梁灏   fixed some bugs
15
16
                          <i-button type="ghost" size="large" @click="cancel">{{ cancelText }}</i-button>
                          <i-button type="primary" size="large" :loading="buttonLoading" @click="ok">{{ okText }}</i-button>
be966e9f   梁灏   add Modal component
17
18
19
20
21
22
23
24
                      </slot>
                  </div>
              </div>
          </div>
      </div>
  </template>
  <script>
      import Icon from '../icon';
4b7138b9   梁灏   fixed some bugs
25
      import iButton from '../button/button.vue';
be966e9f   梁灏   add Modal component
26
27
28
29
30
      import { getScrollBarSize } from '../../utils/assist';
  
      const prefixCls = 'ivu-modal';
  
      export default {
4b7138b9   梁灏   fixed some bugs
31
          components: { Icon, iButton },
be966e9f   梁灏   add Modal component
32
33
34
35
36
37
38
39
40
41
42
43
44
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
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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
          props: {
              visible: {
                  type: Boolean,
                  default: false
              },
              closable: {
                  type: Boolean,
                  default: true
              },
              maskClosable: {
                  type: Boolean,
                  default: true
              },
              title: {
                  type: String
              },
              width: {
                  type: [Number, String],
                  default: 520
              },
              okText: {
                  type: String,
                  default: '确定'
              },
              cancelText: {
                  type: String,
                  default: '取消'
              },
              loading: {
                  type: Boolean,
                  default: false
              },
              style: {
                  type: Object
              },
              className: {
                  type: String
              },
              // for instance
              footerHide: {
                  type: Boolean,
                  default: false
              }
          },
          data () {
              return {
                  prefixCls: prefixCls,
                  wrapShow: false,
                  showHead: true,
                  buttonLoading: false
              }
          },
          computed: {
              wrapClasses () {
                  return [
                      `${prefixCls}-wrap`,
                      {
                          [`${prefixCls}-hidden`]: !this.wrapShow,
                          [`${this.className}`]: !!this.className
                      }
                  ]
              },
              maskClasses () {
                  return `${prefixCls}-mask`;
              },
              classes () {
                  return `${prefixCls}`;
              },
              styles () {
                  let style = {};
  
                  const styleWidth = {
                      width: `${this.width}px`
                  };
  
                  const customStyle = !!this.style ? this.style : {};
  
                  Object.assign(style, styleWidth, customStyle);
  
                  return style;
              }
          },
          methods: {
              close () {
                  this.visible = false;
                  this.$emit('on-cancel');
              },
              mask () {
                  if (this.maskClosable) {
                      this.close();
                  }
              },
              cancel () {
                  this.close();
              },
              ok () {
                  if (this.loading) {
                      this.buttonLoading = true;
                  } else {
                      this.visible = false;
                  }
                  this.$emit('on-ok');
              },
              EscClose (e) {
                  if (this.visible && this.closable) {
                      if (e.keyCode === 27) {
                          this.close()
                      }
                  }
              },
              checkScrollBar () {
                  let fullWindowWidth = window.innerWidth;
                  if (!fullWindowWidth) { // workaround for missing window.innerWidth in IE8
                      const documentElementRect = document.documentElement.getBoundingClientRect();
                      fullWindowWidth = documentElementRect.right - Math.abs(documentElementRect.left);
                  }
                  this.bodyIsOverflowing = document.body.clientWidth < fullWindowWidth;
                  if (this.bodyIsOverflowing) {
                      this.scrollBarWidth = getScrollBarSize();
                  }
              },
              setScrollBar () {
                  if (this.bodyIsOverflowing && this.scrollBarWidth !== undefined) {
                      document.body.style.paddingRight = `${this.scrollBarWidth}px`;
                  }
              },
              resetScrollBar () {
                  document.body.style.paddingRight = '';
              },
              addScrollEffect () {
                  this.checkScrollBar();
                  this.setScrollBar();
                  document.body.style.overflow = 'hidden';
              },
              removeScrollEffect() {
                  document.body.style.overflow = '';
                  this.resetScrollBar();
              }
          },
          ready () {
              if (this.visible) {
                  this.wrapShow = true;
              }
  
              let showHead = true;
  
              if (this.$els.head.innerHTML == '<p></p>' && !this.title) {
                  showHead = false;
              }
  
              this.showHead = showHead;
  
              // ESC close
              document.addEventListener('keydown', this.EscClose);
          },
          beforeDestroy () {
              document.removeEventListener('keydown', this.EscClose);
          },
          watch: {
              visible (val) {
                  if (val === false) {
                      this.buttonLoading = false;
                      setTimeout(() => {
                          this.wrapShow = false;
                      }, 300);
                      this.removeScrollEffect();
                  } else {
                      this.wrapShow = true;
                      this.addScrollEffect();
                  }
              }
          }
      }
d6342fe1   jingsam   fixed ie bug
205
  </script>