Blame view

src/components/poptip/poptip.vue 10 KB
9699c270   梁灏   add Poptip component
1
2
3
4
5
  <template>
      <div
          :class="classes"
          @mouseenter="handleMouseenter"
          @mouseleave="handleMouseleave"
26369639   Graham Fairweather   Update v-click-ou...
6
          v-click-outside="handleClose">
9699c270   梁灏   add Poptip component
7
          <div
d6342fe1   jingsam   fixed ie bug
8
              :class="[prefixCls + '-rel']"
79288d43   梁灏   support Poptip & ...
9
              ref="reference"
9699c270   梁灏   add Poptip component
10
              @click="handleClick"
071506fc   梁灏   optimize Poptip f...
11
12
              @mousedown="handleFocus(false)"
              @mouseup="handleBlur(false)">
9699c270   梁灏   add Poptip component
13
14
              <slot></slot>
          </div>
79288d43   梁灏   support Poptip & ...
15
          <transition name="fade">
fcf3cace   梁灏   Poptip & Tooltip ...
16
              <div
1d83a8aa   梁灏   fixed #1612
17
                  :class="popperClasses"
fcf3cace   梁灏   Poptip & Tooltip ...
18
19
20
                  :style="styles"
                  ref="popper"
                  v-show="visible"
b75ad4a1   梁灏   fixed #1700
21
                  @click="handleTransferClick"
fcf3cace   梁灏   Poptip & Tooltip ...
22
23
                  @mouseenter="handleMouseenter"
                  @mouseleave="handleMouseleave"
548eac43   梁灏   fixed #1387 and u...
24
25
                  :data-transfer="transfer"
                  v-transfer-dom>
79288d43   梁灏   support Poptip & ...
26
27
28
29
                  <div :class="[prefixCls + '-content']">
                      <div :class="[prefixCls + '-arrow']"></div>
                      <div :class="[prefixCls + '-inner']" v-if="confirm">
                          <div :class="[prefixCls + '-body']">
e64ee85c   梁灏   update Poptip Icons
30
                              <i class="ivu-icon ivu-icon-ios-help-circle"></i>
79288d43   梁灏   support Poptip & ...
31
32
33
                              <div :class="[prefixCls + '-body-message']"><slot name="title">{{ title }}</slot></div>
                          </div>
                          <div :class="[prefixCls + '-footer']">
e5337c81   梁灏   fixed some compon...
34
35
                              <i-button type="text" size="small" @click.native="cancel">{{ localeCancelText }}</i-button>
                              <i-button type="primary" size="small" @click.native="ok">{{ localeOkText }}</i-button>
79288d43   梁灏   support Poptip & ...
36
                          </div>
9699c270   梁灏   add Poptip component
37
                      </div>
79288d43   梁灏   support Poptip & ...
38
                      <div :class="[prefixCls + '-inner']" v-if="!confirm">
a980832f   梁灏   Poptip add paddin...
39
40
                          <div :class="[prefixCls + '-title']" :style="contentPaddingStyle" v-if="showTitle" ref="title"><slot name="title"><div :class="[prefixCls + '-title-inner']">{{ title }}</div></slot></div>
                          <div :class="[prefixCls + '-body']" :style="contentPaddingStyle">
130ed889   梁灏   Poptip add prop w...
41
                              <div :class="contentClasses"><slot name="content"><div :class="[prefixCls + '-body-content-inner']">{{ content }}</div></slot></div>
79288d43   梁灏   support Poptip & ...
42
                          </div>
613f5243   梁灏   update Poptip
43
                      </div>
9699c270   梁灏   add Poptip component
44
45
                  </div>
              </div>
79288d43   梁灏   support Poptip & ...
46
          </transition>
9699c270   梁灏   add Poptip component
47
48
49
50
      </div>
  </template>
  <script>
      import Popper from '../base/popper';
4b7138b9   梁灏   fixed some bugs
51
      import iButton from '../button/button.vue';
26369639   Graham Fairweather   Update v-click-ou...
52
      import {directive as clickOutside} from 'v-click-outside-x';
fcf3cace   梁灏   Poptip & Tooltip ...
53
      import TransferDom from '../../directives/transfer-dom';
9699c270   梁灏   add Poptip component
54
      import { oneOf } from '../../utils/assist';
e5337c81   梁灏   fixed some compon...
55
      import Locale from '../../mixins/locale';
