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

angular-async-form

v0.5.1

Published

Async form handling the angular way.

Downloads

6

Readme

angular-async-form

Async form handling the angular way.

Bower version NPM version Downloads Build Status Coveralls Status Awesome

If you've developed angular apps you know how difficult it is to handle errors after submitting a form. Common scenarios include:

  • 500 errors with messages like Sorry, an unkown error occured. Please try again.
  • 400 errors from input validation that were not caught in the UI.

Angular provides a great set of directives if your only concern is immediate validation in the UI; however, they fall short for anything else.

angular-async-form (namespaced af) fills this gap with the following directives:

  • afSubmit This is a direct replacement for ngSubmit. It accepts an angular expression (similar to ngSubmit), and in addition to $event it also exposes a callback function (exposed as cb). cb is used to communicate with the rest of the directives listed herein.
  • afMessage Displays a form wide message.
  • afControlGroup Groups a form control with a corresponding error message.
  • afControl Adds a form control to a form control group.
  • afControlMessage Adds a message to a form control group.

You can customize it's behavior with afConfig.

Highlights

  • Unobtrusive. Use afControlMessage in concert with ngMessages to display known validation errors in the UI before submitting the form, and unkown errors from async operations after the form is submitted.
  • Allows you to handle errors after a form is submitted and display them to the user inside the form.
  • If an error was returned for a control (like for input validation that wasn't handled in the UI), the control must receive a blur event before setting it's validity again to true.
  • Display form wide error messages.
  • 100% asynchronous. May be used with or without HTTP calls.
  • Versatile Directive API.
  • Handles all input types I.E. input[type=radio], input[type=checkbox], textara etc.

Full Example

The directives are used in concert as follows:

<!DOCTYPE html>
<html ng-app="myApp">
  <head>
    <style>
    .error {color: red;}
    </style>
  </head>
  <body ng-controller="AppCtrl">
    <h1>Hello {{ user.firstName }}!</h1>

    <form af-submit="doSomething($event, cb)" novalidate>
      <div class="error" af-message>{{ message }}</div>
      <div class="control-group" af-control-group>
        <div class="error" af-control-message>{{ error }}</div>

        <input
          name="firstName"
          ng-model="user.firstName"
          af-control
          required>

        <!-- doSomething($event, cb) is called.  It's up to doSomething to warn the
        user by calling cb if errors occured in async operations.  If no errors
        occurred, then doSomething can do something else like hide the form and load
        a new view. -->
        <button type="submit">Submit</button>
      </div>
    </form>

    <script src="https://code.angularjs.org/1.4.8/angular.js"></script>
    <script src="angular-async-form.js"></script>
    <script src="app.js"></script>
  </body>
</html>

Directive API

afSubmit

|Restriction|Requires|Scope| |----|----|----| |A|form|Parent Scope (afSubmit must equal an angular expression)|

Use afSubmit as a direct replacement for ngSubmit. In addition to the $event object, a callback is exposed as cb. cb has the following signature:

function (message, errors)
  • message - A message to display in the form E.G. Sorry, an unknown error occurred. Please try again.. This can be a string or any data type if you wish to display multiple form wide messages. See afMessage.

  • errors - An enum of strings corresponding to control messages E.G.

    {
      firstName: 'First names must start with the letter J at 4\'oclock in the afternoon.',
      lastName: 'We could not accept this value at this time.'
    }

    See afControlMessage.

afMessage

|Restriction|Requires|Scope| |----|----|----| |AE|^^afSubmit|Child Scope provides message|

Adds a message to the child scope of the element it is used on. The message is provided by passing a value as the message parameter in the afSubmit callback function.

afControlGroup

|Restriction|Requires|Scope| |----|----|----| |AE|?^^afSubmit|Parent Scope|

Groups a form control with a corresponding message. This allows error messages passed to the errors parameter in afSubmit to apply to their intended control, or group of controls in the case of radio buttons and checkboxes. Multiple afControls must have the same name.

afControlMessage

|Restriction|Requires|Scope| |----|----|----| |AE|^^afControlGroup|Child Scope provides error|

Adds a message to a form control group. If the control received an error via the errors parameter to the callback in afSubmit then it will be provided in this directive's scope.

afControl

|Restriction|Requires|Scope| |----|----|----| |A|^^afControlGroup, ngModel|Parent Scope (name is a required attribute)|

Adds a form control to a form control group. The name attribute is used as the key when supplying errors to the callback function in afSubmit. This directive may be used any number of times within afControlGroup (I.E. with radio inputs). If this directive does not exist within afControlGroup, then no error will display in afControlMessage.

Errors must be resolved by triggering a blur event on the control; otherwise, successive evaluations of afSubmit will be blocked.

Configuration

You can customize angular-async-form by using afConfig.

afConfig

A simple object with the following properties:

  • updateOn (defaults to blur change) Setting this to a different DOM event changes the event used to trigger the removal of messages displayed with afControlMessage.

License

The MIT License (MIT)

Copyright (c) 2015 Kogo Software LLC

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.