You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 lines
974 B

  1. import { Directive, Input } from '@angular/core';
  2. import {
  3. AbstractControl,
  4. NG_VALIDATORS,
  5. ValidationErrors,
  6. Validator,
  7. } from '@angular/forms';
  8. @Directive({
  9. selector: '[appDecimalValidator]',
  10. providers: [
  11. {
  12. provide: NG_VALIDATORS,
  13. useExisting: DecimalValidatorDirective,
  14. multi: true,
  15. },
  16. ],
  17. })
  18. export class DecimalValidatorDirective implements Validator {
  19. @Input() digitLength!: number;
  20. @Input() scaleLength!: number;
  21. validate(control: AbstractControl): ValidationErrors | null {
  22. if (
  23. control.value === undefined ||
  24. control.value === null ||
  25. control.value === ''
  26. ) {
  27. return null;
  28. }
  29. const regular = new RegExp(
  30. `^\\d{1,${this.digitLength}}(\\.\\d{0,${this.scaleLength}})?$`
  31. );
  32. return regular.test(control.value)
  33. ? null
  34. : {
  35. decimal: {
  36. digitLength: this.digitLength,
  37. scaleLength: this.scaleLength,
  38. },
  39. };
  40. }
  41. }