9699c270   梁灏   add Poptip component
56
57
58
59
  
      const prefixCls = 'ivu-poptip';
  
      export default {
79288d43   梁灏   support Poptip & ...
60
          name: 'Poptip',
e5337c81   梁灏   fixed some compon...
61
          mixins: [ Popper, Locale ],
26369639   Graham Fairweather   Update v-click-ou...
62
          directives: { clickOutside, TransferDom },
4b7138b9   梁灏   fixed some bugs
63
          components: { iButton },
9699c270   梁灏   add Poptip component
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
          props: {
              trigger: {
                  validator (value) {
                      return oneOf(value, ['click', 'focus', 'hover']);
                  },
                  default: 'click'
              },
              placement: {
                  validator (value) {
                      return oneOf(value, ['top', 'top-start', 'top-end', 'bottom', 'bottom-start', 'bottom-end', 'left', 'left-start', 'left-end', 'right', 'right-start', 'right-end']);
                  },
                  default: 'top'
              },
              title: {
                  type: [String, Number]
              },
              content: {
                  type: [String, Number],
                  default: ''
              },
              width: {
                  type: [String, Number]
              },
              confirm: {
                  type: Boolean,
                  default: false
              },
              okText: {
e5337c81   梁灏   fixed some compon...
92
                  type: String
9699c270   梁灏   add Poptip component
93
94
              },
              cancelText: {
e5337c81   梁灏   fixed some compon...
95
                  type: String
fcf3cace   梁灏   Poptip & Tooltip ...
96
97
98
99
              },
              transfer: {
                  type: Boolean,
                  default: false
19c208d3   梁灏   Poptip add prop `...
100
101
102
              },
              popperClass: {
                  type: String
130ed889   梁灏   Poptip add prop w...
103
104
105
106
              },
              wordWrap: {
                  type: Boolean,
                  default: false
a980832f   梁灏   Poptip add paddin...
107
108
109
110
              },
              // default by css: 8px 16px
              padding: {
                  type: String
9699c270   梁灏   add Poptip component
111
112
113
114
              }
          },
          data () {
              return {
88bb7c92   梁灏   fix bug of Poptip
115
                  prefixCls: prefixCls,
071506fc   梁灏   optimize Poptip f...
116
                  showTitle: true,
b75ad4a1   梁灏   fixed #1700
117
118
                  isInput: false,
                  disableCloseUnderTransfer: false,  // transfer 模式下,点击 slot 也会触发关闭
b0893113   jingsam   :art: add eslint
119
              };
9699c270   梁灏   add Poptip component
120
121
122
123
          },
          computed: {
              classes () {
                  return [
4b7138b9   梁灏   fixed some bugs
124
                      `${prefixCls}`,
9699c270   梁灏   add Poptip component
125
                      {
4b7138b9   梁灏   fixed some bugs
126
                          [`${prefixCls}-confirm`]: this.confirm
9699c270   梁灏   add Poptip component
127
                      }
b0893113   jingsam   :art: add eslint
128
                  ];
9699c270   梁灏   add Poptip component
129
              },
1d83a8aa   梁灏   fixed #1612
130
131
132
133
              popperClasses () {
                  return [
                      `${prefixCls}-popper`,
                      {
19c208d3   梁灏   Poptip add prop `...
134
135
                          [`${prefixCls}-confirm`]: this.transfer && this.confirm,
                          [`${this.popperClass}`]: !!this.popperClass
1d83a8aa   梁灏   fixed #1612
136
137
138
                      }
                  ];
              },
