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 | 9x 3x 3x 3x 3x 3x 6x 6x 6x 3x 6x 15x 4x 4x 11x 11x 8x 6x | /* eslint-disable import/prefer-default-export */ import is from 'is_js'; import {FieldStatus} from "./helpers"; export function getNestedValue(key, obj) { return key.split('.').reduce((result1, key1) => result1[key1], obj); } function getCollectValues(collectSchema, state) { const fieldsToCollect = Object.keys(collectSchema); const result = {}; fieldsToCollect.forEach(fieldName => { result[fieldName] = getNestedValue(collectSchema[fieldName], state); }); return result; } export function getFieldsValue(schema, state, mustOK = true) { const fieldNames = Object.keys(schema); let result = {}; if (is.propertyDefined(schema, 'collectValues')) { result = { ...getCollectValues(schema.collectValues, state) }; } fieldNames.forEach(name => { if (is.not.propertyDefined(state, name)) { // eslint-disable-next-line no-console console.warn(`[veasy]: No ${name} found in state.`); return; } const fieldState = state[name]; if (mustOK && fieldState.status !== FieldStatus.ok) return; result[name] = fieldState.value; }); return result; } |