fix form submission

pull/706/head
Cory LaViska 2022-03-11 11:28:34 -05:00
rodzic e8174f7462
commit c2910d742a
3 zmienionych plików z 98 dodań i 5 usunięć

Wyświetl plik

@ -6,6 +6,10 @@ Components with the <sl-badge variant="warning" pill>Experimental</sl-badge> bad
_During the beta period, these restrictions may be relaxed in the event of a mission-critical bug._ 🐛
## Next
- Fixed a form submission bug
## 2.0.0-beta.71
- 🚨 BREAKING: refactored exported parts to ensure composed components and their parts can be targeted via CSS

Wyświetl plik

@ -98,4 +98,92 @@ describe('<sl-button>', () => {
expect(el.shadowRoot!.querySelector('button')).not.to.exist;
});
});
describe('when submitting a form', () => {
it('should submit when the button is inside the form', async () => {
const form = await fixture<HTMLFormElement>(html`
<form action="" method="POST">
<sl-button type="submit">Submit</sl-button>
</form>
`);
const button = form.querySelector<SlButton>('sl-button')!;
const handleSubmit = sinon.spy((event: SubmitEvent) => event.preventDefault());
form.addEventListener('submit', handleSubmit);
button.click();
expect(handleSubmit).to.have.been.calledOnce;
});
it('should submit when the button is outside the form and has a form attribute', async () => {
const el = await fixture(html`
<div>
<form id="a" action="" method="POST"></form>
<sl-button type="submit" form="a">Submit</sl-button>
</div>
`);
const form = el.querySelector<HTMLFormElement>('form')!;
const button = el.querySelector<SlButton>('sl-button')!;
const handleSubmit = sinon.spy((event: SubmitEvent) => event.preventDefault());
console.log(form, button);
form.addEventListener('submit', handleSubmit);
button.click();
expect(handleSubmit).to.have.been.calledOnce;
});
it('should override form attributes when formaction, formmethod, formnovalidate, and formtarget are used inside a form', async () => {
const form = await fixture(html`
<form id="a" action="foo" method="POST" target="_self">
<sl-button type="submit" form="a" formaction="bar" formmethod="get" formtarget="_blank" formnovalidate>
Submit
</sl-button>
</form>
`);
const button = form.querySelector<SlButton>('sl-button')!;
const handleSubmit = sinon.spy((event: SubmitEvent) => {
submitter = event.submitter as HTMLButtonElement;
event.preventDefault();
});
let submitter!: HTMLButtonElement;
form.addEventListener('submit', handleSubmit);
button.click();
expect(handleSubmit).to.have.been.calledOnce;
expect(submitter.formAction.endsWith('/bar')).to.be.true;
expect(submitter.formMethod).to.equal('get');
expect(submitter.formTarget).to.equal('_blank');
expect(submitter.formNoValidate).to.be.true;
});
it('should override form attributes when formaction, formmethod, formnovalidate, and formtarget are used outside a form', async () => {
const el = await fixture(html`
<div>
<form id="a" action="foo" method="POST" target="_self"></form>
<sl-button type="submit" form="a" formaction="bar" formmethod="get" formtarget="_blank" formnovalidate>
Submit
</sl-button>
</div>
`);
const form = el.querySelector<HTMLFormElement>('form')!;
const button = el.querySelector<SlButton>('sl-button')!;
const handleSubmit = sinon.spy((event: SubmitEvent) => {
submitter = event.submitter as HTMLButtonElement;
event.preventDefault();
});
let submitter!: HTMLButtonElement;
form.addEventListener('submit', handleSubmit);
button.click();
expect(handleSubmit).to.have.been.calledOnce;
expect(submitter.formAction.endsWith('/bar')).to.be.true;
expect(submitter.formMethod).to.equal('get');
expect(submitter.formTarget).to.equal('_blank');
expect(submitter.formNoValidate).to.be.true;
});
});
});

Wyświetl plik

@ -96,12 +96,13 @@ export class FormSubmitController implements ReactiveController {
button.style.overflow = 'hidden';
button.style.whiteSpace = 'nowrap';
// Pass form override properties through to the temporary button
// Pass form attributes through to the temporary button
if (submitter) {
button.formAction = submitter.formAction;
button.formMethod = submitter.formMethod;
button.formNoValidate = submitter.formNoValidate;
button.formTarget = submitter.formTarget;
['formaction', 'formmethod', 'formnovalidate', 'formtarget'].forEach(attr => {
if (submitter.hasAttribute(attr)) {
button.setAttribute(attr, submitter.getAttribute(attr)!);
}
});
}
this.form.append(button);