Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
ember-cli-simple-validation
Advanced tools
ember-cli addon that provides simple validation for ember.js web applications
The goals of this project are simple:
1) form validation for controllers/components that are bound to a persisted model
2) consistent user experience that will validate right away as the user starts typing
3) optional delay for complex input validation rules like password or email
4) submit button friendly including a computed property to verify EACH input is valid
5) support for regex and function based validation
6) avoid auto generating all the form html/inputs/etc
7) extracted from a real software project
http://emberjs.jsbin.com/fovolu/2/
1) remove ember-data from your package.json file
2) remove ember-data from your bower.json file
3) rm -rf node_modules/ember-data
4) rm -rf bower_components/ember-data
5) npm install ember-cli-simple-store --save-dev
6) npm install ember-cli-simple-validation --save-dev
First add the mixin to your controller and add a validate attribute for any field you want to have validated.
The validation attribute itself is simple. Without a second argument it will trim the value and return true/false (ie- the field will be required). If you need a more complex validation add a regex or custom function as the second argument.
import Ember from "ember";
import {ValidationMixin, validate} from "ember-cli-simple-validation/mixins/validate";
export default Ember.Controller.extend(ValidationMixin, {
nameValidation: validate("model.name"),
emailValidation: validate("model.emailAddress", /\S+@\S+\.\S+/),
actions: {
save: function() {
this.set("submitted", true);
if(this.get("valid")) {
//executed when all fields are valid
}
}
}
});
Next add the component that will show/hide the error message in your template. This project assumes you are doing rich model based validation so you need to have a model backed controller or component.
{{input value=model.name placeholder="name"}}
{{#validation-error-field submitted=submitted field="name" model=model validation=nameValidation}}invalid name{{/validation-error-field}}
<button {{action "save"}}>Save</button>
The last step is to add a true model object and declare each field.
import { attr, Model } from "ember-cli-simple-store/model";
var Person = Model.extend({
name: attr(),
email: attr()
});
export default Person;
The user experience by default is that as the user starts typing the field with auto validate and warn the user if they have completed it correctly (before the submit button is clicked). If you have a more complex field like email and you prefer not to fire the validation right away you can use the delay option.
{{#validation-error-field delayed=true submitted=submitted field="email" model=model validation=emailValidation}}invalid email{{/validation-error-field}}
The conventions that are required to use this library.
1) The validation attributes you declare in the controller must have the suffix "Validation" (ie- nameValidation, emailValidation)
2) The controller action must set a property called submitted/and you must pass this into each component as shown above
3) The mixin will add a computed property called "valid" that you can use to confirm each field is valid
4) The model needs to support dirty tracking at the field level (ember-cli-simple-store provides the model and dirty tracked attribute)
5) The css class that is added to the span is "hidden"
To validate each field on your ArrayController first declare the controller with a validateEach attribute for each property
import Ember from "ember";
import {ValidationMixin, validateEach} from "ember-cli-simple-validation/mixins/validate";
export default Ember.ArrayController.extend(ValidationMixin, {
name: validateEach("name"),
actions: {
save: function() {
this.set("submitted", true);
if(this.get("valid")) {
//executed when all fields are valid
}
}
}
});
Next add the validation-error-field component to the template
{{#each model as |person index|}}
{{input value=person.name placeholder="name"}}
{{#validation-error-field submitted=submitted field="name" model=person index=index validation="name"}}invalid name{{/validation-error-field}}
{{/each}}
npm install
bower install
ember test
1) npm install
2) bower install
3) ember server
4) localhost:4200
Copyright © 2015 Toran Billups http://toranbillups.com
Licensed under the MIT License
FAQs
ember-cli addon that provides simple form validation
The npm package ember-cli-simple-validation receives a total of 8 weekly downloads. As such, ember-cli-simple-validation popularity was classified as not popular.
We found that ember-cli-simple-validation demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.