123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- import _objectSpread from "@babel/runtime/helpers/esm/objectSpread2";
- import _toConsumableArray from "@babel/runtime/helpers/esm/toConsumableArray";
- import _typeof from "@babel/runtime/helpers/esm/typeof";
- import { toArray } from './typeUtil';
- import get from '../../vc-util/get';
- import set from '../../vc-util/set';
- /**
- * Convert name to internal supported format.
- * This function should keep since we still thinking if need support like `a.b.c` format.
- * 'a' => ['a']
- * 123 => [123]
- * ['a', 123] => ['a', 123]
- */
- export function getNamePath(path) {
- return toArray(path);
- }
- export function getValue(store, namePath) {
- var value = get(store, namePath);
- return value;
- }
- export function setValue(store, namePath, value) {
- var removeIfUndefined = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : false;
- var newStore = set(store, namePath, value, removeIfUndefined);
- return newStore;
- }
- export function containsNamePath(namePathList, namePath) {
- return namePathList && namePathList.some(function (path) {
- return matchNamePath(path, namePath);
- });
- }
- function isObject(obj) {
- return _typeof(obj) === 'object' && obj !== null && Object.getPrototypeOf(obj) === Object.prototype;
- }
- /**
- * Copy values into store and return a new values object
- * ({ a: 1, b: { c: 2 } }, { a: 4, b: { d: 5 } }) => { a: 4, b: { c: 2, d: 5 } }
- */
- function internalSetValues(store, values) {
- var newStore = Array.isArray(store) ? _toConsumableArray(store) : _objectSpread({}, store);
- if (!values) {
- return newStore;
- }
- Object.keys(values).forEach(function (key) {
- var prevValue = newStore[key];
- var value = values[key];
- // If both are object (but target is not array), we use recursion to set deep value
- var recursive = isObject(prevValue) && isObject(value);
- newStore[key] = recursive ? internalSetValues(prevValue, value || {}) : value;
- });
- return newStore;
- }
- export function setValues(store) {
- for (var _len = arguments.length, restValues = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {
- restValues[_key - 1] = arguments[_key];
- }
- return restValues.reduce(function (current, newStore) {
- return internalSetValues(current, newStore);
- }, store);
- }
- export function cloneByNamePathList(store, namePathList) {
- var newStore = {};
- namePathList.forEach(function (namePath) {
- var value = getValue(store, namePath);
- newStore = setValue(newStore, namePath, value);
- });
- return newStore;
- }
- export function matchNamePath(namePath, changedNamePath) {
- if (!namePath || !changedNamePath || namePath.length !== changedNamePath.length) {
- return false;
- }
- return namePath.every(function (nameUnit, i) {
- return changedNamePath[i] === nameUnit;
- });
- }
|