index.vue 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291
  1. <template>
  2. <view class="van-stepper custom-class">
  3. <view
  4. v-if="showMinus"
  5. data-type="minus"
  6. :style="'width: ' + utils.addUnit(buttonSize) + '; height: ' + utils.addUnit(buttonSize)"
  7. :class="'minus-class ' + utils.bem('stepper__minus', { disabled: disabled || disableMinus || currentValue <= min })"
  8. hover-class="van-stepper__minus--hover"
  9. hover-stay-time="70"
  10. @tap="onTap"
  11. @touchstart="onTouchStart"
  12. @touchend="onTouchEnd"
  13. />
  14. <input
  15. :type="integer ? 'number' : 'digit'"
  16. :class="'input-class ' + utils.bem('stepper__input', { disabled: disabled || disableInput })"
  17. :style="'width: ' + utils.addUnit(inputWidth) + '; height: ' + utils.addUnit(buttonSize)"
  18. :value="currentValue"
  19. :focus="focus"
  20. :disabled="disabled || disableInput"
  21. @input="onInput"
  22. @focus="onFocus"
  23. @blur="onBlur"
  24. />
  25. <view
  26. v-if="showPlus"
  27. data-type="plus"
  28. :style="'width: ' + utils.addUnit(buttonSize) + '; height: ' + utils.addUnit(buttonSize)"
  29. :class="'plus-class ' + utils.bem('stepper__plus', { disabled: disabled || disablePlus || currentValue >= max })"
  30. hover-class="van-stepper__plus--hover"
  31. hover-stay-time="70"
  32. @tap="onTap"
  33. @touchstart="onTouchStart"
  34. @touchend="onTouchEnd"
  35. />
  36. </view>
  37. </template>
  38. <script module="utils" lang="wxs" src="@/node_modules/@vant/weapp/dist/wxs/utils.wxs"></script>
  39. <script>
  40. import { VantComponent } from '../common/component';
  41. import { isDef } from '../common/utils';
  42. const LONG_PRESS_START_TIME = 600;
  43. const LONG_PRESS_INTERVAL = 200;
  44. // add num and avoid float number
  45. function add(num1, num2) {
  46. const cardinal = Math.pow(10, 10);
  47. return Math.round((num1 + num2) * cardinal) / cardinal;
  48. }
  49. function equal(value1, value2) {
  50. return String(value1) === String(value2);
  51. }
  52. export default {
  53. data() {
  54. return {
  55. currentValue: '',
  56. focus: ''
  57. };
  58. },
  59. field: true,
  60. classes: ['input-class', 'plus-class', 'minus-class'],
  61. props: {
  62. value: {
  63. type: null
  64. },
  65. integer: {
  66. type: Boolean
  67. },
  68. disabled: Boolean,
  69. inputWidth: null,
  70. buttonSize: null,
  71. asyncChange: Boolean,
  72. disableInput: Boolean,
  73. decimalLength: {
  74. type: Number,
  75. default: null
  76. },
  77. min: {
  78. type: null,
  79. default: 1
  80. },
  81. max: {
  82. type: null,
  83. default: Number.MAX_SAFE_INTEGER
  84. },
  85. step: {
  86. type: null,
  87. default: 1
  88. },
  89. showPlus: {
  90. type: Boolean,
  91. default: true
  92. },
  93. showMinus: {
  94. type: Boolean,
  95. default: true
  96. },
  97. disablePlus: Boolean,
  98. disableMinus: Boolean,
  99. longPress: {
  100. type: Boolean,
  101. default: true
  102. }
  103. },
  104. created() {
  105. this.setData({
  106. currentValue: this.format(this.value)
  107. });
  108. },
  109. methods: {
  110. check() {
  111. const val = this.format(this.currentValue);
  112. if (!equal(val, this.currentValue)) {
  113. this.setData({
  114. currentValue: val
  115. });
  116. }
  117. },
  118. isDisabled(type) {
  119. if (type === 'plus') {
  120. return this.disabled || this.disablePlus || this.currentValue >= this.max;
  121. }
  122. return this.disabled || this.disableMinus || this.currentValue <= this.min;
  123. },
  124. onFocus(event) {
  125. this.$emit('focus', event.detail);
  126. },
  127. onBlur(event) {
  128. const value = this.format(event.detail.value);
  129. this.emitChange(value);
  130. this.$emit(
  131. 'blur',
  132. Object.assign(Object.assign({}, event.detail), {
  133. value
  134. })
  135. );
  136. },
  137. // filter illegal characters
  138. filter(value) {
  139. value = String(value).replace(/[^0-9.-]/g, '');
  140. if (this.integer && value.indexOf('.') !== -1) {
  141. value = value.split('.')[0];
  142. }
  143. return value;
  144. },
  145. // limit value range
  146. format(value) {
  147. value = this.filter(value);
  148. // format range
  149. value = value === '' ? 0 : +value;
  150. value = Math.max(Math.min(this.max, value), this.min);
  151. // format decimal
  152. if (isDef(this.decimalLength)) {
  153. value = value.toFixed(this.decimalLength);
  154. }
  155. return value;
  156. },
  157. onInput(event) {
  158. const { value = '' } = event.detail || {};
  159. // allow input to be empty
  160. if (value === '') {
  161. return;
  162. }
  163. let formatted = this.filter(value);
  164. // limit max decimal length
  165. if (isDef(this.decimalLength) && formatted.indexOf('.') !== -1) {
  166. const pair = formatted.split('.');
  167. formatted = `${pair[0]}.${pair[1].slice(0, this.decimalLength)}`;
  168. }
  169. this.emitChange(formatted);
  170. },
  171. emitChange(value) {
  172. if (!this.asyncChange) {
  173. this.setData({
  174. currentValue: value
  175. });
  176. }
  177. this.$emit('change', value);
  178. },
  179. onChange() {
  180. const { type } = this;
  181. if (this.isDisabled(type)) {
  182. this.$emit('overlimit', type);
  183. return;
  184. }
  185. const diff = type === 'minus' ? -this.step : +this.step;
  186. const value = this.format(add(+this.currentValue, diff));
  187. this.emitChange(value);
  188. this.$emit(type);
  189. },
  190. longPressStep() {
  191. this.longPressTimer = setTimeout(() => {
  192. this.onChange();
  193. this.longPressStep();
  194. }, LONG_PRESS_INTERVAL);
  195. },
  196. onTap(event) {
  197. const { type } = event.currentTarget.dataset;
  198. this.type = type;
  199. this.onChange();
  200. },
  201. onTouchStart(event) {
  202. if (!this.longPress) {
  203. return;
  204. }
  205. clearTimeout(this.longPressTimer);
  206. const { type } = event.currentTarget.dataset;
  207. this.type = type;
  208. this.isLongPress = false;
  209. this.longPressTimer = setTimeout(() => {
  210. this.isLongPress = true;
  211. this.onChange();
  212. this.longPressStep();
  213. }, LONG_PRESS_START_TIME);
  214. },
  215. onTouchEnd() {
  216. if (!this.longPress) {
  217. return;
  218. }
  219. clearTimeout(this.longPressTimer);
  220. }
  221. },
  222. watch: {
  223. value: {
  224. handler: function (value) {
  225. if (!equal(value, this.currentValue)) {
  226. this.setData({
  227. currentValue: this.format(value)
  228. });
  229. }
  230. },
  231. immediate: true
  232. },
  233. integer: {
  234. handler: function () {
  235. const val = this.format(this.currentValue);
  236. if (!equal(val, this.currentValue)) {
  237. this.setData({
  238. currentValue: val
  239. });
  240. }
  241. },
  242. immediate: true
  243. },
  244. decimalLength: {
  245. handler: function () {
  246. const val = this.format(this.currentValue);
  247. if (!equal(val, this.currentValue)) {
  248. this.setData({
  249. currentValue: val
  250. });
  251. }
  252. },
  253. immediate: true
  254. },
  255. min: {
  256. handler: function () {
  257. const val = this.format(this.currentValue);
  258. if (!equal(val, this.currentValue)) {
  259. this.setData({
  260. currentValue: val
  261. });
  262. }
  263. },
  264. immediate: true
  265. },
  266. max: {
  267. handler: function () {
  268. const val = this.format(this.currentValue);
  269. if (!equal(val, this.currentValue)) {
  270. this.setData({
  271. currentValue: val
  272. });
  273. }
  274. },
  275. immediate: true
  276. }
  277. }
  278. };
  279. </script>
  280. <style>
  281. @import './index.css';
  282. </style>