Skip to main content
Version: Next

Forms

Basic forms

Here is an example of a component with a basic form:

@Component({
tag: 'my-name',
styleUrl: 'my-name.css'
})
export class MyName {

@State() value: string;

handleSubmit(e) {
e.preventDefault()
console.log(this.value);
// send data to our backend
}

handleChange(event) {
this.value = event.target.value;
}

render() {
return (
<form onSubmit={(e) => this.handleSubmit(e)}>
<label>
Name:
<input type="text" value={this.value} onInput={(event) => this.handleChange(event)} />
</label>
<input type="submit" value="Submit" />
</form>
);
}
}

Let's go over what is happening here. First we bind the value of the input to a state variable, in this case this.value. We then set our state variable to the new value of the input with the handleChange method we have bound to onInput. onInput will fire every keystroke that the user types into the input.

Using form-associated custom elements

In addition to using a <form> element inside of a Stencil component, as shown in the above example, you can also use Stencil's support for building form-associated custom elements to create a Stencil component that integrates in a native-like way with a <form> tag around it. This allows you to build rich form experiences using Stencil components which leverage built-in form features like validation and accessibility.

As an example, translating the above example to be a form-associated component (instead of one which includes a <form> element in its JSX) would look like this:

@Component({
tag: 'my-name',
styleUrl: 'my-name.css',
formAssociated: true
})
export class MyName {
@State() value: string;
@AttachInternals() internals: ElementInternals;

handleChange(event) {
this.internals.setFormValue(event.target.value);
}

render() {
return (
<label>
Name:
<input
type="text"
value={this.value}
onInput={(event) => this.handleChange(event)}
/>
</label>
);
}
}

For more check out the docs for form-association in Stencil.

Advanced forms

Here is an example of a component with a more advanced form:

@Component({
tag: 'my-name',
styleUrl: 'my-name.css'
})
export class MyName {
selectedReceiverIds = [102, 103];
@State() value: string;
@State() selectValue: string;
@State() secondSelectValue: string;
@State() avOptions: any[] = [
{ 'id': 101, 'name': 'Mark' },
{ 'id': 102, 'name': 'Smith' }
];

handleSubmit(e) {
e.preventDefault();
console.log(this.value);
}

handleChange(event) {
this.value = event.target.value;

if (event.target.validity.typeMismatch) {
console.log('this element is not valid')
}
}

handleSelect(event) {
console.log(event.target.value);
this.selectValue = event.target.value;
}

handleSecondSelect(event) {
console.log(event.target.value);
this.secondSelectValue = event.target.value;
}

render() {
return (
<form onSubmit={(e) => this.handleSubmit(e)}>
<label>
Email:
<input type="email" value={this.value} onInput={(e) => this.handleChange(e)} />
</label>

<select onInput={(event) => this.handleSelect(event)}>
<option value="volvo" selected={this.selectValue === 'volvo'}>Volvo</option>
<option value="saab" selected={this.selectValue === 'saab'}>Saab</option>
<option value="mercedes" selected={this.selectValue === 'mercedes'}>Mercedes</option>
<option value="audi" selected={this.selectValue === 'audi'}>Audi</option>
</select>

<select onInput={(event) => this.handleSecondSelect(event)}>
{this.avOptions.map(recipient => (
<option value={recipient.id} selected={this.selectedReceiverIds.indexOf(recipient.id) !== -1}>{recipient.name}</option>
))}
</select>

<input type="submit" value="Submit" />
</form>
);
}
}

This form is a little more advanced in that it has two select inputs along with an email input. We also do validity checking of our email input in the handleChange method. We handle the select element in a very similar manner to how we handle text inputs.

For the validity checking, we are #usingtheplatform and are using the constraint validation api that is built right into the browser to check if the user is actually entering an email or not.