@justeattakeaway/pie-text-input v0.26.2
@justeattakeaway/pie-text-input
Source Code | Design Documentation | NPM
@justeattakeaway/pie-text-input is a Web Component built using the Lit library. It offers a simple and accessible interactive text input component for web applications.
Table of Contents
Installation
To install any of our web components in your application, we would suggest following the getting started guide to set up your project.
Ideally, you should install the component using the @justeattakeaway/pie-webc package, which includes all of the components. Or you can install the individual component package.
Documentation
Properties
| Prop | Options | Description | Default | 
|---|---|---|---|
| assistiveText | string | Allows assistive text to be displayed below the input element. Must be provided if using a non-default status. | undefined | 
| autoFocus | true,false | If true, the input will be focused on the first render. Only one element should have autofocus. | false | 
| autocomplete | string | Allows the user to enable or disable autocomplete functionality. See MDN for more. | undefined | 
| defaultValue | string | During a form reset, the default value will replace the current value. This prop is not normally needed. | undefined | 
| disabled | true,false | When true, the user cannot edit or interact with the control. | false | 
| inputmode | "none","text","tel","url","email","numeric","decimal","search" | Hint to browsers for the type of virtual keyboard to use. See MDN. | undefined | 
| max | number | The maximum value (only for type number). If exceeded, the input is invalid. | undefined | 
| maxlength | number | Maximum number of characters allowed (for text, url, tel, email, and password types). | undefined | 
| min | number | The minimum value (only for type number). If below this, the input is invalid. | undefined | 
| minlength | number | Minimum number of characters required (for text, url, tel, email, and password types). | undefined | 
| name | string | Name of the input (used in form key/value pairs). | undefined | 
| pattern | string | Regular expression that the input value should match. | undefined | 
| placeholder | string | Placeholder text when input is empty (for text, url, tel, email, and password types). | undefined | 
| readonly | true,false | When true, the input is not editable (but not disabled). See MDN. | false | 
| required | true,false | If true, input must have a value to pass validation. Does not prevent form submission by itself. | false | 
| size | "small","medium","large" | The size of the input field. | "medium" | 
| status | "default","error","success" | The status of the input. If not default,assistiveTextmust be provided for accessibility. | "default" | 
| step | number | Amount by which value changes when using up/down arrows (only for type number). | undefined | 
| type | "text","number","password","url","email","tel" | The type of HTML input to render. | "text" | 
| value | string | The value of the input (used in form key/value pairs). | "" | 
Slots
| Slot | Description | 
|---|---|
| leadingIcon | An icon to display at the start of the input.Do not use at the same time as leadingText. | 
| leadingText | Short text to display at the start of the input.Wrap the text in a <span>.Do not use at the same time asleadingIcon. | 
| trailingIcon | An icon to display at the end of the input.Do not use at the same time as trailingText. | 
| trailingText | Short text to display at the end of the input.Wrap the text in a <span>.Do not use at the same time astrailingIcon. | 
CSS Variables
This component does not expose any CSS variables for style overrides.
Events
| Event | Description | 
|---|---|
| change | Fires when the input loses focus after the value has been changed. | 
| input | Fires when the input value is changed. | 
Forms Usage
It is essential that when using the text input inside of a form, you provide a name attribute. HTML forms create key/value pairs for input data based on the name attribute, which is crucial for native form submission.
Validation
The text input component utilizes the constraint validation API to provide a queryable validity state for consumers. This means that the component's validity can be checked via a validity getter.
Example:
const textInput = document.querySelector('pie-text-input');
console.log(textInput.validity.valid);This getter can be useful for reducing the amount of validation code in your application. For example, if you want to create a text input that should be at least 2 characters long, at most 5 characters long, and requires a value, you can set the minlength, maxlength, and required properties on the component. You can then check the validity of the input in your application code:
<pie-text-input
  id="my-input"
  name="my-input"
  minlength="2"
  maxlength="5"
  required></pie-text-input>const textInput = document.querySelector('pie-text-input');
const isValid = textInput.validity.valid;
// We could use this to drive the status and assistiveText properties on our input (this would likely be inside a submit event handler in a real application)
if (!isValid) {
  textInput.status = 'error';
  textInput.assistiveText = 'Please enter a value between 2 and 5 characters long';
}These concepts work just as well inside a Vue or React application. Below is a similar implementation for validating a number input in a React application.
Using the constraint validation API we provide is completely optional. Feel free to use whatever form of validation best suits your application's needs. The validity state of an input will not interfere with the form submission or page behaviour.
// Very simplified example
const [favouriteNumber, setFavouriteNumber] = useState('');
const [favouriteNumberValidationMessage, setFavouriteNumberValidationMessage] = useState('');
const favouriteNumberRef = useRef<HTMLInputElement>(null);
const handleFavouriteNumberInput = (event: InputEvent) => {
    setFavouriteNumber((event.target as HTMLInputElement).value);
};
const handleSubmit = (event: React.FormEvent<HTMLFormElement>) => {
    event.preventDefault();
    let validationMessage = '';
    const inputElement = favouriteNumberRef.current;
    if (inputElement) {
        if (inputElement.validity.rangeUnderflow) {
            validationMessage = 'The favourite number is too low. Please pick a number between -5 and 200.';
        } else if (inputElement.validity.rangeOverflow) {
            validationMessage = 'The favourite number is too high. Please pick a number between -5 and 200.';
        }
    }
    setFavouriteNumberValidationMessage(validationMessage);
};// Very simplified example
<form id="testForm" onSubmit={handleSubmit} novalidate>
  <PieFormLabel id="favouriteNumberLabel" for="favouriteNumber">
      Favourite Number:
  </PieFormLabel>
  <PieTextInput
      aria-labelledby="favouriteNumberLabel"
      id="favouriteNumber"
      data-test-id="favouriteNumber"
      name="favouriteNumber"
      min={-5}
      max={200}
      value={favouriteNumber}
      onInput={handleFavouriteNumberInput as any}
      type="number"
      ref={favouriteNumberRef}
      assistiveText={favouriteNumberValidationMessage}
      status={favouriteNumberValidationMessage ? 'error' : 'success'}>
      <IconNumberSymbol slot="leadingIcon"></IconNumberSymbol>
  </PieTextInput>
  <PieButton data-test-id="submit-btn" type="submit">Submit</PieButton>
