mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
fix(radio): support set disabled dynamic (#4191)
This commit is contained in:
parent
986df09bd6
commit
bffe5fc999
@ -4,9 +4,7 @@ import { useChildren } from '../common/relation';
|
|||||||
VantComponent({
|
VantComponent({
|
||||||
field: true,
|
field: true,
|
||||||
|
|
||||||
relation: useChildren('radio', function (target) {
|
relation: useChildren('radio'),
|
||||||
this.updateChild(target);
|
|
||||||
}),
|
|
||||||
|
|
||||||
props: {
|
props: {
|
||||||
value: {
|
value: {
|
||||||
@ -22,19 +20,7 @@ VantComponent({
|
|||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
updateChildren() {
|
updateChildren() {
|
||||||
this.children.forEach(
|
this.children.forEach((child) => child.updateFromParent());
|
||||||
(child: WechatMiniprogram.Component.TrivialInstance) =>
|
|
||||||
this.updateChild(child)
|
|
||||||
);
|
|
||||||
},
|
|
||||||
|
|
||||||
updateChild(child: WechatMiniprogram.Component.TrivialInstance) {
|
|
||||||
const { value, disabled, direction } = this.data;
|
|
||||||
child.setData({
|
|
||||||
value,
|
|
||||||
direction,
|
|
||||||
disabled: disabled || child.data.disabled,
|
|
||||||
});
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
@ -1,10 +1,13 @@
|
|||||||
|
import { canIUseModel } from '../common/version';
|
||||||
import { VantComponent } from '../common/component';
|
import { VantComponent } from '../common/component';
|
||||||
import { useParent } from '../common/relation';
|
import { useParent } from '../common/relation';
|
||||||
|
|
||||||
VantComponent({
|
VantComponent({
|
||||||
field: true,
|
field: true,
|
||||||
|
|
||||||
relation: useParent('radio-group'),
|
relation: useParent('radio-group', function () {
|
||||||
|
this.updateFromParent();
|
||||||
|
}),
|
||||||
|
|
||||||
classes: ['icon-class', 'label-class'],
|
classes: ['icon-class', 'label-class'],
|
||||||
|
|
||||||
@ -29,22 +32,45 @@ VantComponent({
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
|
data: {
|
||||||
|
direction: '',
|
||||||
|
parentDisabled: false,
|
||||||
|
},
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
|
updateFromParent() {
|
||||||
|
if (!this.parent) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const { value, disabled: parentDisabled, direction } = this.parent.data;
|
||||||
|
|
||||||
|
this.setData({
|
||||||
|
value,
|
||||||
|
direction,
|
||||||
|
parentDisabled,
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
emitChange(value: boolean) {
|
emitChange(value: boolean) {
|
||||||
const instance = this.parent || this;
|
const instance = this.parent || this;
|
||||||
instance.$emit('input', value);
|
instance.$emit('input', value);
|
||||||
instance.$emit('change', value);
|
instance.$emit('change', value);
|
||||||
|
|
||||||
|
if (canIUseModel()) {
|
||||||
|
instance.setData({ value });
|
||||||
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
onChange() {
|
onChange() {
|
||||||
if (!this.data.disabled) {
|
if (!this.data.disabled && !this.data.parentDisabled) {
|
||||||
this.emitChange(this.data.name);
|
this.emitChange(this.data.name);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
onClickLabel() {
|
onClickLabel() {
|
||||||
const { disabled, labelDisabled, name } = this.data;
|
const { disabled, parentDisabled, labelDisabled, name } = this.data;
|
||||||
if (!disabled && !labelDisabled) {
|
if (!(disabled || parentDisabled) && !labelDisabled) {
|
||||||
this.emitChange(name);
|
this.emitChange(name);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -1,27 +1,28 @@
|
|||||||
<wxs src="../wxs/utils.wxs" module="utils" />
|
<wxs src="../wxs/utils.wxs" module="utils" />
|
||||||
|
<wxs src="./index.wxs" module="computed" />
|
||||||
|
|
||||||
<view class="{{ utils.bem('radio', [direction]) }} custom-class">
|
<view class="{{ utils.bem('radio', [direction]) }} custom-class">
|
||||||
<view
|
<view
|
||||||
wx:if="{{ labelPosition === 'left' }}"
|
wx:if="{{ labelPosition === 'left' }}"
|
||||||
class="label-class {{ utils.bem('radio__label', [labelPosition, { disabled }]) }}"
|
class="{{ utils.bem('radio__label', [labelPosition, { disabled: disabled || parentDisabled }]) }} label-class"
|
||||||
bindtap="onClickLabel"
|
bindtap="onClickLabel"
|
||||||
>
|
>
|
||||||
<slot />
|
<slot />
|
||||||
</view>
|
</view>
|
||||||
<view class="van-radio__icon-wrap" style="font-size: {{ utils.addUnit(iconSize) }};" bindtap="onChange">
|
<view class="van-radio__icon-wrap" style="font-size: {{ utils.addUnit(iconSize) }}" bindtap="onChange">
|
||||||
<slot wx:if="{{ useIconSlot }}" name="icon" />
|
<slot wx:if="{{ useIconSlot }}" name="icon" />
|
||||||
<van-icon
|
<van-icon
|
||||||
wx:else
|
wx:else
|
||||||
name="success"
|
name="success"
|
||||||
class="{{ utils.bem('radio__icon', [shape, { disabled, checked: value === name }]) }}"
|
class="{{ utils.bem('radio__icon', [shape, { disabled: disabled || parentDisabled, checked: value === name }]) }}"
|
||||||
style="font-size: {{ utils.addUnit(iconSize) }};{{ checkedColor && !disabled && value === name ? 'border-color:' + checkedColor + '; background-color:' + checkedColor + ';' : '' }}"
|
style="{{ computed.iconStyle({ iconSize, checkedColor, disabled, parentDisabled, value, name }) }}"
|
||||||
custom-class="icon-class"
|
custom-class="icon-class"
|
||||||
custom-style="line-height: {{ utils.addUnit(iconSize) }};font-size: .8em;display: block;"
|
custom-style="{{ computed.iconCustomStyle({ iconSize }) }}"
|
||||||
/>
|
/>
|
||||||
</view>
|
</view>
|
||||||
<view
|
<view
|
||||||
wx:if="{{ labelPosition === 'right' }}"
|
wx:if="{{ labelPosition === 'right' }}"
|
||||||
class="label-class {{ utils.bem('radio__label', [labelPosition, { disabled }]) }}"
|
class="label-class {{ utils.bem('radio__label', [labelPosition, { disabled: disabled || parentDisabled }]) }}"
|
||||||
bindtap="onClickLabel"
|
bindtap="onClickLabel"
|
||||||
>
|
>
|
||||||
<slot />
|
<slot />
|
||||||
|
33
packages/radio/index.wxs
Normal file
33
packages/radio/index.wxs
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
/* eslint-disable */
|
||||||
|
var style = require('../wxs/style.wxs');
|
||||||
|
var addUnit = require('../wxs/add-unit.wxs');
|
||||||
|
|
||||||
|
function iconStyle(data) {
|
||||||
|
var styles = {
|
||||||
|
'font-size': addUnit(data.iconSize),
|
||||||
|
};
|
||||||
|
|
||||||
|
if (
|
||||||
|
data.checkedColor &&
|
||||||
|
!(data.disabled || data.parentDisabled) &&
|
||||||
|
data.value === data.name
|
||||||
|
) {
|
||||||
|
styles['border-color'] = data.checkedColor;
|
||||||
|
styles['background-color'] = data.checkedColor;
|
||||||
|
}
|
||||||
|
|
||||||
|
return style(styles);
|
||||||
|
}
|
||||||
|
|
||||||
|
function iconCustomStyle(data) {
|
||||||
|
return style({
|
||||||
|
'line-height': addUnit(data.iconSize),
|
||||||
|
'font-size': '.8em',
|
||||||
|
display: 'block',
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = {
|
||||||
|
iconStyle: iconStyle,
|
||||||
|
iconCustomStyle: iconCustomStyle,
|
||||||
|
};
|
Loading…
x
Reference in New Issue
Block a user