https://github.com/lemoncode/fonk-nif-validator
NIF validator for https://github.com/Lemoncode/fonk
https://github.com/lemoncode/fonk-nif-validator
Last synced: 11 months ago
JSON representation
NIF validator for https://github.com/Lemoncode/fonk
- Host: GitHub
- URL: https://github.com/lemoncode/fonk-nif-validator
- Owner: Lemoncode
- License: mit
- Created: 2019-09-11T14:50:20.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2020-01-21T17:26:50.000Z (over 6 years ago)
- Last Synced: 2025-05-08T01:43:58.359Z (about 1 year ago)
- Language: TypeScript
- Homepage:
- Size: 27.3 KB
- Stars: 0
- Watchers: 4
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# fonk-nif-validator
[](https://circleci.com/gh/Lemoncode/fonk-nif-validator/tree/master)
[](https://www.npmjs.com/package/@lemoncode/fonk-nif-validator)
[](https://bundlephobia.com/result?p=@lemoncode/fonk-nif-validator)
This is a [fonk](https://github.com/Lemoncode/fonk) microlibrary that brings validation capabilities to:
- Validate if a field of a form is a valid NIF (DNI, NIE and/or CIF)
How to install it:
```bash
npm install @lemoncode/fonk-nif-validator --save
```
How to add it to an existing form validation schema:
We have the following form model:
```
const myFormValues = {
providerCIF: 'P9316179B',
clientDNI: '31016922L'
}
```
We can add a nif validation to the myFormValues
```javascript
import { nif } from '@lemoncode/fonk-nif-validator';
const validationSchema = {
field: {
providerCIF: [
{
validator: nif.validator,
customArgs: { validTypes: [nif.types.CIF] },
},
],
clientDNI: [
{
validator: nif.validator,
customArgs: { validTypes: [nif.types.DNI, nif.types.NIE] },
},
],
},
};
```
You can customize the error message displayed in two ways:
- Globally, replace the default error message in all validationSchemas (e.g. porting to spanish):
```javascript
import { nif } from '@lemoncode/fonk-nif-validator';
nif.setErrorMessage('El campo debe de ser un DNI válido');
```
- Locally just override the error message for this validationSchema:
```javascript
import { nif } from '@lemoncode/fonk-nif-validator';
const validationSchema = {
field: {
providerCIF: [
{
validator: nif.validator,
customArgs: { validTypes: [nif.types.CIF] },
message: 'Error message only updated for the validation schema',
},
],
clientDNI: [
{
validator: nif.validator,
customArgs: { validTypes: [nif.types.DNI, nif.types.NIE] },
message: 'Error message only updated for the validation schema',
},
],
},
};
```
Please, refer to [fonk](https://github.com/Lemoncode/fonk) to know more.
## License
[MIT](./LICENSE)
# About Basefactor + Lemoncode
We are an innovating team of Javascript experts, passionate about turning your ideas into robust products.
[Basefactor, consultancy by Lemoncode](http://www.basefactor.com) provides consultancy and coaching services.
[Lemoncode](http://lemoncode.net/services/en/#en-home) provides training services.
For the LATAM/Spanish audience we are running an Online Front End Master degree, more info: http://lemoncode.net/master-frontend