Blame view

src/components/slider/slider.vue 18.4 KB
36febc3c   梁灏   add Slider
1
2
  <template>
      <div :class="classes">
69576f47   梁灏   add Slider component
3
4
5
6
7
          <Input-number
              v-if="!range && showInput"
              :min="min"
              :max="max"
              :step="step"
1c803cdf   梁灏   support Slider
8
              :value="currentValue"
69576f47   梁灏   add Slider component
9
10
              :disabled="disabled"
              @on-change="handleInputChange"></Input-number>
1c803cdf   梁灏   support Slider
11
          <div :class="[prefixCls + '-wrap']" ref="slider" @click.self="sliderClick">
36febc3c   梁灏   add Slider
12
              <template v-if="showStops">
5709f32e   梁灏   Slider support hi...
13
                  <div :class="[prefixCls + '-stop']" v-for="item in stops" :style="{ 'left': item + '%' }" @click.self="sliderClick"></div>
36febc3c   梁灏   add Slider
14
              </template>
5709f32e   梁灏   Slider support hi...
15
              <div :class="[prefixCls + '-bar']" :style="barStyle" @click.self="sliderClick"></div>
69576f47   梁灏   add Slider component
16
17
18
19
20
              <template v-if="range">
                  <div
                      :class="[prefixCls + '-button-wrap']"
                      :style="{left: firstPosition + '%'}"
                      @mousedown="onFirstButtonDown">
1c803cdf   梁灏   support Slider
21
                      <Tooltip :controlled="firstDragging" placement="top" :content="tipFormat(currentValue[0])" :disabled="tipDisabled" :always="showTip === 'always'" ref="tooltip">
69576f47   梁灏   add Slider component
22
23
24
25
26
27
28
                          <div :class="button1Classes"></div>
                      </Tooltip>
                  </div>
                  <div
                      :class="[prefixCls + '-button-wrap']"
                      :style="{left: secondPosition + '%'}"
                      @mousedown="onSecondButtonDown">
1c803cdf   梁灏   support Slider
29
                      <Tooltip :controlled="secondDragging" placement="top" :content="tipFormat(currentValue[1])" :disabled="tipDisabled" :always="showTip === 'always'" ref="tooltip2">
69576f47   梁灏   add Slider component
30
31
32
33
34
35
36
37
38
                          <div :class="button2Classes"></div>
                      </Tooltip>
                  </div>
              </template>
              <template v-else>
                  <div
                      :class="[prefixCls + '-button-wrap']"
                      :style="{left: singlePosition + '%'}"
                      @mousedown="onSingleButtonDown">
1c803cdf   梁灏   support Slider
39
                      <Tooltip :controlled="dragging" placement="top" :content="tipFormat(currentValue)" :disabled="tipDisabled" :always="showTip === 'always'" ref="tooltip">
69576f47   梁灏   add Slider component
40
41
42
43
                          <div :class="buttonClasses"></div>
                      </Tooltip>
                  </div>
              </template>
36febc3c   梁灏   add Slider
44
45
46
47
48
49
          </div>
      </div>
  </template>
  <script>
      import InputNumber from '../../components/input-number/input-number.vue';
      import Tooltip from '../../components/tooltip/tooltip.vue';
59872199   Rijn   added show-tip to...
50
      import { getStyle, oneOf } from '../../utils/assist';
cd78c9c4   梁灏   some comps suppor...
51
      import Emitter from '../../mixins/emitter';
