fix(Field): should not set for attr to label when using input slot (#11966)

* fix(Field): when using input slot, the label's for attribute will not be set

* test(Field): add test case
This commit is contained in:
inottn 2023-06-17 21:07:20 +08:00 committed by GitHub
parent 58a05627ab
commit 79564847b3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 28 additions and 49 deletions

View File

@ -24,7 +24,6 @@ exports[`should render demo and match snapshot 1`] = `
> >
<!--[--> <!--[-->
<label id="van-field-label" <label id="van-field-label"
for="van-field-input"
style style
> >
Rate Rate
@ -123,7 +122,6 @@ exports[`should render demo and match snapshot 1`] = `
> >
<!--[--> <!--[-->
<label id="van-field-label" <label id="van-field-label"
for="van-field-input"
style style
> >
Slider Slider
@ -188,7 +186,6 @@ exports[`should render demo and match snapshot 1`] = `
> >
<!--[--> <!--[-->
<label id="van-field-label" <label id="van-field-label"
for="van-field-input"
style style
> >
Rate Rate
@ -287,7 +284,6 @@ exports[`should render demo and match snapshot 1`] = `
> >
<!--[--> <!--[-->
<label id="van-field-label" <label id="van-field-label"
for="van-field-input"
style style
> >
Slider Slider

View File

@ -15,9 +15,7 @@ exports[`should render demo and match snapshot 1`] = `
<form class="van-form"> <form class="van-form">
<div class="van-cell van-field"> <div class="van-cell van-field">
<div class="van-cell__title van-field__label"> <div class="van-cell__title van-field__label">
<label id="van-field-label" <label id="van-field-label">
for="van-field-input"
>
Rate Rate
</label> </label>
</div> </div>
@ -87,9 +85,7 @@ exports[`should render demo and match snapshot 1`] = `
</div> </div>
<div class="van-cell van-field"> <div class="van-cell van-field">
<div class="van-cell__title van-field__label"> <div class="van-cell__title van-field__label">
<label id="van-field-label" <label id="van-field-label">
for="van-field-input"
>
Slider Slider
</label> </label>
</div> </div>
@ -137,9 +133,7 @@ exports[`should render demo and match snapshot 1`] = `
<form class="van-form"> <form class="van-form">
<div class="van-cell van-field"> <div class="van-cell van-field">
<div class="van-cell__title van-field__label"> <div class="van-cell__title van-field__label">
<label id="van-field-label" <label id="van-field-label">
for="van-field-input"
>
Rate Rate
</label> </label>
</div> </div>
@ -209,9 +203,7 @@ exports[`should render demo and match snapshot 1`] = `
</div> </div>
<div class="van-cell van-field"> <div class="van-cell van-field">
<div class="van-cell__title van-field__label"> <div class="van-cell__title van-field__label">
<label id="van-field-label" <label id="van-field-label">
for="van-field-input"
>
Slider Slider
</label> </label>
</div> </div>

View File

@ -583,7 +583,7 @@ export default defineComponent({
return ( return (
<label <label
id={`${id}-label`} id={`${id}-label`}
for={getInputId()} for={slots.input ? undefined : getInputId()}
onClick={(event: MouseEvent) => { onClick={(event: MouseEvent) => {
// https://github.com/youzan/vant/issues/11831 // https://github.com/youzan/vant/issues/11831
preventDefault(event); preventDefault(event);

View File

@ -533,3 +533,18 @@ test('should render label correctly when dynamically set empty label', async ()
await wrapper.setProps({ label: '' }); await wrapper.setProps({ label: '' });
expect(wrapper.find('.van-field__label').exists()).toBeFalsy(); expect(wrapper.find('.van-field__label').exists()).toBeFalsy();
}); });
test("should not be set label's for attribute when using input slot", async () => {
const wrapper = mount(Field, {
props: {
label: 'abc',
},
slots: {
input: '',
},
});
expect(
wrapper.find('.van-field__label label').attributes('for')
).toBeUndefined();
});

View File

@ -208,7 +208,6 @@ exports[`should render demo and match snapshot 1`] = `
> >
<!--[--> <!--[-->
<label id="van-field-label" <label id="van-field-label"
for="van-field-input"
style style
> >
Switch Switch
@ -238,7 +237,6 @@ exports[`should render demo and match snapshot 1`] = `
> >
<!--[--> <!--[-->
<label id="van-field-label" <label id="van-field-label"
for="van-field-input"
style style
> >
Checkbox Checkbox
@ -275,7 +273,6 @@ exports[`should render demo and match snapshot 1`] = `
> >
<!--[--> <!--[-->
<label id="van-field-label" <label id="van-field-label"
for="van-field-input"
style style
> >
Checkbox Group Checkbox Group
@ -339,7 +336,6 @@ exports[`should render demo and match snapshot 1`] = `
> >
<!--[--> <!--[-->
<label id="van-field-label" <label id="van-field-label"
for="van-field-input"
style style
> >
Radio Radio
@ -405,7 +401,6 @@ exports[`should render demo and match snapshot 1`] = `
> >
<!--[--> <!--[-->
<label id="van-field-label" <label id="van-field-label"
for="van-field-input"
style style
> >
Stepper Stepper
@ -451,7 +446,6 @@ exports[`should render demo and match snapshot 1`] = `
> >
<!--[--> <!--[-->
<label id="van-field-label" <label id="van-field-label"
for="van-field-input"
style style
> >
Rate Rate
@ -550,7 +544,6 @@ exports[`should render demo and match snapshot 1`] = `
> >
<!--[--> <!--[-->
<label id="van-field-label" <label id="van-field-label"
for="van-field-input"
style style
> >
Slider Slider
@ -592,7 +585,6 @@ exports[`should render demo and match snapshot 1`] = `
> >
<!--[--> <!--[-->
<label id="van-field-label" <label id="van-field-label"
for="van-field-input"
style style
> >
Uploader Uploader

View File

@ -160,9 +160,7 @@ exports[`should render demo and match snapshot 1`] = `
<div class="van-cell-group van-cell-group--inset"> <div class="van-cell-group van-cell-group--inset">
<div class="van-cell van-field"> <div class="van-cell van-field">
<div class="van-cell__title van-field__label"> <div class="van-cell__title van-field__label">
<label id="van-field-label" <label id="van-field-label">
for="van-field-input"
>
Switch Switch
</label> </label>
</div> </div>
@ -183,9 +181,7 @@ exports[`should render demo and match snapshot 1`] = `
</div> </div>
<div class="van-cell van-field"> <div class="van-cell van-field">
<div class="van-cell__title van-field__label"> <div class="van-cell__title van-field__label">
<label id="van-field-label" <label id="van-field-label">
for="van-field-input"
>
Checkbox Checkbox
</label> </label>
</div> </div>
@ -208,9 +204,7 @@ exports[`should render demo and match snapshot 1`] = `
</div> </div>
<div class="van-cell van-field"> <div class="van-cell van-field">
<div class="van-cell__title van-field__label"> <div class="van-cell__title van-field__label">
<label id="van-field-label" <label id="van-field-label">
for="van-field-input"
>
Checkbox Group Checkbox Group
</label> </label>
</div> </div>
@ -251,9 +245,7 @@ exports[`should render demo and match snapshot 1`] = `
</div> </div>
<div class="van-cell van-field"> <div class="van-cell van-field">
<div class="van-cell__title van-field__label"> <div class="van-cell__title van-field__label">
<label id="van-field-label" <label id="van-field-label">
for="van-field-input"
>
Radio Radio
</label> </label>
</div> </div>
@ -296,9 +288,7 @@ exports[`should render demo and match snapshot 1`] = `
</div> </div>
<div class="van-cell van-field"> <div class="van-cell van-field">
<div class="van-cell__title van-field__label"> <div class="van-cell__title van-field__label">
<label id="van-field-label" <label id="van-field-label">
for="van-field-input"
>
Stepper Stepper
</label> </label>
</div> </div>
@ -332,9 +322,7 @@ exports[`should render demo and match snapshot 1`] = `
</div> </div>
<div class="van-cell van-field"> <div class="van-cell van-field">
<div class="van-cell__title van-field__label"> <div class="van-cell__title van-field__label">
<label id="van-field-label" <label id="van-field-label">
for="van-field-input"
>
Rate Rate
</label> </label>
</div> </div>
@ -404,9 +392,7 @@ exports[`should render demo and match snapshot 1`] = `
</div> </div>
<div class="van-cell van-field"> <div class="van-cell van-field">
<div class="van-cell__title van-field__label"> <div class="van-cell__title van-field__label">
<label id="van-field-label" <label id="van-field-label">
for="van-field-input"
>
Slider Slider
</label> </label>
</div> </div>
@ -436,9 +422,7 @@ exports[`should render demo and match snapshot 1`] = `
</div> </div>
<div class="van-cell van-field"> <div class="van-cell van-field">
<div class="van-cell__title van-field__label"> <div class="van-cell__title van-field__label">
<label id="van-field-label" <label id="van-field-label">
for="van-field-input"
>
Uploader Uploader
</label> </label>
</div> </div>