index.js 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. import { VantComponent } from '../common/component';
  2. import { touch } from '../mixins/touch';
  3. import { canIUseModel } from '../common/version';
  4. import { getRect } from '../common/utils';
  5. VantComponent({
  6. mixins: [touch],
  7. props: {
  8. disabled: Boolean,
  9. useButtonSlot: Boolean,
  10. activeColor: String,
  11. inactiveColor: String,
  12. max: {
  13. type: Number,
  14. value: 100,
  15. },
  16. min: {
  17. type: Number,
  18. value: 0,
  19. },
  20. step: {
  21. type: Number,
  22. value: 1,
  23. },
  24. value: {
  25. type: Number,
  26. value: 0,
  27. observer(val) {
  28. if (val !== this.value) {
  29. this.updateValue(val);
  30. }
  31. },
  32. },
  33. barHeight: {
  34. type: null,
  35. value: 2,
  36. },
  37. },
  38. created() {
  39. this.updateValue(this.data.value);
  40. },
  41. methods: {
  42. onTouchStart(event) {
  43. if (this.data.disabled) return;
  44. this.touchStart(event);
  45. this.startValue = this.format(this.value);
  46. this.dragStatus = 'start';
  47. },
  48. onTouchMove(event) {
  49. if (this.data.disabled) return;
  50. if (this.dragStatus === 'start') {
  51. this.$emit('drag-start');
  52. }
  53. this.touchMove(event);
  54. this.dragStatus = 'draging';
  55. getRect(this, '.van-slider').then((rect) => {
  56. const diff = (this.deltaX / rect.width) * this.getRange();
  57. this.newValue = this.startValue + diff;
  58. this.updateValue(this.newValue, false, true);
  59. });
  60. },
  61. onTouchEnd() {
  62. if (this.data.disabled) return;
  63. if (this.dragStatus === 'draging') {
  64. this.updateValue(this.newValue, true);
  65. this.$emit('drag-end');
  66. }
  67. },
  68. onClick(event) {
  69. if (this.data.disabled) return;
  70. const { min } = this.data;
  71. getRect(this, '.van-slider').then((rect) => {
  72. const value =
  73. ((event.detail.x - rect.left) / rect.width) * this.getRange() + min;
  74. this.updateValue(value, true);
  75. });
  76. },
  77. updateValue(value, end, drag) {
  78. value = this.format(value);
  79. const { min } = this.data;
  80. const width = `${((value - min) * 100) / this.getRange()}%`;
  81. this.value = value;
  82. this.setData({
  83. barStyle: `
  84. width: ${width};
  85. ${drag ? 'transition: none;' : ''}
  86. `,
  87. });
  88. if (drag) {
  89. this.$emit('drag', { value });
  90. }
  91. if (end) {
  92. this.$emit('change', value);
  93. }
  94. if ((drag || end) && canIUseModel()) {
  95. this.setData({ value });
  96. }
  97. },
  98. getRange() {
  99. const { max, min } = this.data;
  100. return max - min;
  101. },
  102. format(value) {
  103. const { max, min, step } = this.data;
  104. return Math.round(Math.max(min, Math.min(value, max)) / step) * step;
  105. },
  106. },
  107. });