9699c270   梁灏   add Poptip component
139
140
141
              styles () {
                  let style = {};
  
b0893113   jingsam   :art: add eslint
142
                  if (this.width) {
4b7138b9   梁灏   fixed some bugs
143
                      style.width = `${this.width}px`;
9699c270   梁灏   add Poptip component
144
145
                  }
                  return style;
e5337c81   梁灏   fixed some compon...
146
147
148
149
150
151
152
153
154
155
156
157
158
159
              },
              localeOkText () {
                  if (this.okText === undefined) {
                      return this.t('i.poptip.okText');
                  } else {
                      return this.okText;
                  }
              },
              localeCancelText () {
                  if (this.cancelText === undefined) {
                      return this.t('i.poptip.cancelText');
                  } else {
                      return this.cancelText;
                  }
130ed889   梁灏   Poptip add prop w...
160
161
162
163
164
165
166
167
              },
              contentClasses () {
                  return [
                      `${prefixCls}-body-content`,
                      {
                          [`${prefixCls}-body-content-word-wrap`]: this.wordWrap
                      }
                  ];
a980832f   梁灏   Poptip add paddin...
168
169
170
              },
              contentPaddingStyle () {
                  const styles = {};
855d4940   梁灏   Tag add more colo...
171
                  if (this.padding !== '') styles['padding'] = this.padding;
a980832f   梁灏   Poptip add paddin...
172
                  return styles;
9699c270   梁灏   add Poptip component
173
174
175
176
177
178
179
180
181
182
183
184
185
              }
          },
          methods: {
              handleClick () {
                  if (this.confirm) {
                      this.visible = !this.visible;
                      return true;
                  }
                  if (this.trigger !== 'click') {
                      return false;
                  }
                  this.visible = !this.visible;
              },
b75ad4a1   梁灏   fixed #1700
186
187
188
              handleTransferClick () {
                  if (this.transfer) this.disableCloseUnderTransfer = true;
              },
9699c270   梁灏   add Poptip component
189
              handleClose () {
b75ad4a1   梁灏   fixed #1700
190
191
192
193
                  if (this.disableCloseUnderTransfer) {
                      this.disableCloseUnderTransfer = false;
                      return false;
                  }
9699c270   梁灏   add Poptip component
194
195
196
197
198
199
200
201
202
                  if (this.confirm) {
                      this.visible = false;
                      return true;
                  }
                  if (this.trigger !== 'click') {
                      return false;
                  }
                  this.visible = false;
              },
071506fc   梁灏   optimize Poptip f...
203
204
              handleFocus (fromInput = true) {
                  if (this.trigger !== 'focus' || this.confirm || (this.isInput && !fromInput)) {
9699c270   梁灏   add Poptip component
205
206
207
208
                      return false;
                  }
                  this.visible = true;
              },
071506fc   梁灏   optimize Poptip f...
209
210
              handleBlur (fromInput = true) {
                  if (this.trigger !== 'focus' || this.confirm || (this.isInput && !fromInput)) {
9699c270   梁灏   add Poptip component
211
212
213
214
215
216
217
218
                      return false;
                  }
                  this.visible = false;
              },
              handleMouseenter () {
                  if (this.trigger !== 'hover' || this.confirm) {
                      return false;
                  }
fcf3cace   梁灏   Poptip & Tooltip ...
219
220
221
222
                  if (this.enterTimer) clearTimeout(this.enterTimer);
                  this.enterTimer = setTimeout(() => {
                      this.visible = true;
                  }, 100);
9699c270   梁灏   add Poptip component
223
224
225
226
227
              },
              handleMouseleave () {
                  if (this.trigger !== 'hover' || this.confirm) {
                      return false;
                  }
fcf3cace   梁灏   Poptip & Tooltip ...
228
229
230
231
232
233
                  if (this.enterTimer) {
                      clearTimeout(this.enterTimer);
                      this.enterTimer = setTimeout(() => {
                          this.visible = false;
                      }, 100);
                  }
9699c270   梁灏   add Poptip component
234
235
236
237
238
239
240
241
              },
              cancel () {
                  this.visible = false;
                  this.$emit('on-cancel');
              },
              ok () {
                  this.visible = false;
                  this.$emit('on-ok');
071506fc   梁灏   optimize Poptip f...
242
243
              },
              getInputChildren () {
79288d43   梁灏   support Poptip & ...
244
245
                  const $input = this.$refs.reference.querySelectorAll('input');
                  const $textarea = this.$refs.reference.querySelectorAll('textarea');
071506fc   梁灏   optimize Poptip f...
246
247
248
249
250
251
252
253
254
                  let $children = null;
  
                  if ($input.length) {
                      $children = $input[0];
                  } else if ($textarea.length) {
                      $children = $textarea[0];
                  }
  
                  return $children;
9699c270   梁灏   add Poptip component
255
              }
88bb7c92   梁灏   fix bug of Poptip
256
          },
79288d43   梁灏   support Poptip & ...
257
          mounted () {
88bb7c92   梁灏   fix bug of Poptip
258
              if (!this.confirm) {
79288d43   梁灏   support Poptip & ...
259
  //                this.showTitle = this.$refs.title.innerHTML != `<div class="${prefixCls}-title-inner"></div>`;
8e7ac210   Aresn   fixed #1222
260
                  this.showTitle = (this.$slots.title !== undefined) || this.title;
88bb7c92   梁灏   fix bug of Poptip
261
              }
071506fc   梁灏   optimize Poptip f...
262
263
              // if trigger and children is input or textarea,listen focus & blur event
              if (this.trigger === 'focus') {
b8adf5cf   Aresn   fixed #1101
264
265
266
                  this.$nextTick(() => {
                      const $children = this.getInputChildren();
                      if ($children) {
8e7ac210   Aresn   fixed #1222
267
                          this.isInput = true;
b8adf5cf   Aresn   fixed #1101
268
269
270
271
                          $children.addEventListener('focus', this.handleFocus, false);
                          $children.addEventListener('blur', this.handleBlur, false);
                      }
                  });
071506fc   梁灏   optimize Poptip f...
272
273
274
275
276
277
278
279
              }
          },
          beforeDestroy () {
              const $children = this.getInputChildren();
              if ($children) {
                  $children.removeEventListener('focus', this.handleFocus, false);
                  $children.removeEventListener('blur', this.handleBlur, false);
              }
9699c270   梁灏   add Poptip component
280
          }
b0893113   jingsam   :art: add eslint
281
      };
d6342fe1   jingsam   fixed ie bug
282
  </script>