react-form-package
Version:
A declarative form component with inbuilt validation and state management
37 lines (30 loc) • 2.38 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.handleBindToValues = void 0;
var _checkFormInput = require("../checkFormInput");
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
var handleBindToValues = function handleBindToValues(newData, data, myValue, options) {
var thisBindTo = Array.isArray(options.bindTo) ? options.bindTo : [options.bindTo];
var thisNewData = newData;
thisBindTo.forEach(function (bindTo, idx) {
var newBoundValue = options.bindToCallback(myValue);
newBoundValue = Array.isArray(newBoundValue) ? newBoundValue[idx] : newBoundValue;
var boundValue = options.bindToAlways || !thisNewData[bindTo].touched ? newBoundValue : thisNewData[bindTo].value;
var boundValid = (0, _checkFormInput.checkFormInput)(thisNewData[bindTo].rules, boundValue, data);
var boundPristine = boundValue === thisNewData[bindTo].initialValue;
thisNewData = _objectSpread({}, thisNewData, _defineProperty({}, bindTo, _objectSpread({}, thisNewData[bindTo], {
value: boundValue,
checked: newData[bindTo].rules.type === 'checkbox' ? boundValue : undefined,
valid: boundValid,
invalid: !boundValid,
pristine: boundPristine,
dirty: !boundPristine
})));
});
return thisNewData;
};
exports.handleBindToValues = handleBindToValues;