Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
An angular plugin to validate forms using annotation on model.
Nabil MANSOURI
npm i --save angulator
See demo folder! Or run npm test
import {
AngulatorModule
} from "angulator";
@NgModule({
declarations: [
],
imports: [
AngulatorModule
],
bootstrap: []
})
export class AppModule {
}
import {
MinLength, MaxLength, EnabledIf, MaxLengthIf, DisabledIf, Capitalize,
RequiredIf, Required, RequiredTrue, Length, IsEqual, Min, Max,
MinDate, MaxDate, MinArray, MaxArray, Range, Pattern,
IsIP, Digits, DateIso, IsEmail, IsDate, IsUrl, IsNumber,
DateGt, DateLt, Phone, Unaccent, ReadOnly, DateLimit
} from "angulator";
export class User {
@MinLength(5) @MaxLength(10) name: string;
hasBrother: boolean;
age: number;
sexe: string;
happy: string;
colors = [];
@RequiredIf("hasBrother", true) brother: string;
//OTHER
@Required() required: string;
@RequiredTrue() requiredTrue: boolean;
requiredDep: boolean;
@RequiredIf("requiredDep") requiredIf: string;
enabledDep: boolean;
@EnabledIf("enabledDep") enabledIf: string;
disabledDep: boolean;
@DisabledIf("disabledDep") disabledIf: string;
maxLengthDep: string;
@MaxLengthIf("maxLengthDep", 30, " ") maxLengthIf: string;
@Unaccent() unaccent: string;
@Capitalize() captitalize: string;
@ReadOnly() readonly: string;
@MinLength(5) minlength: string;
@MaxLength(5) maxlength: string;
@Length(5) length: string;
@IsEqual(5) isequal: number;
@Min(5) min: number;
@Max(5) max: number;
@MinDate(DateLimit.Today) minDate: Date;
@MaxDate(DateLimit.Today) maxDate: Date;
@MinArray(5) minArray: number[] = [];
@MaxArray(5) maxArray: number[] = [];
@Range(2, 4) range: number;
@Pattern(/d+/) pattern: string;
@IsIP() isip: string;
@Digits() digits: string;
@DateIso() dateiso: string;
@IsEmail() isemail: string;
@IsDate() isdate: Date;
@IsUrl() isurl: string;
@IsNumber() isnumber: number;
dategtDep: Date;
@DateGt("dategtDep") dategt: Date;
dateltDep: Date;
@DateLt("dateltDep") datelt: Date;
@Phone() isphone: string;
}
<div [nbGroup]="user" ngForm>
<div >
Name:
<input type="text" nbModel="name" class="name" (nbModelChange)="changed()" />
</div>
<div>
Has brother:
<input type="checkbox" nbModel="hasBrother" class="hasBrother" (nbModelChange)="changedCheck()" />
</div>
<div>
<input type="text" nbModel="brother" class="brother" />
</div>
<div>
<input type="number" nbModel="age" class="age" (nbModelChange)="changedNum()" />
</div>
<div>
<input type="radio" nbModel="sexe" class="girl" value="girl" (nbModelChange)="changedRadio()" />
</div>
<div>
<input type="radio" nbModel="sexe" class="boy" value="boy" (nbModelChange)="changedRadio()" />
</div>
<div>
<select nbModel="happy" class="happy" (nbModelChange)="changedSelect()">
<option value="yes" class="yes">YES</option>
<option value="no" class="no">NO</option>
</select>
</div>
<div>
<select multiple nbModel="colors" class="colors" (nbModelChange)="changedSelect()">
<option value="blue" class="blue">blue</option>
<option value="yellow" class="yellow">yellow</option>
<option value="green" class="green">green</option>
</select>
</div>
</div>
This module provide two directives "nbGroup" and "nbModel". These directives extends "ngModel" and add some validators automatically. "nbModel" manage a state that let accessor listen and modify the DOM if needed. For example @MaxLength change the state of the model and the default accessor will add a property "maxLength" on the DOM.
Accept an integer as parameter. It validates that the input field (string) has a length greater (or smaller) than the value provide as parameter. It also add an attribute "maxLength" (or "minLength") to the DOM element.
Accept a string or an array of string (dependencies) as parameter. The field is disabled or enabled according to the dependencies. Dependencies are others fields that we need to listen in order to update the state of the model. For exemple: a checkbox "hasName" could enable or disable the field "name". So "name" will be annoted by @EnabledIf("hasName")
Accept a string or an array of string (dependencies) as parameter and an integer (maxLength) The maxlength of the field is computed according to dependencies fields. For example, you could have a phone number with a maxlength of 10 and another field prefix. If prefix is filled, maxlength of phone is: maxlength-length(prefix).
It automatically capitalize the input while typing
The field is required or not according to the dependencies. Dependencies are others fields that we need to listen in order to update the state of the model. For exemple: a checkbox "isRequired" could force the field "name".
The field is required
Apply to a checkbox. The checkbox must be checked by the user.
Accept an integer as parameter. The number must be equal (or greater or smaller) than the value.
Accept a date or a constant (TOday, Now...) The date must be greater (or smaller) than the value.
Accept an integer as parameter. The collection length must be greater (or smaller) than the value.
Accept a regex or a string as parameter. The value must match the regex.
The value must be an IP address
The value must contains only digits
The value must be a date with format : YYYY-MM-DD
The value must be an email
THe value must be a valid date
THe value must be an URL.
The value must be a valid number (input type number)
Accept a string or an array of string (dependencies) as parameter. The value must be greater (or smaller) than the dependency value. The aim is to validate one date regarding another.
The value must be a valid phone
Automatically unaccent the text while the user is typing.
The field is a read only field
FAQs
An angular plugin to validate forms using annotation on model.
The npm package angulator receives a total of 2 weekly downloads. As such, angulator popularity was classified as not popular.
We found that angulator demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.