mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
perf(switch): use wxs (#3889)
This commit is contained in:
parent
0c3383a6c5
commit
b5529e2b66
@ -1,5 +1,4 @@
|
|||||||
import { VantComponent } from '../common/component';
|
import { VantComponent } from '../common/component';
|
||||||
import { BLUE, GRAY_DARK } from '../common/color';
|
|
||||||
|
|
||||||
VantComponent({
|
VantComponent({
|
||||||
field: true,
|
field: true,
|
||||||
@ -7,20 +6,14 @@ VantComponent({
|
|||||||
classes: ['node-class'],
|
classes: ['node-class'],
|
||||||
|
|
||||||
props: {
|
props: {
|
||||||
checked: {
|
checked: null,
|
||||||
type: null,
|
|
||||||
observer(value) {
|
|
||||||
const loadingColor = this.getLoadingColor(value);
|
|
||||||
this.setData({ value, loadingColor });
|
|
||||||
},
|
|
||||||
},
|
|
||||||
loading: Boolean,
|
loading: Boolean,
|
||||||
disabled: Boolean,
|
disabled: Boolean,
|
||||||
activeColor: String,
|
activeColor: String,
|
||||||
inactiveColor: String,
|
inactiveColor: String,
|
||||||
size: {
|
size: {
|
||||||
type: String,
|
type: String,
|
||||||
value: '30px',
|
value: '30',
|
||||||
},
|
},
|
||||||
activeValue: {
|
activeValue: {
|
||||||
type: null,
|
type: null,
|
||||||
@ -32,27 +25,19 @@ VantComponent({
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
created() {
|
|
||||||
const { checked: value } = this.data;
|
|
||||||
const loadingColor = this.getLoadingColor(value);
|
|
||||||
|
|
||||||
this.setData({ value, loadingColor });
|
|
||||||
},
|
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
getLoadingColor(checked) {
|
|
||||||
const { activeColor, inactiveColor } = this.data;
|
|
||||||
return checked ? activeColor || BLUE : inactiveColor || GRAY_DARK;
|
|
||||||
},
|
|
||||||
|
|
||||||
onClick() {
|
onClick() {
|
||||||
const { activeValue, inactiveValue } = this.data;
|
const { activeValue, inactiveValue, disabled, loading } = this.data;
|
||||||
if (!this.data.disabled && !this.data.loading) {
|
|
||||||
const checked = this.data.checked === activeValue;
|
if (disabled || loading) {
|
||||||
const value = checked ? inactiveValue : activeValue;
|
return;
|
||||||
this.$emit('input', value);
|
|
||||||
this.$emit('change', value);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const checked = this.data.checked === activeValue;
|
||||||
|
const value = checked ? inactiveValue : activeValue;
|
||||||
|
|
||||||
|
this.$emit('input', value);
|
||||||
|
this.$emit('change', value);
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
@ -1,11 +1,16 @@
|
|||||||
<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('switch', { on: value === activeValue, disabled }) }}"
|
class="{{ utils.bem('switch', { on: checked === activeValue, disabled }) }} custom-class"
|
||||||
style="font-size: {{ size }}; {{ (checked ? activeColor : inactiveColor) ? 'background-color: ' + (checked ? activeColor : inactiveColor ) : '' }}"
|
style="{{ computed.rootStyle({ size, checked, activeColor, inactiveColor }) }}"
|
||||||
bind:tap="onClick"
|
bind:tap="onClick"
|
||||||
>
|
>
|
||||||
<view class="van-switch__node node-class">
|
<view class="van-switch__node node-class">
|
||||||
<van-loading wx:if="{{ loading }}" color="{{ loadingColor }}" custom-class="van-switch__loading" />
|
<van-loading
|
||||||
|
wx:if="{{ loading }}"
|
||||||
|
color="{{ computed.loadingColor({ checked, activeColor, inactiveColor }) }}"
|
||||||
|
custom-class="van-switch__loading"
|
||||||
|
/>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
26
packages/switch/index.wxs
Normal file
26
packages/switch/index.wxs
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
/* eslint-disable */
|
||||||
|
var style = require('../wxs/style.wxs');
|
||||||
|
var addUnit = require('../wxs/add-unit.wxs');
|
||||||
|
|
||||||
|
function rootStyle(data) {
|
||||||
|
var currentColor = data.checked ? data.activeColor : data.inactiveColor;
|
||||||
|
|
||||||
|
return style({
|
||||||
|
'font-size': addUnit(data.size),
|
||||||
|
'background-color': currentColor,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
var BLUE = '#1989fa';
|
||||||
|
var GRAY_DARK = '#969799';
|
||||||
|
|
||||||
|
function loadingColor(data) {
|
||||||
|
return data.checked
|
||||||
|
? data.activeColor || BLUE
|
||||||
|
: data.inactiveColor || GRAY_DARK;
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = {
|
||||||
|
rootStyle: rootStyle,
|
||||||
|
loadingColor: loadingColor,
|
||||||
|
};
|
Loading…
x
Reference in New Issue
Block a user