vue-a11y-input v0.3.0
vue-a11y-input
A component for text-like inputs. Accessible and versatile.
Installation
You can install the component using NPM or Yarn.
npm install vue-a11y-input --saveIf you use Yarn:
yarn add vue-a11y-inputOnce the component is installed you need to import wherever you want to use it.
import A11yInput from 'vue-a11y-input'Donβt forget to add it to the registered components (been there, done that):
components: {
A11yInput,
// ... all the other amazing components
}API
This is just a quick overview. For an in-depth guide how to use the component check the section Usage below.
Props
value: The value shown inside of the input.label: The label text of the input. Required.validation: A vuelidate-like object, must contain properties named$errorand$dirty. Required.description: Descriptive text giving a user more context on what form their input has to have. Optional.
Styles
The component exposes the following CSS classes for its parts:
| Classname | Element |
|---|---|
| v-a11y-input | Root |
| v-a11y-input__input | Text field |
| v-a11y-input__description | Descriptive text |
| v-a11y-input__feedback | Container to show feedback messages |
By default no styles will be attached to these classes.
Usage
This component was built to accept all text-like input formats. These are, for example, password, email or date.
Attributes you add when adding the component to your template are bound to the input element.
Say you want to add a password input to a form. If you add type="password" the component will take the type and apply it to the input element.
<a11y-input type="password" />vue-a11y-input is v-model compliant.
<a11y-input v-model="password" type="password" name="password" />Ths will result in the following input:
<input
id="6ac26f8f-930c-4dc4-a098-b00094b56906"
aria-invalid="false"
type="password"
name="password"
class="v-a11y-input__input"
/>πβ Note: You do not need to pass in a id. A unique ID for every instance of the component is automatically generated.
Label
Input elements must have a linked label to give the input an accessible name.
To do so, pass in the label prop when using the component.
<a11y-input
v-model="password"
type="password"
name="password"
label="Your password"
/>π Note: label is required.
Description
Sometimes it is useful to describe expected conditions. For example, a user has to enter a password that is at least eight characters long.
To add a description, pass in the prop named, you might have guessed it, description.
<a11y-input
v-model="password"
type="password"
name="password"
label="Your password"
description="Your password has to be at least eight characters long."
/>This will render the description in a p element which is linked to the input via the aria-describedby attribute.
Required inputs
In addition to binding the required attribute on the input element the component exposes a slot inside of its label element to add a visual clue that the user has to fill in data.
Bear in mind that the popular * might not be enough to indicate a required field. For further reading I recommend the article Required Fields on a11y-101.com
<a11y-input
v-model="password"
type="password"
name="password"
label="Your password"
description="Your password has to be at least eight characters long."
>
<template v-slot:label-text>
<span class="aside">required</span>
</template>
</a11y-input>π Note: This example uses the named slot syntax introduced in Vue 2.6. Take a look in the docs for usage examples and how to use named slots in versions prior to 2.6.
π Note: You can add any text you want. If you mark optional fields instead of required ones, this is also possible.
Validation
No input without validation, right?
You will have to take care of this yourself, though. The component can and should not know what value is expected inside of it.
Nonetheless, I tried to make it as easy as possible to use the component along existing solutions like Vuelidate.
In fact, if you are already using Vuelidate, you are good to go.
vue-a11y-input expects a vuelidate-like validation object. Namely the properties $error and $dirty.
For our password example the Vuelidate config might look something like this:
import { required, minLength } from 'vuelidate/lib/validators'
export default {
// [β¦]
// Component context omitted for brevity
// [β¦]
validations: {
password: {
required,
minLength: minLength(8)
}
}
}You can use $v.password as the prop for the input component without the need to change anything.
<a11y-input
v-model="password"
:required="true"
:validation="$v.password"
type="password"
name="password"
label="Your password"
description="Your password has to be at least eight characters long."
>
<template v-slot:label-text>
<span class="aside">required</span>
</template>
</a11y-input>aria-invalid is set based on validation.$error, to let screen readers know if the entered value is correct.
This attribute could also be used to add styles based on the validated state.
.a11y-input__input[aria-invalid='true'] {
border-color: red;
}
/** [data-untouched is set on the input while `validation.$dirty is `false``] and can be used to only apply validated styles to touched and validated inputs */
.a11y-input__input[aria-invalid='false']:not([data-untouched]) {
border-color: green;
}Feedback Messages
Relying on styling is not enough to convey errors to users. vue-a11y-input exposes a feedback slot to render detailed feedback for the users.
<a11y-input
v-model="password"
:required="true"
:validation="$v.password"
type="password"
name="password"
label="Your password"
description="Your password has to be at least eight characters long."
>
<template v-slot:required-text>
<span class="aside">required</span>
</template>
<template v-slot:feedback>
<p v-if="!$v.password.required">
Your password is required.
</p>
</template>
</a11y-input>If validation.$error equals true the ID of the feedback container will be added to aria-describedby and as thus read by screen readers.
Feedback & Contributions
Contributions are always welcome.
If you found a bug or want to request a feature, please open an issue.
If you wrote an enhancement or fixed a bug, open a Pull Request. Please follow the Fork & Pull Request workflow, as explained here.
Pull Requests should contain unit tests. However, if you are not sure how to write these tests, please do not hesitate to open a request. We can figure out how to add necessary tests together.
Thanks. π
Development
If you want to improve the component, follow these steps.
First, you need to install the dependencies:
yarn installCompiles and hot-reloads for development
yarn run serveCompiles and minifies for production
yarn run buildπ Note: This builds the bundles that are published to NPM. If you want to build the demo implementation in ./demo use yarn run build:demo
Run your tests
yarn run testLints and fixes files
yarn run lintRun your unit tests
yarn run test:unit