npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

ng-schema

v0.1.0

Published

Validation of Angular with Mongoose Schemas

Downloads

197

Readme

ng-schema

ng-schema allows to use Mongoose Schemas in Angular forms.

It isn't a form generator. You build your form normaly and associate to a schema, and all valitations will be ready to use.

Motivation

The program uses a declarative way to express the user interface and application behavior. Thus, the business rules are defined in the View in HTML form. Is not good because these rules are mixed with the presentation layer.

D.R.Y.

Using Mongoose Schemas to define the Business Rules, it is not needed to repeat the validations rules in each form. All rules are in one place, in an Angular service.

Overview

angular.module('app').factory('mySchema', function() {
  return {
    _id: String,
    customer: { type: String, minlength: 5, required, match:/^[a-zA-Z ]*$/},
    date: { type: Date, default: (new Date()).toISOString()},
    level: { type: Number, max: 3, default: 2},
    delivered: {type: Boolean},
    priority: {type: String, enum: ['high', 'medium', 'low']},
    comment: {type: String, maxlength: 200},
    _field: { 
      type: String,
      formatter: function(value) {return value.replace('_', ''); },
      parser: function(value) {return '_'+value;}
    },
    validInteger: {
      type: Number,
      validate: function(value) { 
        value = parseInt(modelValue, 10);
        return (value < 10);
      },
    },
    firstName: String,
    lastName: String,
    fullName: { 
      type: String,
      get: function() {return this.firstName + ' ' + this.lastName;},
      set: function(name) {
        var words = name.toString().split(' ');
        this.firstName = words[0] || '';
        this.lastName = words[1] || '';
      }
    }    
  };
});
<form model-schema="mySchema" form-data-prefix="order">
  ID:       <input ng-model="order._id"><br>
  Customer: <input ng-model="order.customer"><br>
  Date:     <input ng-model="order.date"><br>
  Level:    <input ng-model="order.level"><br>
  Delivered:<input ng-model="order.delivered"><br>
  Priority: <select ng-model="order.priority"><br>
  Comment:  <textarea ng-model="order.comment"></textarea><br>
<form>

It is the same as:

<form model-schema="mySchema" form-data-prefix="order">
  ID:       <input ng-model="order._id" name="_id"><br>
  Customer: <input ng-model="order.customer" ng-minlength="5" required ng-pattern="^[a-zA-Z ]*$"  name="customer"><br>
  Date:     <input ng-model="order.date" type="date" ng-init="{{date}}"  name="date"><br>
  Level:    <input ng-model="order.level" type="number" max="3" name="level"><br>
  Delivered:<input ng-model="order.delivered" type="checkbox"  name="delivered"><br>
  Priority: <select ng-model="order.priority">
    <options>high</options>
    <options>medium</options>
    <options>low</options>
  </select><br>
  Comment:  <textarea ng-model="order.comment" ng-maxlength="200"></textarea><br>
<form>

##Documentation

####Types

  • String, Number, Boolean, Date or
  • 'text', 'string', 'number', 'integer', 'date', 'month', 'time', 'week', 'checkbox', 'radio', 'email', 'url', 'search', 'password'

####Constraints

  • min, max, maxlength, minlength, required, match (or pattern)

####Helpers

  • enum, default

####Html Attributes The schema can be used to define elements atributes like: name, title, disable, readonly, step, placeholder

####Assessors and Modifiers

  • get, set, validate, virtual (default in Mongoose)
  • formatter, parser (for use in Angular forms)

Notes

  • If a attribute is defined in the form, it won't be overwritten for the schema value. So, the rules can be customised in a specific form, if it is needed.
  • Both HTML5 constraints and Angular constraints are defined. If there is the maxlength in the schema, the attributes ng-maxlegth and maxlength are defined. If necessary, use the attribute novalidate in the form to stop HTML5 validation.
  • The Mongoose schema is extended to accept string Types, formatters, parsers and pattern.
  • The attributes label, description and format can be used to help in another directives.

TODO

  • More tests
  • enum
  • ref - populate
  • JSON-Schemas