Files
react/packages/react-devtools-shared/src/backend/utils.js
Brian Vaughn 183f96f2ac Prettier
2019-08-13 17:58:03 -07:00

40 lines
998 B
JavaScript

// @flow
import {dehydrate} from '../hydration';
import type {DehydratedData} from 'react-devtools-shared/src/devtools/views/Components/types';
export function cleanForBridge(
data: Object | null,
isPathWhitelisted: (path: Array<string | number>) => boolean,
path?: Array<string | number> = [],
): DehydratedData | null {
if (data !== null) {
const cleaned = [];
return {
data: dehydrate(data, cleaned, path, isPathWhitelisted),
cleaned,
};
} else {
return null;
}
}
export function copyWithSet(
obj: Object | Array<any>,
path: Array<string | number>,
value: any,
index: number = 0,
): Object | Array<any> {
console.log('[utils] copyWithSet()', obj, path, index, value);
if (index >= path.length) {
return value;
}
const key = path[index];
const updated = Array.isArray(obj) ? obj.slice() : {...obj};
// $FlowFixMe number or string is fine here
updated[key] = copyWithSet(obj[key], path, value, index + 1);
return updated;
}