Skip to content

Instantly share code, notes, and snippets.

@buildmotion
Created August 28, 2021 19:54
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 buildmotion/81ad27a83da9b29c8acd10a9f2571ae8 to your computer and use it in GitHub Desktop.
Save buildmotion/81ad27a83da9b29c8acd10a9f2571ae8 to your computer and use it in GitHub Desktop.
import { CompositeRule } from './CompositeRule';
import { IsNotNullOrUndefined } from './IsNotNullOrUndefined';
import { IsTrue } from './IsTrue';
/**
* Use this rule to determine if the string value matches the specified
* regular expression.
*/
export class StringIsRegExMatch extends CompositeRule {
/**
* The constructor for the [IsNotNullOrUndefined] rule.
* @param name The name of the rule.
* @param message The message to display when the rule is violated.
* @param target The target that the rules are evaluated against.
* @param isDisplayable: Indicates if the rule violation is displayable. Default value is [false].
*/
constructor(name: string, message: string, private target: string, private expression: RegExp, isDisplayable: boolean) {
super(name, message, isDisplayable);
this.configureRules();
}
/**
* Use to configure the rules to be evaluated.
*/
private configureRules() {
const showRuleViolations = true;
const doNotShowRuleViolation = false;
// determine if the target is a valid object;
this.rules.push(
new IsNotNullOrUndefined('StringIsNotNullOrUndefined', 'The target value is null or undefined.', this.target, doNotShowRuleViolation)
);
if (this.target) {
this.rules.push(
new IsTrue('StringIsRegExpMatch', 'The target value is not a match.', this.expression.test(this.target), doNotShowRuleViolation)
);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment