index.vue 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. <template>
  2. <view :class="'custom-class ' + utils.bem('slider', { disabled })" :style="inactiveColor ? 'background:' + inactiveColor : ''" @tap="onClick">
  3. <view class="van-slider__bar" :style="barStyle + ';' + computed.barStyle(barHeight, activeColor)">
  4. <view class="van-slider__button-wrapper" @touchstart="onTouchStart" @touchmove.stop.prevent="onTouchMove" @touchend="onTouchEnd" @touchcancel="onTouchEnd">
  5. <slot v-if="useButtonSlot" name="button" />
  6. <view v-else class="van-slider__button" />
  7. </view>
  8. </view>
  9. </view>
  10. </template>
  11. <script module="utils" lang="wxs" src="@/node_modules/@vant/weapp/lib/wxs/utils.wxs"></script>
  12. <script module="computed" lang="wxs" src="@/node_modules/@vant/weapp/lib/slider/index.wxs"></script>
  13. <script>
  14. 'use strict';
  15. Object.defineProperty(exports, '__esModule', {
  16. value: true
  17. });
  18. var component_1 = require('../common/component');
  19. var touch_1 = require('../mixins/touch');
  20. var version_1 = require('../common/version');
  21. component_1.VantComponent({
  22. mixins: [touch_1.touch],
  23. props: {
  24. disabled: Boolean,
  25. useButtonSlot: Boolean,
  26. activeColor: String,
  27. inactiveColor: String,
  28. max: {
  29. type: Number,
  30. value: 100
  31. },
  32. min: {
  33. type: Number,
  34. value: 0
  35. },
  36. step: {
  37. type: Number,
  38. value: 1
  39. },
  40. value: {
  41. type: Number,
  42. value: 0,
  43. observer: 'updateValue'
  44. },
  45. barHeight: {
  46. type: null,
  47. value: '2px'
  48. }
  49. },
  50. created: function () {
  51. this.updateValue(this.value);
  52. },
  53. methods: {
  54. onTouchStart: function (event) {
  55. if (this.disabled) {
  56. return;
  57. }
  58. this.touchStart(event);
  59. this.startValue = this.format(this.value);
  60. this.dragStatus = 'start';
  61. },
  62. onTouchMove: function (event) {
  63. var that = this;
  64. if (this.disabled) {
  65. return;
  66. }
  67. if (this.dragStatus === 'start') {
  68. this.$emit('drag-start');
  69. }
  70. this.touchMove(event);
  71. this.dragStatus = 'draging';
  72. this.getRect('.van-slider').then(function (rect) {
  73. var diff = (that.deltaX / rect.width) * 100;
  74. that.newValue = that.startValue + diff;
  75. that.updateValue(that.newValue, false, true);
  76. });
  77. },
  78. onTouchEnd: function () {
  79. if (this.disabled) {
  80. return;
  81. }
  82. if (this.dragStatus === 'draging') {
  83. this.updateValue(this.newValue, true);
  84. this.$emit('drag-end');
  85. }
  86. },
  87. onClick: function (event) {
  88. var that = this;
  89. if (this.disabled) {
  90. return;
  91. }
  92. var min = this.min;
  93. this.getRect('.van-slider').then(function (rect) {
  94. var value = ((event.detail.x - rect.left) / rect.width) * that.getRange() + min;
  95. that.updateValue(value, true);
  96. });
  97. },
  98. updateValue: function (value, end, drag) {
  99. value = this.format(value);
  100. var min = this.min;
  101. var width = ((value - min) * 100) / this.getRange() + '%';
  102. this.setData({
  103. value: value,
  104. barStyle: '\n width: ' + width + ';\n ' + (drag ? 'transition: none;' : '') + '\n '
  105. });
  106. if (drag) {
  107. this.$emit('drag', {
  108. value: value
  109. });
  110. }
  111. if (end) {
  112. this.$emit('change', value);
  113. }
  114. if ((drag || end) && version_1.canIUseModel()) {
  115. this.setData({
  116. value: value
  117. });
  118. }
  119. },
  120. getRange: function () {
  121. var _a = this;
  122. var max = _a.max;
  123. var min = _a.min;
  124. return max - min;
  125. },
  126. format: function (value) {
  127. var _a = this;
  128. var max = _a.max;
  129. var min = _a.min;
  130. var step = _a.step;
  131. return Math.round(Math.max(min, Math.min(value, max)) / step) * step;
  132. }
  133. }
  134. });
  135. </script>
  136. <style>
  137. @import './index.css';
  138. </style>