36febc3c   梁灏   add Slider
52
53
54
55
  
      const prefixCls = 'ivu-slider';
  
      export default {
b1c118d8   梁灏   support Dropdown
56
          name: 'Slider',
cd78c9c4   梁灏   some comps suppor...
57
          mixins: [ Emitter ],
36febc3c   梁灏   add Slider
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
          components: { InputNumber, Tooltip },
          props: {
              min: {
                  type: Number,
                  default: 0
              },
              max: {
                  type: Number,
                  default: 100
              },
              step: {
                  type: Number,
                  default: 1
              },
              range: {
                  type: Boolean,
                  default: false
              },
              value: {
                  type: [Number, Array],
                  default: 0
              },
              disabled: {
                  type: Boolean,
                  default: false
              },
              showInput: {
                  type: Boolean,
                  default: false
              },
              showStops: {
                  type: Boolean,
                  default: false
              },
              tipFormat: {
                  type: Function,
                  default (val) {
                      return val;
                  }
59872199   Rijn   added show-tip to...
97
98
99
100
101
102
103
              },
              showTip: {
                  type: String,
                  default: 'hover',
                  validator (value) {
                      return oneOf(value, ['hover', 'always', 'never']);
                  }
36febc3c   梁灏   add Slider
104
105
106
107
              }
          },
          data () {
              return {
69576f47   梁灏   add Slider component
108
                  prefixCls: prefixCls,
1c803cdf   梁灏   support Slider
109
                  currentValue: this.value,
69576f47   梁灏   add Slider component
110
111
112
113
114
115
116
117
118
119
120
121
122
                  dragging: false,
                  firstDragging: false,
                  secondDragging: false,
                  startX: 0,
                  currentX: 0,
                  startPos: 0,
                  newPos: null,
                  oldSingleValue: this.value,
                  oldFirstValue: this.value[0],
                  oldSecondValue: this.value[1],
                  singlePosition: (this.value - this.min) / (this.max - this.min) * 100,
                  firstPosition: (this.value[0] - this.min) / (this.max - this.min) * 100,
                  secondPosition: (this.value[1] - this.min) / (this.max - this.min) * 100
b0893113   jingsam   :art: add eslint
123
              };
36febc3c   梁灏   add Slider
124
          },
1c803cdf   梁灏   support Slider
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
          watch: {
              value (val) {
                  this.currentValue = val;
              },
              currentValue (val) {
                  this.$nextTick(() => {
                      this.$refs.tooltip.updatePopper();
                      if (this.range) {
                          this.$refs.tooltip2.updatePopper();
                      }
                  });
                  this.updateValue(val);
                  this.$emit('input', val);
                  this.$emit('on-input', val);
              }
          },
36febc3c   梁灏   add Slider
141
142
143
144
145
          computed: {
              classes () {
                  return [
                      `${prefixCls}`,
                      {
69576f47   梁灏   add Slider component
146
                          [`${prefixCls}-input`]: this.showInput && !this.range,
36febc3c   梁灏   add Slider
147
148
149
                          [`${prefixCls}-range`]: this.range,
                          [`${prefixCls}-disabled`]: this.disabled
                      }
b0893113   jingsam   :art: add eslint
150
                  ];
36febc3c   梁灏   add Slider
151
              },
69576f47   梁灏   add Slider component
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
              buttonClasses () {
                  return [
                      `${prefixCls}-button`,
                      {
                          [`${prefixCls}-button-dragging`]: this.dragging
                      }
                  ];
              },
              button1Classes () {
                  return [
                      `${prefixCls}-button`,
                      {
                          [`${prefixCls}-button-dragging`]: this.firstDragging
                      }
                  ];
              },
              button2Classes () {
                  return [
                      `${prefixCls}-button`,
                      {
                          [`${prefixCls}-button-dragging`]: this.secondDragging
                      }
                  ];
              },
36febc3c   梁灏   add Slider
176
177
178
179
180
              barStyle () {
                  let style;
  
                  if (this.range) {
                      style = {
1c803cdf   梁灏   support Slider
181
182
                          width: (this.currentValue[1] - this.currentValue[0]) / (this.max - this.min) * 100 + '%',
                          left: (this.currentValue[0] - this.min) / (this.max - this.min) * 100 + '%'
b0893113   jingsam   :art: add eslint
183
                      };
36febc3c   梁灏   add Slider
184
185
                  } else {
                      style = {
1c803cdf   梁灏   support Slider
186
                          width: (this.currentValue - this.min) / (this.max - this.min) * 100 + '%'
b0893113   jingsam   :art: add eslint
187
                      };
36febc3c   梁灏   add Slider
188
189
190
191
192
                  }
  
                  return style;
              },
              stops() {
41d90ccf   梁灏   Slider can show s...
193
194
195
196
197
198
199
                  let stopCount = (this.max - this.min) / this.step;
                  let result = [];
                  let stepWidth = 100 * this.step / (this.max - this.min);
                  for (let i = 1; i < stopCount; i++) {
                      result.push(i * stepWidth);
                  }
                  return result;
69576f47   梁灏   add Slider component
200
201
              },
              sliderWidth () {
1c803cdf   梁灏   support Slider
202
                  return parseInt(getStyle(this.$refs.slider, 'width'), 10);
59872199   Rijn   added show-tip to...
203
204
              },
              tipDisabled () {
1c803cdf   梁灏   support Slider
205
                  return this.tipFormat(this.currentValue[0]) === null || this.showTip === 'never';
36febc3c   梁灏   add Slider
206
207
208
              }
          },
          methods: {
69576f47   梁灏   add Slider component
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
              updateValue (val, init = false) {
                  if (this.range) {
                      let value = [...val];
                      if (init) {
                          if (value[0] > value[1]) {
                              value = [this.min, this.max];
                          }
                      } else {
                          if (value[0] > value[1]) {
                              value[0] = value[1];
                          }
                      }
                      if (value[0] < this.min) {
                          value[0] = this.min;
                      }
                      if (value[0] > this.max) {
                          value[0] = this.max;
                      }
                      if (value[1] < this.min) {
                          value[1] = this.min;
                      }
                      if (value[1] > this.max) {
                          value[1] = this.max;
                      }
62a06f56   梁灏   fixed #724
233
234
235
236
237
                      if (this.value[0] === value[0] && this.value[1] === value[1]) {
                          this.setFirstPosition(this.currentValue[0]);
                          this.setSecondPosition(this.currentValue[1]);
                          return;
                      }
69576f47   梁灏   add Slider component
238
  
1c803cdf   梁灏   support Slider
239
240
241
                      this.currentValue = value;
                      this.setFirstPosition(this.currentValue[0]);
                      this.setSecondPosition(this.currentValue[1]);
69576f47   梁灏   add Slider component
242
243
                  } else {
                      if (val < this.min) {
1c803cdf   梁灏   support Slider
244
                          this.currentValue = this.min;
69576f47   梁灏   add Slider component
245
246
                      }
                      if (val > this.max) {
1c803cdf   梁灏   support Slider
247
                          this.currentValue = this.max;
69576f47   梁灏   add Slider component
248
                      }
1c803cdf   梁灏   support Slider
249
                      this.setSinglePosition(this.currentValue);
69576f47   梁灏   add Slider component
250
251
252
253
254
                  }
              },
              sliderClick (event) {
                  if (this.disabled) return;
                  const currentX = event.clientX;
1c803cdf   梁灏   support Slider
255
                  const sliderOffsetLeft = this.$refs.slider.getBoundingClientRect().left;
69576f47   梁灏   add Slider component
256
                  const newPos = (currentX - sliderOffsetLeft) / this.sliderWidth * 100;
36febc3c   梁灏   add Slider
257
  
69576f47   梁灏   add Slider component
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
                  if (this.range) {
                      let type = '';
                      if (newPos <= this.firstPosition) {
                          type = 'First';
                      } else if (newPos >= this.secondPosition) {
                          type = 'Second';
                      } else {
                          if ((newPos - this.firstPosition) <= (this.secondPosition - newPos)) {
                              type = 'First';
                          } else {
                              type = 'Second';
                          }
                      }
                      this[`change${type}Position`](newPos);
                  } else {
                      this.changeSinglePosition(newPos);
                  }
              },
              // for single use
              onSingleButtonDown (event) {
                  if (this.disabled) return;
f2be585e   梁灏   optimize Slider w...
279
                  event.preventDefault();
69576f47   梁灏   add Slider component
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
                  this.onSingleDragStart(event);
                  window.addEventListener('mousemove', this.onSingleDragging);
                  window.addEventListener('mouseup', this.onSingleDragEnd);
              },
              onSingleDragStart (event) {
                  this.dragging = true;
                  this.startX = event.clientX;
                  this.startPos = parseInt(this.singlePosition, 10);
              },
              onSingleDragging (event) {
                  if (this.dragging) {
                      this.$refs.tooltip.visible = true;
                      this.currentX = event.clientX;
                      const diff = (this.currentX - this.startX) / this.sliderWidth * 100;
                      this.newPos = this.startPos + diff;
                      this.changeSinglePosition(this.newPos);
                  }
              },
              onSingleDragEnd () {
                  if (this.dragging) {
                      this.dragging = false;
                      this.$refs.tooltip.visible = false;
                      this.changeSinglePosition(this.newPos);
                      window.removeEventListener('mousemove', this.onSingleDragging);
                      window.removeEventListener('mouseup', this.onSingleDragEnd);
                  }
              },
              changeSinglePosition (newPos) {
a6fc9438   梁灏   fixed #461
308
309
310
311
312
313
314
                  if (newPos < 0) {
                      newPos = 0;
                  } else if (newPos > 100) {
                      newPos = 100;
                  }
                  const lengthPerStep = 100 / ((this.max - this.min) / this.step);
                  const steps = Math.round(newPos / lengthPerStep);
69576f47   梁灏   add Slider component
315
  
a6fc9438   梁灏   fixed #461
316
317
318
319
320
321
322
                  this.currentValue = Math.round(steps * lengthPerStep * (this.max - this.min) * 0.01 + this.min);
                  this.setSinglePosition(this.currentValue);
                  if (!this.dragging) {
                      if (this.currentValue !== this.oldSingleValue) {
                          this.$emit('on-change', this.currentValue);
                          this.dispatch('FormItem', 'on-form-change', this.currentValue);
                          this.oldSingleValue = this.currentValue;
69576f47   梁灏   add Slider component
323
324
325
326
327
328
329
                      }
                  }
              },
              setSinglePosition (val) {
                  this.singlePosition = (val - this.min) / (this.max - this.min) * 100;
              },
              handleInputChange (val) {
1c803cdf   梁灏   support Slider
330
                  this.currentValue = val;
69576f47   梁灏   add Slider component
331
                  this.setSinglePosition(val);
1c803cdf   梁灏   support Slider
332
                  this.$emit('on-change', this.currentValue);
cd78c9c4   梁灏   some comps suppor...
333
                  this.dispatch('FormItem', 'on-form-change', this.currentValue);
69576f47   梁灏   add Slider component
334
335
336
337
              },
              // for range use first
              onFirstButtonDown (event) {
                  if (this.disabled) return;
f2be585e   梁灏   optimize Slider w...
338
                  event.preventDefault();
69576f47   梁灏   add Slider component
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
                  this.onFirstDragStart(event);
                  window.addEventListener('mousemove', this.onFirstDragging);
                  window.addEventListener('mouseup', this.onFirstDragEnd);
              },
              onFirstDragStart (event) {
                  this.firstDragging = true;
                  this.startX = event.clientX;
                  this.startPos = parseInt(this.firstPosition, 10);
              },
              onFirstDragging (event) {
                  if (this.firstDragging) {
                      this.$refs.tooltip.visible = true;
                      this.currentX = event.clientX;
                      const diff = (this.currentX - this.startX) / this.sliderWidth * 100;
                      this.newPos = this.startPos + diff;
                      this.changeFirstPosition(this.newPos);
                  }
              },
              onFirstDragEnd () {
                  if (this.firstDragging) {
                      this.firstDragging = false;
                      this.$refs.tooltip.visible = false;
                      this.changeFirstPosition(this.newPos);
                      window.removeEventListener('mousemove', this.onFirstDragging);
                      window.removeEventListener('mouseup', this.onFirstDragEnd);
                  }
              },
              changeFirstPosition (newPos) {
2f8104a3   梁灏   update Slider
367
368
369
370
371
372
373
                  if (newPos < 0) {
                      newPos = 0;
                  } else if (newPos > this.secondPosition) {
                      newPos = this.secondPosition;
                  }
                  const lengthPerStep = 100 / ((this.max - this.min) / this.step);
                  const steps = Math.round(newPos / lengthPerStep);
69576f47   梁灏   add Slider component
374
  
2f8104a3   梁灏   update Slider
375
376
377
378
379
380
381
                  this.currentValue = [Math.round(steps * lengthPerStep * (this.max - this.min) * 0.01 + this.min), this.currentValue[1]];
                  this.setFirstPosition(this.currentValue[0]);
                  if (!this.firstDragging) {
                      if (this.currentValue[0] !== this.oldFirstValue) {
                          this.$emit('on-change', this.currentValue);
                          this.dispatch('FormItem', 'on-form-change', this.currentValue);
                          this.oldFirstValue = this.currentValue[0];
69576f47   梁灏   add Slider component
382
383
384
385
386
387
388
389
390
                      }
                  }
              },
              setFirstPosition (val) {
                  this.firstPosition = (val - this.min) / (this.max - this.min) * 100;
              },
              // for range use second
              onSecondButtonDown (event) {
                  if (this.disabled) return;
f2be585e   梁灏   optimize Slider w...
391
                  event.preventDefault();
69576f47   梁灏   add Slider component
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
                  this.onSecondDragStart(event);
                  window.addEventListener('mousemove', this.onSecondDragging);
                  window.addEventListener('mouseup', this.onSecondDragEnd);
              },
              onSecondDragStart (event) {
                  this.secondDragging = true;
                  this.startX = event.clientX;
                  this.startPos = parseInt(this.secondPosition, 10);
              },
              onSecondDragging (event) {
                  if (this.secondDragging) {
                      this.$refs.tooltip2.visible = true;
                      this.currentX = event.clientX;
                      const diff = (this.currentX - this.startX) / this.sliderWidth * 100;
                      this.newPos = this.startPos + diff;
                      this.changeSecondPosition(this.newPos);
                  }
              },
              onSecondDragEnd () {
                  if (this.secondDragging) {
                      this.secondDragging = false;
                      this.$refs.tooltip2.visible = false;
                      this.changeSecondPosition(this.newPos);
                      window.removeEventListener('mousemove', this.onSecondDragging);
                      window.removeEventListener('mouseup', this.onSecondDragEnd);
                  }
              },
              changeSecondPosition (newPos) {
2f8104a3   梁灏   update Slider
420
421
422
423
424
425
426
                  if (newPos > 100) {
                      newPos = 100;
                  } else if (newPos < this.firstPosition) {
                      newPos = this.firstPosition;
                  }
                  const lengthPerStep = 100 / ((this.max - this.min) / this.step);
                  const steps = Math.round(newPos / lengthPerStep);
69576f47   梁灏   add Slider component
427
  
2f8104a3   梁灏   update Slider
428
429
430
431
432
433
434
                  this.currentValue = [this.currentValue[0], Math.round(steps * lengthPerStep * (this.max - this.min) * 0.01 + this.min)];
                  this.setSecondPosition(this.currentValue[1]);
                  if (!this.secondDragging) {
                      if (this.currentValue[1] !== this.oldSecondValue) {
                          this.$emit('on-change', this.currentValue);
                          this.dispatch('FormItem', 'on-form-change', this.currentValue);
                          this.oldSecondValue = this.currentValue[1];
69576f47   梁灏   add Slider component
435
436
437
438
439
                      }
                  }
              },
              setSecondPosition (val) {
                  this.secondPosition = (val - this.min) / (this.max - this.min) * 100;
36febc3c   梁灏   add Slider
440
441
              }
          },
1c803cdf   梁灏   support Slider
442
          mounted () {
36febc3c   梁灏   add Slider
443
              if (this.range) {
1c803cdf   梁灏   support Slider
444
445
446
                  const isArray = Array.isArray(this.currentValue);
                  if (!isArray || (isArray && this.currentValue.length != 2) || (isArray && (isNaN(this.currentValue[0]) || isNaN(this.currentValue[1])))) {
                      this.currentValue = [this.min, this.max];
69576f47   梁灏   add Slider component
447
                  } else {
1c803cdf   梁灏   support Slider
448
                      this.updateValue(this.currentValue, true);
69576f47   梁灏   add Slider component
449
450
                  }
              } else {
1c803cdf   梁灏   support Slider
451
452
                  if (typeof this.currentValue !== 'number') {
                      this.currentValue = this.min;
36febc3c   梁灏   add Slider
453
                  }
1c803cdf   梁灏   support Slider
454
                  this.updateValue(this.currentValue);
36febc3c   梁灏   add Slider
455
456
              }
          }
b0893113   jingsam   :art: add eslint
457
458
      };
  </script>