Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/degjs/formvalidation-email
An email rule for the DEGJS formValidation module.
https://github.com/degjs/formvalidation-email
forms
Last synced: about 1 month ago
JSON representation
An email rule for the DEGJS formValidation module.
- Host: GitHub
- URL: https://github.com/degjs/formvalidation-email
- Owner: DEGJS
- Created: 2016-12-14T03:53:23.000Z (about 8 years ago)
- Default Branch: main
- Last Pushed: 2023-01-05T23:35:08.000Z (almost 2 years ago)
- Last Synced: 2024-04-14T22:12:27.188Z (9 months ago)
- Topics: forms
- Language: JavaScript
- Size: 524 KB
- Stars: 0
- Watchers: 11
- Forks: 0
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# formValidation-email
![Run Tests](https://github.com/DEGJS/formValidation-email/workflows/Run%20Tests/badge.svg)An email rule module for the DEGJS [formValidation](https://github.com/DEGJS/formValidation) module.
## Install
formValidation-email is an ES6 module. Consequently, you'll need an ES6 transpiler ([Babel](https://babeljs.io) is a nice one) as part of your Javascript workflow.If you're already using NPM for your project, you can install formValidation-email with the following command:
```
$ npm install @degjs/form-validation-email
```## Usage
After importing, formValidation rule modules can be instantiated by passing an array of names into a formValidation options object:```js
import formValidation from "@degjs/form-validation";/* Import the Pattern rule module */
import email from "@degjs/form-validation-email";const validationOptions = {
rules: [
]
};/* Instantiate the formValidation module on an element */
const formElement = document.querySelector('.form');
const validationInst = formValidation(formElement, validationOptions);
```Optionally, default rule settings can be overridden by instantiating the rule as a function and passing options as an object:
```js
const validationOptions = {
rules: [
email({
message: 'This message will override the default rule message.',
events: [
'focusout',
'submit'
]
})
]
};
```formValidation-email builds upon the HTML5 `email` validation pattern. Therefore, after instantiating the rule module, a field in the validation instance will be tested by this rule simply by setting the field input's type attribute to `email`.
This rule module contains its own default validation message. However, this message can be overridden by adding a data attribute at the field or form level (in that order of importance).
Sample Markup:
```html
Submit
```
## Options
#### options.message
Type: `String`
Default: `Please enter a valid email address.`
The default message displayed when a field fails this rule's validation test.#### options.messageAttr
Type: `String`
Default: `data-validation-pattern-message`
The data attribute formValidation will check when determining [message hierarchy](https://github.com/DEGJS/formValidation#configuring-error-messages)#### options.events
Type: `Array`
Default: `['focusout','submit']`
An array of DOM events that will cause the rule to run validation on a field (or the entire form, when using `submit`). NOTE: `focusout` should be used in place of `blur` due to event bubbling limitations.#### options.pattern
Type: `RegEx literal`
Default: ``/^[a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$``
The RegEx pattern the rule will use to determine a valid email address.For more detailed usage instructions, see the [formValidation Usage](https://github.com/DEGJS/formValidation#usage) documentation.