vant-weapp/lib/slider/index.js
2021-09-07 14:31:11 +08:00

178 lines
4.9 KiB
JavaScript

'use strict';
Object.defineProperty(exports, '__esModule', { value: true });
var component_1 = require('../common/component');
var touch_1 = require('../mixins/touch');
var version_1 = require('../common/version');
var utils_1 = require('../common/utils');
component_1.VantComponent({
mixins: [touch_1.touch],
props: {
range: Boolean,
disabled: Boolean,
useButtonSlot: Boolean,
activeColor: String,
inactiveColor: String,
max: {
type: Number,
value: 100,
},
min: {
type: Number,
value: 0,
},
step: {
type: Number,
value: 1,
},
value: {
type: Number,
value: 0,
optionalTypes: [Array],
observer: function (val) {
if (val !== this.value) {
this.updateValue(val);
}
},
},
barHeight: null,
},
created: function () {
this.updateValue(this.data.value);
},
methods: {
onTouchStart: function (event) {
var _this = this;
if (this.data.disabled) return;
var index = event.currentTarget.dataset.index;
if (typeof index === 'number') {
this.buttonIndex = index;
}
this.touchStart(event);
this.startValue = this.format(this.value);
this.newValue = this.value;
if (this.isRange(this.newValue)) {
this.startValue = this.newValue.map(function (val) {
return _this.format(val);
});
} else {
this.startValue = this.format(this.newValue);
}
this.dragStatus = 'start';
},
onTouchMove: function (event) {
var _this = this;
if (this.data.disabled) return;
if (this.dragStatus === 'start') {
this.$emit('drag-start');
}
this.touchMove(event);
this.dragStatus = 'draging';
utils_1.getRect(this, '.van-slider').then(function (rect) {
var diff = (_this.deltaX / rect.width) * _this.getRange();
if (_this.isRange(_this.startValue)) {
_this.newValue[_this.buttonIndex] =
_this.startValue[_this.buttonIndex] + diff;
} else {
_this.newValue = _this.startValue + diff;
}
_this.updateValue(_this.newValue, false, true);
});
},
onTouchEnd: function () {
if (this.data.disabled) return;
if (this.dragStatus === 'draging') {
this.updateValue(this.newValue, true);
this.$emit('drag-end');
}
},
onClick: function (event) {
var _this = this;
if (this.data.disabled) return;
var min = this.data.min;
utils_1.getRect(this, '.van-slider').then(function (rect) {
var value =
((event.detail.x - rect.left) / rect.width) * _this.getRange() + min;
if (_this.isRange(_this.value)) {
var _a = _this.value,
left = _a[0],
right = _a[1];
var middle = (left + right) / 2;
if (value <= middle) {
_this.updateValue([value, right], true);
} else {
_this.updateValue([left, value], true);
}
} else {
_this.updateValue(value, true);
}
});
},
isRange: function (val) {
var range = this.data.range;
return range && Array.isArray(val);
},
handleOverlap: function (value) {
if (value[0] > value[1]) {
return value.slice(0).reverse();
}
return value;
},
updateValue: function (value, end, drag) {
var _this = this;
if (this.isRange(value)) {
value = this.handleOverlap(value).map(function (val) {
return _this.format(val);
});
} else {
value = this.format(value);
}
this.value = value;
this.setData({
barStyle:
'\n width: ' +
this.calcMainAxis() +
';\n left: ' +
(this.isRange(value) ? value[0] + '%' : 0) +
';\n ' +
(drag ? 'transition: none;' : '') +
'\n ',
});
if (drag) {
this.$emit('drag', { value: value });
}
if (end) {
this.$emit('change', value);
}
if ((drag || end) && version_1.canIUseModel()) {
this.setData({ value: value });
}
},
getScope: function () {
return Number(this.data.max) - Number(this.data.min);
},
getRange: function () {
var _a = this.data,
max = _a.max,
min = _a.min;
return max - min;
},
// 计算选中条的长度百分比
calcMainAxis: function () {
var value = this.value;
var min = this.data.min;
var scope = this.getScope();
if (this.isRange(value)) {
return ((value[1] - value[0]) * 100) / scope + '%';
}
return ((value - Number(min)) * 100) / scope + '%';
},
format: function (value) {
var _a = this.data,
max = _a.max,
min = _a.min,
step = _a.step;
return Math.round(Math.max(min, Math.min(value, max)) / step) * step;
},
},
});