Skip to content

Instantly share code, notes, and snippets.

@EliCDavis
Created July 23, 2017 18:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save EliCDavis/aa3cf02124ae36ed47649428de854f98 to your computer and use it in GitHub Desktop.
Save EliCDavis/aa3cf02124ae36ed47649428de854f98 to your computer and use it in GitHub Desktop.
import { FormBuilder, FormGroup, Validators } from '@angular/forms';
import { Component, OnInit } from '@angular/core';
import { ConditionallyValidateService } from 'ng-conditionally-validate';
@Component({
selector: 'app-example-three',
templateUrl: './example-three.component.html',
styleUrls: ['./example-three.component.css']
})
export class ExampleThreeComponent {
form: FormGroup;
constructor(
private fb: FormBuilder,
private cv: ConditionallyValidateService
) {
this.form = fb.group({
typeOfAccount: ['normal'],
password: ['', [Validators.minLength(6), Validators.required]]
});
const passwordRule = cv.validate(this.form, 'password');
passwordRule.using(Validators.minLength(12))
.when('typeOfAccount')
.is('admin');
passwordRule.using(Validators.minLength(18))
.when('typeOfAccount')
.is('super');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment