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

ember-promise-validations

v0.0.0-beta.4

Published

Provides means to easily validate ember objects with simple DIY promise aware validators.

Downloads

6

Readme

ember-promise-validations

npm version Ember Observer Score Build Status Code Climate

Description

This ember addon provides means to easily validate ember objects with simple DIY promise aware validators.

This addon is still a work in progress.

Installation

Like most ember addons, simply run ember install ember-promise-validations and you should be all set.

Docs

Objects

This addon includes a validation service that's necessary to validate the objects you want to validate. It's important to understand that the service doesn't tell you if the object is valid/invalid, instead it sends you a list containing each validation/error that the validator threw an error message for. Those errors are coming from the validators, and since the validators are promise aware, the error themselves need to be promises. The errors can then be used directly, or used through the helpers/components provided.

let errors = validationService.getErrors(object, 'validator');
/*
errors: [
  {
    validation: 'someValidation',
    error: ObjectProxy(PromiseProxyMixin) {
      promise: promise,
      content: result of promise
    }
  }
]
*/

Validators

A validator is an ember object containing a set of validations that can be executed, returning an error (usually a message) if the validation doesn't pass. A validation can be made using promises if necessary.

This addon exposes a blueprint for validators so you can simply run ember g validator some-name to generate the some-name validator.

A validator MUST have a 'validations' object where all the validations are scoped.

Example

import { isBlank } from '@ember/utils';
import EmberObject from '@ember/object';
import { inject as service } from '@ember/service';

export default EmberObject.extend({
  i18n: service(),
  ajax: service(),

  validations: {
    street(value) {
      if (isBlank(value)) {
        return this.get('i18n').t('validations.address.street.blank');
      }
      return false;
    },
    uniqueAddress(value, model) {
      let url = 'some-url';
      return this.get('ajax').request(url, {
        method: 'GET',
        data: {
          address: model
        }
      }).then(result => {
        if (!result.success) {
          return this.get('i18n').t('validations.address.uniqueAddress');
        }
        return false;
      });
    }
  }
});

Services

Validation

The validation service is used to validate an object against a validator and can be passed an array of validations to execute if not all of them need to be executed.

The only method of the service is the getErrors(object, validatorName, ...validations) method. This method validates the object against the validator, and executes only the validations passed in the array 'validations'. If the parameter isn't passed, it'll execute every validation of the validator. This returns a promise, so if it's necessary to wait for the result, for example to know if it's safe to save the model, you need to wait for it. For Example:

[...]
actions: {
  save(model) {
    this.get('validationService').getErrors(model, 'validator').then(errors => {
      if (errors.length === 0)
      {
        model.save();
      }
    });
  }
}
[...]

Here are the parameters that are available.

| Property Key | Type | Description | |---|:------:|:-------------:| | object | object | Object to validate (can be a model) | | validatorName | string | Name of the validator to use | | validations | ...string | Validations to run | | returns | promise | Returns all the errors obtained as a promise resolving as an array of errors |

The validation service works by returning all the errors generated by the object, and adding a validationErrors property on the object itself, so the errors can be access from object.validationErrors and from the array returned by the service. Each time the service is called, the validations to run on the object are cleared from the existing validation errors before the errors are added, so the errors from previous validations aren't cleared until they are ran. You can access the validationErrors directly on each objects if necessary, or you can use the helpers provided.

Components

validation-summary

The validation-summary component is simple component used to show a list of errors from a list of promise proxy objects.

Example
  this.set('validationErrors', validationService.getErrors(address, 'address', 'street'));
{{validation-summary validations=validationErrors class="alert alert-danger"}}

or

{{validation-summary validations=(get-validation-errors address) class="alert alert-danger"}}

It can also be used as a block component, which will expose whatever your validator returned as a result

{{#validation-summary validations=(get-validation-errors address) class="alert alert-danger" as |errorMessage|}}
  error: {{errorMessage}}
{{/validation-summary}}
  • The component will have the class 'hidden' if there's no validations (empty array, null, undefined)

Helpers

has-validation-error

The has-validation-error helper is used to check if an object has an error for a specified validation. If no validation is specified, it checks if the object has any error.

Example
  validationService.getErrors(address, 'address', 'street');
<div class="form-group col-6 {{if (has-validation-error address 'street') 'has-danger' ''}}">
    <div class="input-group">
      <span class="input-group-addon col-3">Street</span>
      {{input type="text" class="form-control" value=address.street}}
    </div>
  </div>

get-validation-error

The get-validation-error helper is used to get an object's error for a specified validation.

Example
  validationService.getErrors(address, 'address', 'street');
<div class="form-group col-6 {{if (has-validation-error address 'street') 'has-danger' ''}}">
    <div class="input-group">
      <span class="input-group-addon col-3">Street</span>
      {{input type="text" class="form-control" value=address.street}}
      <span class="error">{{get-validation-error address 'street'}}</span>
    </div>
  </div>

get-validation-errors

The get-validation-errors helper is used to get an object's error for a specified validation. If no validation is specified, it gets all the errors for the object.

Example
  validationService.getErrors(address, 'address');
  validationService.getErrors(otherAddress, 'address');
{{#each (get-validation-errors address otherAddress) as |validationErrors|}}
  <span>{{validationErrors.error}}</span>
{{/each}}

For more information on using ember-cli, visit https://ember-cli.com/.