</form>Displaying error messages
As mentioned earlier, we suggest consumers disable native HTML validation using the novalidate attribute on the form element. This will prevent the browser from displaying its own validation messages, allowing you to control the validation experience for your users.
To display validation messages, you can use the assistiveText and status properties on the text input component. The assistiveText property is used to display a message below the input, and the status property is used to set the visual state of the input. The status property can be set to error or success, or you can omit providing a status to display the assistive text in a neutral state.
<pie-text-input
  name="firstName"
  assistiveText="Please provide a first name"
  status="error">
</pie-text-input>Displaying success messages works in the same way, but with the status property set to success.
<pie-text-input
  name="firstName"
  assistiveText="First name provided"
  status="success">
</pie-text-input>Labelling
Please use the form label component for adding a label to the text input. Similar to native HTML, the label should be a sibling of the input component and reference the input's id attribute using the for attribute.
The usage of aria-labelledby is very important so that screen readers will announce the label when the input is focused. This is especially important for users who rely on screen readers to navigate the web.
<pie-form-label id="first-name-label" for="first-name">First name:</pie-form-label>
<pie-text-input aria-labelledby="first-name-label" id="first-name" name="first-name"></pie-text-input>If you do not need to use a visual label, you must still provide an aria-label attribute to the text input. This is important for screen reader users as it will announce the purpose of the input when it is focused, even if a visual label is not used.
<pie-text-input aria-label="First name" name="first-name"></pie-text-input>Usage Examples
When using icons, we recommend using @justeattakeaway/pie-icons-webc to ensure consistency with the rest of the design system.
For HTML:
// import as module into a js file e.g. main.js
import '@justeattakeaway/pie-webc/components/card.js';
import '@justeattakeaway/pie-icons-webc/dist/IconPlaceholder.js';<pie-text-input
    autocomplete="on"
    autoFocus
    inputmode="text"
    maxlength="8"
    minlength="4"
    name="myinput"
    pattern="[a-z]{4,8}"
    placeholder="Please enter a value"
    readonly
    type="text"
    value="">
  <icon-placeholder slot="leadingIcon"></icon-placeholder>
</pie-text-input>
<script type="module" src="/main.js"></script>For Native JS Applications, Vue, Angular, Svelte etc.:
// Vue templates (using Nuxt 3)
import '@justeattakeaway/pie-webc/components/text-input.js';
import '@justeattakeaway/pie-icons-webc/dist/IconPlaceholder.js';
<pie-text-input
    autocomplete="on"
    autoFocus
    inputmode="text"
    maxlength="8"
    minlength="4"
    name="myinput"
    pattern="[a-z]{4,8}"
    placeholder="Please enter a value"
    readonly
    type="text"
    value="">
  <icon-placeholder slot="leadingIcon"></icon-placeholder>
</pie-text-input>For React Applications:
import { PieTextInput } from '@justeattakeaway/pie-webc/react/text-input.js';
import { IconPlaceholder } from '@justeattakeaway/pie-icons-webc/dist/react/IconPlaceholder.js';
<PieTextInput
    autocomplete="on"
    autoFocus
    inputmode="text"
    maxlength="8"
    minlength="4"
    name="myinput"
    pattern="[a-z]{4,8}"
    placeholder="Please enter a value"
    readonly
    type="text"
    value="">
  <IconPlaceholder slot="leadingIcon"></IconPlaceholder>
</PieTextInput>Questions and Support
If you work at Just Eat Takeaway.com, please contact us on #help-designsystem. Otherwise, please raise an issue on Github.
Contributing
Check out our contributing guide for more information on local development and how to run specific component tests.
5 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
8 months ago
8 months ago
9 months ago
10 months ago
8 months ago
7 months ago
7 months ago
7 months ago
9 months ago
10 months ago
8 months ago
8 months ago
8 months ago
7 months ago
7 months ago
7 months ago
7 months ago
6 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
10 months ago
8 months ago
5 months ago
7 months ago
5 months ago
6 months ago
6 months ago
8 months ago
7 months ago
7 months ago
7 months ago
7 months ago
6 months ago
5 months ago
7 months ago
7 months ago
7 months ago
5 months ago
12 months ago
5 months ago
12 months ago
7 months ago
5 months ago
5 months ago
5 months ago
5 months ago
11 months ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago