Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1006 Bytes

README.md

File metadata and controls

39 lines (30 loc) · 1006 Bytes

Anchor validation

Build Status

Module for exposing a few validation methods to be used in redux-forms.

Usage

Install from npm

NPM

Examples

import { maxLength, minLength, required, isAlphanumeric } from 'anchor-validation';

<form>
  <Field
    name="username"
    component={renderField}
    label="username"
    type="text"
    validate={
      [
        value => required(value, 'required'),
        value => minLength(2)(value, 'error_min_length'),
        value => maxLength(15)(value, 'error_max_length'),
        value => isAlphanumeric(value, 'error_not_alphanumeric')
      ]
    }
  />
  <Button onClick={handleSubmit(onSubmit)} disabled={invalid || submitting}>
    <p>Sign in</p>
  </Button>
</form>