All files index.js

90% Statements 9/10
100% Branches 0/0
80% Functions 4/5
90% Lines 9/10
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60        2x           2x 2x 4x   2x                     14x   4x   4x                   2x                                        
// @ts-check
import * as lib from './helpers';
 
export function createInitialState(schema) {
  const initialState = {
    formStatus: {
      isFormOK: false,
      fields: {}
    }
  };
  const { fields } = initialState.formStatus;
  Object.keys(schema).forEach(prop => {
    fields[prop] = lib.createNewFieldState(true, schema[prop]);
  });
  return initialState;
}
 
class EasyV {
  /**
   * Creates an instance of FormValidator.
   * @param {object} component
   * @param {object} schema
   * @memberof FormValidator
   */
  constructor(component, schema) {
    lib.typeCheck(component, schema);
    /** @type { { state:object, setState:Function } } */
    this.component = component;
    /** @type { { formStatus: { isFormOK: boolean, fields: object } } } */
    this.schema = schema;
  }
 
  /**
   * Create the initial state for a component
   *
   * @returns {object}
   * @memberof FormValidator
   */
  createInitialState() {
    return createInitialState(this.schema);
  }
 
  /**
   * The validate function, call this in your onChange() handler of the form component
   *
   * @param {object} target
   * @memberof FormValidator
   */
  validate(target) {
    lib.startValidating(
      target,
      this.schema,
      this.component.state.formStatus,
      this.component.setState.bind(this.component)
    );
  }
}
 
export default EasyV;