How to use the ngx-validators.PhoneValidators.isPhoneNumber function in ngx-validators

To help you get started, we’ve selected a few ngx-validators examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github Nightapes / ngx-validators / examples / src / app / reactive-forms / phone-validator / phone-validator.component.ts View on Github external
templateUrl: './phone-validator.component.html',
  styleUrls: ['./phone-validator.component.css']
})
export class ReactiveFormPhoneValidatorComponent implements OnInit {
  form: FormGroup;
  countryCode: FormControl = new FormControl('', Validators.compose([
    Validators.required,
    PhoneValidators.isValidRegionCode
  ]));
  possiblePhone: FormControl = new FormControl('', Validators.compose([
    Validators.required,
    PhoneValidators.isPossibleNumberWithReason('ZZ')
  ]));
  phone: FormControl = new FormControl('', Validators.compose([
    Validators.required,
    PhoneValidators.isPhoneNumber('ZZ')
  ]));


  constructor(protected _fb: FormBuilder) { }

  ngOnInit() {

    this.form = this._fb.group({
      'possiblePhone': this.possiblePhone,
      'phone': this.phone,
      'countryCode': this.countryCode
    });

    this.countryCode.valueChanges.subscribe(data => {
      this.phone.setValidators(
        Validators.compose([
github Nightapes / ngx-validators / examples / src / app / reactive-forms / phone-validator / phone-validator.component.ts View on Github external
this.countryCode.valueChanges.subscribe(data => {
      this.phone.setValidators(
        Validators.compose([
          Validators.required,
          PhoneValidators.isPhoneNumber(data)
        ])
      );
      this.possiblePhone.setValidators(
        Validators.compose([
          Validators.required,
          PhoneValidators.isPossibleNumberWithReason(data)
        ])
      );
      this.phone.updateValueAndValidity();
    });