Press n or j to go to the next uncovered block, b, p or k for the previous block.
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 | 20x 10x 10x 6x 1x 1x | // @ts-check import * as lib from './helpers/helpers'; import * as ClassLib from './helpers/veasyClassUtils'; import {createInitialState} from './helpers/initializationUtils'; import {getFieldsValue} from './helpers/collectValuesUtils'; class VeasyClass { /** * Creates an instance of FormValidator. * @param {object} component * @param {object} schema * @memberof VeasyClass */ constructor(component, schema) { ClassLib.typeCheck(component, schema); /** @type { { state:object, setState:Function } } */ this.component = component; this.schema = schema; } /** * Create the initial state for a component * * @returns {object} * @memberof VeasyClass */ createInitialState(userState) { return createInitialState(this.schema, userState); } /** * The validate function, call this in your onChange() handler of the form component * * @param {object} target * @memberof VeasyClass */ validate(target) { lib.startValidating( target, this.schema, this.component.state, this.component.setState.bind(this.component) ); } getFieldsValue(mustOK=true) { getFieldsValue( this.schema, this.component.state, mustOK ); } } export default VeasyClass; |