ngx-age-validator
TypeScript icon, indicating that this package has built-in type declarations

0.1.0 • Public • Published

angular-material-extensions's logo

ngx-age-validator - Angular custom validator to validate a given age using momentjs

npm version demo docs: typedoc Build Status Join the chat at https://gitter.im/ngx-age-validator/Lobby dependency Status devDependency Status npm Greenkeeper badge license

We assume the following example: minimum age: 18 years old - maximum age 40 years old

@angular-material-extensions/select-country demonstration

Built by and for developers ❤️

Do you have any question or suggestion ? Please do not hesitate to contact us! Alternatively, provide a PR | open an appropriate issue here

If you like this project, support angular-material-extensions by starring ⭐️ and sharing it 📢

Table of Contents

Demo

Library's validator

  • NgxAgeValidator used to validate the age for a given date

Dependencies

  • Angular developed and tested with 10.x

Installation

npm i -s ngx-age-validator

API

Errors

tooJung if the min argument > as the difference between the given date and today tooOld if the min argument < as the difference between the given date and today

Usage

Use the library with reactive forms

<mat-form-field appearance="outline">
      <mat-label>Choose a date</mat-label>
      <input matInput [matDatepicker]="picker" [formControl]="ageFormControl">
      <mat-datepicker-toggle matSuffix [for]="picker"></mat-datepicker-toggle>
      <mat-datepicker #picker></mat-datepicker>
      <mat-error>Error</mat-error>
      <mat-error *ngIf="ageFormControl.hasError('tooJung')">You are too jung!</mat-error>
      <mat-error *ngIf="ageFormControl.hasError('tooOld')">You are too old!</mat-error>
</mat-form-field>
import {Component, OnInit} from '@angular/core';
import {FormControl, ValidationErrors} from "@angular/forms";
import {NgxAgeValidator} from "ngx-age-validator";
 
@Component({
  selector: 'app-root',
  templateUrl: './app.component.html',
  styleUrls: ['./app.component.scss']
})
export class AppComponent implements OnInit {
 
  title = 'ngx-age-validator-demo';
 
  ageFormControl = new FormControl();
 
  ngOnInit(): void {
    this.ageFormControl = new FormControl(null, [NgxAgeValidator(18, 40)])
 
    this.ageFormControl.valueChanges.subscribe(() => {
 
      const controlErrors: ValidationErrors | null = this.ageFormControl.errors;
      if (controlErrors != null) {
        Object.keys(controlErrors).forEach(keyError => {
          console.log(' keyError: ' + keyError + ', err value: ', controlErrors[keyError]);
        });
      }
 
    })
  }
 
}
 

@angular-material-extensions/select-country demonstration

@angular-material-extensions/select-country demonstration

Run Demo App Locally

Build the library

$ npm run build:lib

Serve the demo app

$ npm start

Other Angular Libraries


Support

Built by and for developers ❤️ we will help you 👊


jetbrains logo

This project is supported by jetbrains with 1 ALL PRODUCTS PACK OS LICENSE incl. webstorm


License

Copyright (c) 2020 Anthony Nahas. Licensed under the MIT License (MIT)

Package Sidebar

Install

npm i ngx-age-validator

Weekly Downloads

9

Version

0.1.0

License

MIT

Unpacked Size

24.3 kB

Total Files

17

Last publish

Collaborators

  • anthonynahas