fix(Checkbox): bind-group prop not work #7447

This commit is contained in:
chenjiahan 2020-11-22 19:12:27 +08:00
parent 2cb5e5e566
commit ec5684c53e
3 changed files with 18 additions and 8 deletions

View File

@ -30,7 +30,10 @@ export default createComponent({
emit('update:modelValue', []);
} else {
const names = children
.filter((item) => checked || !item.checked.value)
.filter((item) => {
const willCheck = checked || !item.checked.value;
return item.props.bindGroup && willCheck;
})
.map((item) => item.name);
emit('update:modelValue', names);
}

View File

@ -22,6 +22,7 @@ export default defineComponent({
role: String,
parent: Object,
checked: Boolean,
bindGroup: Boolean,
bem: {
type: Function,
required: true,
@ -34,7 +35,7 @@ export default defineComponent({
const iconRef = ref<HTMLElement>();
const getParentProp = (name: string) => {
if (props.parent) {
if (props.parent && props.bindGroup) {
return props.parent.props[name];
}
return null;

View File

@ -12,7 +12,6 @@ export const CHECKBOX_KEY = 'vanCheckbox';
export default createComponent({
props: {
...checkerProps,
// TODO
bindGroup: {
type: Boolean,
default: true,
@ -34,27 +33,33 @@ export default createComponent({
if (!overlimit && value.indexOf(name) === -1) {
value.push(name);
parent.emit('update:modelValue', value);
if (props.bindGroup) {
parent.emit('update:modelValue', value);
}
}
} else {
const index = value.indexOf(name);
if (index !== -1) {
value.splice(index, 1);
parent.emit('update:modelValue', value);
if (props.bindGroup) {
parent.emit('update:modelValue', value);
}
}
}
};
const checked = computed(() => {
if (parent) {
if (parent && props.bindGroup) {
return parent.props.modelValue.indexOf(props.name) !== -1;
}
return props.modelValue;
});
const toggle = (newValue = !checked.value) => {
if (parent) {
if (parent && props.bindGroup) {
setParentValue(newValue);
} else {
emit('update:modelValue', newValue);
@ -68,7 +73,7 @@ export default createComponent({
}
);
useExpose({ toggle, checked });
useExpose({ toggle, props, checked });
useLinkField(() => props.modelValue);
return () => (
@ -78,6 +83,7 @@ export default createComponent({
role="checkbox"
parent={parent}
checked={checked.value}
bindGroup={props.bindGroup}
onToggle={toggle}
{...props}
/>