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-validity-modifier

v3.0.0

Published

Ember addon to add custom validity (form validation) to form fields

Downloads

136

Readme

ember-validity-modifier

A very simple validation addon using a custom modifier. This makes adding custom validations to form elements as simple as adding a modifier to the field along with your own helper or validation function.

Demo

Compatibility

  • Ember.js v3.28 or above
  • Ember CLI v3.28 or above
  • Node.js v14 or above

Installation

ember install ember-validity-modifier

Usage

Example using a component action

<input {{validity this.validate}}>
export default MyComponent extends Component {
  @action
  validate({ value }) {
    return value === 'foobar' ? [] : ['Must be a foobar'];
  }
}

Example using a custom helper

<input {{validity (validate-foobar)}}>
export default helper(function validateFoobar() {
  return ({ value }) => value === 'foobar' ? [] : ['Must be a foobar'];
});

Example using native validations

<input required pattern="foobar" {{validity}}>

Example using more than one validations

<input {{validity (validate-present) (validate-phone-number)}}>

Example of only validating on specific events

By default validation will happen on change, input, and blur. Comma separate event names.

<input {{validity (validate-foobar) on="change,input"}}>

Example adding to non form fields (bubbling)

In cases where we don't have easy access to the form field itself we can also add it to a parent element. This might be the case when adding a modifier that gets applied by another component via its ...attributes.

<div {{validity (validate-foobar)}}>
  <label for="example">Example</label>
  <input id="example">
</div>

Example validation on form submit

<form
  ...attributes
  {{verify-form-validity submit=this.handleSubmit reportValidity=true}}
>
  <label for="firstName">First name</label>
  <input type="text" name="firstName" id="firstName" required {{validity}}>
  <label for="lastName">Last name</label>
  <input
    type="text"
    name="lastName"
    id="lastName"
    required
    {{validity (validate-not-match "firstName")}}
  >
  <button type="submit">Submit form</button>
</form>
import Component from '@glimmer/component';
import { validate } from 'ember-validity-modifier';

export default class MyForm extends Component {
  @action
  handleSubmit({ target: form }) {
    console.log('Fake submit action', Object.fromEntries(new FormData(form)));
  }
}

Example with validateImmediately argument

To validate the form state on initial render add validateImmediately=true.

  <input {{validity
    (fn this.matchTo this.match)
    on="change"
    validateImmediately=true
  }}>

Example with validateTracked argument

To validate the form state when initial render and any time one of its dependent arguments change, add the 'validateTracked' argument with the dependent properties.

Because the validator argument is a function it is possible to not exercise the tracked properties and thus miss out on validations when those tracked properties change. This is the case of the fn helper which lazy executes thus doesn't trigger Ember's auto-tracking if it isn't ran first.

To compensate we can use validateTracked to inform the modifier that it needs to run the validations when these properties change.

  <input {{validity
    (fn this.matchTo this.match)
    on="change"
    validateTracked=this.match
  }}>

To validate the form state any time any of its dependent arguments change, add the validateTracked argument using the array helper and a list of dependent properties.

  <input {{validity
    (fn this.matchTo this.match1 this.match2)
    on="change"
    validateTracked=(array this.match1 this.macth2)
  }}>

Example with select

<select name="foobar" {{validity (validate-selected-option)}}>
  <option value="">—Pick one—</option>
  <option value="foo">Foo</option>
  <option value="bar">Bar</option>
  <option value="baz">Baz</option>
</select>
export default helper(function validateSelectedOption() {
  return ({ name, value }) => value === '' ? [`Must pick an option for ${name}`] : [];
});

Example with ember-changeset validations

{{#let (changeset this.data this.validate) as |subject|}}
  <Input
    @value={{subject.foobar}}
    {{validity (validate-changeset subject "foobar")}}
  />
{{/let}}
export default helper(function validateChangeset([changeset, prop]) {
  return async () => {
    await changeset.validate(prop);
    let { validation: error } = changeset.error[prop] ?? {};
    return error ? [error] : [];
  };
});

Example rendering validation messages

{{#let (form-errors) as |errors|}}
  <input
    name="foobar"
    {{on "validated" errors.update}}
    {{validity (validate-foobar)}}
  >
  <span>{{errors.message.foobar}}</span>
{{/let}}

form-error exposes the following:

  • update — action to process a validated event
  • set — action that can set specific fields
  • for.<name> — the errors as an array
  • native.<name> — any native errors as an array
  • custom.<name> — any custom errors as an array
  • message.<name> — the validationMessage from the DOM element

Example CSS

/* All the things */
:valid { … }
:invalid { … }

/* Not on first render, use the validated event to set dataset.validated */
[data-validited]:valid { … }
[data-validited]:invalid { … }

How this works

The blog post Managing validity in forms takes a dive into a simple native (vanilla) implementation of this idea. In the post it describes the idea that validations can be managed through DOM events. By attaching the validation functions to an event handler they can easily manage the native custom validity of the element.

When a validate event is dispatched (by default the events are validate, input, change, and blur). Each validator function registered will be evaluated, the results will be consolidated, and the element's custom validity is set, finally a validated event is dispatched to announce that the process is complete (in case of asynchronous validations).

Sequence diagram of the validation events

Contributing

See the Contributing guide for details.

License

This project is licensed under the MIT License.