mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 10:22:44 +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({
|
||||
field: true,
|
||||
|
||||
relation: useChildren('radio', function (target) {
|
||||
this.updateChild(target);
|
||||
}),
|
||||
relation: useChildren('radio'),
|
||||
|
||||
props: {
|
||||
value: {
|
||||
@ -22,19 +20,7 @@ VantComponent({
|
||||
|
||||
methods: {
|
||||
updateChildren() {
|
||||
this.children.forEach(
|
||||
(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,
|
||||
});
|
||||
this.children.forEach((child) => child.updateFromParent());
|
||||
},
|
||||
},
|
||||
});
|
||||
|
@ -1,10 +1,13 @@
|
||||
import { canIUseModel } from '../common/version';
|
||||
import { VantComponent } from '../common/component';
|
||||
import { useParent } from '../common/relation';
|
||||
|
||||
VantComponent({
|
||||
field: true,
|
||||
|
||||
relation: useParent('radio-group'),
|
||||
relation: useParent('radio-group', function () {
|
||||
this.updateFromParent();
|
||||
}),
|
||||
|
||||
classes: ['icon-class', 'label-class'],
|
||||
|
||||
@ -29,22 +32,45 @@ VantComponent({
|
||||
},
|
||||
},
|
||||
|
||||
data: {
|
||||
direction: '',
|
||||
parentDisabled: false,
|
||||
},
|
||||
|
||||
methods: {
|
||||
updateFromParent() {
|
||||
if (!this.parent) {
|
||||
return;
|
||||
}
|
||||
|
||||
const { value, disabled: parentDisabled, direction } = this.parent.data;
|
||||
|
||||
this.setData({
|
||||
value,
|
||||
direction,
|
||||
parentDisabled,
|
||||
});
|
||||
},
|
||||
|
||||
emitChange(value: boolean) {
|
||||
const instance = this.parent || this;
|
||||
instance.$emit('input', value);
|
||||
instance.$emit('change', value);
|
||||
|
||||
if (canIUseModel()) {
|
||||
instance.setData({ value });
|
||||
}
|
||||
},
|
||||
|
||||
onChange() {
|
||||
if (!this.data.disabled) {
|
||||
if (!this.data.disabled && !this.data.parentDisabled) {
|
||||
this.emitChange(this.data.name);
|
||||
}
|
||||
},
|
||||
|
||||
onClickLabel() {
|
||||
const { disabled, labelDisabled, name } = this.data;
|
||||
if (!disabled && !labelDisabled) {
|
||||
const { disabled, parentDisabled, labelDisabled, name } = this.data;
|
||||
if (!(disabled || parentDisabled) && !labelDisabled) {
|
||||
this.emitChange(name);
|
||||
}
|
||||
},
|
||||
|
@ -1,27 +1,28 @@
|
||||
<wxs src="../wxs/utils.wxs" module="utils" />
|
||||
<wxs src="./index.wxs" module="computed" />
|
||||
|
||||
<view class="{{ utils.bem('radio', [direction]) }} custom-class">
|
||||
<view
|
||||
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"
|
||||
>
|
||||
<slot />
|
||||
</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" />
|
||||
<van-icon
|
||||
wx:else
|
||||
name="success"
|
||||
class="{{ utils.bem('radio__icon', [shape, { disabled, checked: value === name }]) }}"
|
||||
style="font-size: {{ utils.addUnit(iconSize) }};{{ checkedColor && !disabled && value === name ? 'border-color:' + checkedColor + '; background-color:' + checkedColor + ';' : '' }}"
|
||||
class="{{ utils.bem('radio__icon', [shape, { disabled: disabled || parentDisabled, checked: value === name }]) }}"
|
||||
style="{{ computed.iconStyle({ iconSize, checkedColor, disabled, parentDisabled, value, name }) }}"
|
||||
custom-class="icon-class"
|
||||
custom-style="line-height: {{ utils.addUnit(iconSize) }};font-size: .8em;display: block;"
|
||||
custom-style="{{ computed.iconCustomStyle({ iconSize }) }}"
|
||||
/>
|
||||
</view>
|
||||
<view
|
||||
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"
|
||||
>
|
||||
<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