123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291 |
- <template>
- <view class="van-stepper custom-class">
- <view
- v-if="showMinus"
- data-type="minus"
- :style="'width: ' + utils.addUnit(buttonSize) + '; height: ' + utils.addUnit(buttonSize)"
- :class="'minus-class ' + utils.bem('stepper__minus', { disabled: disabled || disableMinus || currentValue <= min })"
- hover-class="van-stepper__minus--hover"
- hover-stay-time="70"
- @tap="onTap"
- @touchstart="onTouchStart"
- @touchend="onTouchEnd"
- />
- <input
- :type="integer ? 'number' : 'digit'"
- :class="'input-class ' + utils.bem('stepper__input', { disabled: disabled || disableInput })"
- :style="'width: ' + utils.addUnit(inputWidth) + '; height: ' + utils.addUnit(buttonSize)"
- :value="currentValue"
- :focus="focus"
- :disabled="disabled || disableInput"
- @input="onInput"
- @focus="onFocus"
- @blur="onBlur"
- />
- <view
- v-if="showPlus"
- data-type="plus"
- :style="'width: ' + utils.addUnit(buttonSize) + '; height: ' + utils.addUnit(buttonSize)"
- :class="'plus-class ' + utils.bem('stepper__plus', { disabled: disabled || disablePlus || currentValue >= max })"
- hover-class="van-stepper__plus--hover"
- hover-stay-time="70"
- @tap="onTap"
- @touchstart="onTouchStart"
- @touchend="onTouchEnd"
- />
- </view>
- </template>
- <script module="utils" lang="wxs" src="@/node_modules/@vant/weapp/dist/wxs/utils.wxs"></script>
- <script>
- import { VantComponent } from '../common/component';
- import { isDef } from '../common/utils';
- const LONG_PRESS_START_TIME = 600;
- const LONG_PRESS_INTERVAL = 200;
- // add num and avoid float number
- function add(num1, num2) {
- const cardinal = Math.pow(10, 10);
- return Math.round((num1 + num2) * cardinal) / cardinal;
- }
- function equal(value1, value2) {
- return String(value1) === String(value2);
- }
- export default {
- data() {
- return {
- currentValue: '',
- focus: ''
- };
- },
- field: true,
- classes: ['input-class', 'plus-class', 'minus-class'],
- props: {
- value: {
- type: null
- },
- integer: {
- type: Boolean
- },
- disabled: Boolean,
- inputWidth: null,
- buttonSize: null,
- asyncChange: Boolean,
- disableInput: Boolean,
- decimalLength: {
- type: Number,
- default: null
- },
- min: {
- type: null,
- default: 1
- },
- max: {
- type: null,
- default: Number.MAX_SAFE_INTEGER
- },
- step: {
- type: null,
- default: 1
- },
- showPlus: {
- type: Boolean,
- default: true
- },
- showMinus: {
- type: Boolean,
- default: true
- },
- disablePlus: Boolean,
- disableMinus: Boolean,
- longPress: {
- type: Boolean,
- default: true
- }
- },
- created() {
- this.setData({
- currentValue: this.format(this.value)
- });
- },
- methods: {
- check() {
- const val = this.format(this.currentValue);
- if (!equal(val, this.currentValue)) {
- this.setData({
- currentValue: val
- });
- }
- },
- isDisabled(type) {
- if (type === 'plus') {
- return this.disabled || this.disablePlus || this.currentValue >= this.max;
- }
- return this.disabled || this.disableMinus || this.currentValue <= this.min;
- },
- onFocus(event) {
- this.$emit('focus', event.detail);
- },
- onBlur(event) {
- const value = this.format(event.detail.value);
- this.emitChange(value);
- this.$emit(
- 'blur',
- Object.assign(Object.assign({}, event.detail), {
- value
- })
- );
- },
- // filter illegal characters
- filter(value) {
- value = String(value).replace(/[^0-9.-]/g, '');
- if (this.integer && value.indexOf('.') !== -1) {
- value = value.split('.')[0];
- }
- return value;
- },
- // limit value range
- format(value) {
- value = this.filter(value);
- // format range
- value = value === '' ? 0 : +value;
- value = Math.max(Math.min(this.max, value), this.min);
- // format decimal
- if (isDef(this.decimalLength)) {
- value = value.toFixed(this.decimalLength);
- }
- return value;
- },
- onInput(event) {
- const { value = '' } = event.detail || {};
- // allow input to be empty
- if (value === '') {
- return;
- }
- let formatted = this.filter(value);
- // limit max decimal length
- if (isDef(this.decimalLength) && formatted.indexOf('.') !== -1) {
- const pair = formatted.split('.');
- formatted = `${pair[0]}.${pair[1].slice(0, this.decimalLength)}`;
- }
- this.emitChange(formatted);
- },
- emitChange(value) {
- if (!this.asyncChange) {
- this.setData({
- currentValue: value
- });
- }
- this.$emit('change', value);
- },
- onChange() {
- const { type } = this;
- if (this.isDisabled(type)) {
- this.$emit('overlimit', type);
- return;
- }
- const diff = type === 'minus' ? -this.step : +this.step;
- const value = this.format(add(+this.currentValue, diff));
- this.emitChange(value);
- this.$emit(type);
- },
- longPressStep() {
- this.longPressTimer = setTimeout(() => {
- this.onChange();
- this.longPressStep();
- }, LONG_PRESS_INTERVAL);
- },
- onTap(event) {
- const { type } = event.currentTarget.dataset;
- this.type = type;
- this.onChange();
- },
- onTouchStart(event) {
- if (!this.longPress) {
- return;
- }
- clearTimeout(this.longPressTimer);
- const { type } = event.currentTarget.dataset;
- this.type = type;
- this.isLongPress = false;
- this.longPressTimer = setTimeout(() => {
- this.isLongPress = true;
- this.onChange();
- this.longPressStep();
- }, LONG_PRESS_START_TIME);
- },
- onTouchEnd() {
- if (!this.longPress) {
- return;
- }
- clearTimeout(this.longPressTimer);
- }
- },
- watch: {
- value: {
- handler: function (value) {
- if (!equal(value, this.currentValue)) {
- this.setData({
- currentValue: this.format(value)
- });
- }
- },
- immediate: true
- },
- integer: {
- handler: function () {
- const val = this.format(this.currentValue);
- if (!equal(val, this.currentValue)) {
- this.setData({
- currentValue: val
- });
- }
- },
- immediate: true
- },
- decimalLength: {
- handler: function () {
- const val = this.format(this.currentValue);
- if (!equal(val, this.currentValue)) {
- this.setData({
- currentValue: val
- });
- }
- },
- immediate: true
- },
- min: {
- handler: function () {
- const val = this.format(this.currentValue);
- if (!equal(val, this.currentValue)) {
- this.setData({
- currentValue: val
- });
- }
- },
- immediate: true
- },
- max: {
- handler: function () {
- const val = this.format(this.currentValue);
- if (!equal(val, this.currentValue)) {
- this.setData({
- currentValue: val
- });
- }
- },
- immediate: true
- }
- }
- };
- </script>
- <style>
- @import './index.css';
- </style>
|