Merge pull request #3107 from rex-zsd/feat/slider_20200505

feat(slider): support model value
This commit is contained in:
rex 2020-05-05 10:44:10 +08:00 committed by GitHub
commit 8c31d81080
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 29 additions and 7 deletions

View File

@ -1,7 +1,7 @@
import { VantComponent } from '../common/component'; import { VantComponent } from '../common/component';
import { touch } from '../mixins/touch'; import { touch } from '../mixins/touch';
import { Weapp } from 'definitions/weapp'; import { Weapp } from 'definitions/weapp';
import { addUnit } from '../common/utils'; import { canIUseModel } from '../common/version';
VantComponent({ VantComponent({
mixins: [touch], mixins: [touch],
@ -26,9 +26,7 @@ VantComponent({
value: { value: {
type: Number, type: Number,
value: 0, value: 0,
observer(value: number) { observer: 'updateValue',
this.updateValue(value, false);
},
}, },
barHeight: { barHeight: {
type: null, type: null,
@ -93,14 +91,13 @@ VantComponent({
updateValue(value: number, end: boolean, drag: boolean) { updateValue(value: number, end: boolean, drag: boolean) {
value = this.format(value); value = this.format(value);
const { barHeight, min } = this.data; const { min } = this.data;
const width = `${((value - min) * 100) / this.getRange()}%`; const width = `${((value - min) * 100) / this.getRange()}%`;
this.setData({ this.setData({
value, value,
barStyle: ` barStyle: `
width: ${width}; width: ${width};
height: ${addUnit(barHeight)};
${drag ? 'transition: none;' : ''} ${drag ? 'transition: none;' : ''}
`, `,
}); });
@ -112,6 +109,10 @@ VantComponent({
if (end) { if (end) {
this.$emit('change', value); this.$emit('change', value);
} }
if ((drag || end) && canIUseModel()) {
this.setData({ value });
}
}, },
getRange() { getRange() {

View File

@ -1,4 +1,5 @@
<wxs src="../wxs/utils.wxs" module="utils" /> <wxs src="../wxs/utils.wxs" module="utils" />
<wxs src="./index.wxs" module="computed" />
<view <view
class="custom-class {{ utils.bem('slider', { disabled }) }}" class="custom-class {{ utils.bem('slider', { disabled }) }}"
@ -7,7 +8,7 @@
> >
<view <view
class="van-slider__bar" class="van-slider__bar"
style="{{ barStyle }}; {{ activeColor ? 'background:' + activeColor : '' }}" style="{{ barStyle }};{{ computed.barStyle(barHeight, activeColor) }}"
> >
<view <view
class="van-slider__button-wrapper" class="van-slider__button-wrapper"

20
packages/slider/index.wxs Normal file
View File

@ -0,0 +1,20 @@
/* eslint-disable */
var utils = require('../wxs/utils.wxs');
function barStyle(barHeight, activeColor) {
var styles = [['height', utils.addUnit(barHeight)]];
if (activeColor) {
styles.push(['background', activeColor]);
}
return styles
.map(function (item) {
return item.join(':');
})
.join(';');
}
module.exports = {
barStyle: barStyle,
};