forked from facebook/react-devtools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhydrate.js
31 lines (28 loc) · 906 Bytes
/
hydrate.js
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
/**
* Copyright (c) 2015-present, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*
* @flow
*/
'use strict';
var consts = require('./consts');
function hydrate(data: Object, cleaned: Array<Array<string>>): void {
cleaned.forEach(path => {
var last = path.pop();
var obj = path.reduce((obj_, attr) => obj_ ? obj_[attr] : null, data);
if (!obj || !obj[last]) {
return;
}
var replace: {[key: Symbol]: boolean | string} = {};
replace[consts.name] = obj[last].name;
replace[consts.type] = obj[last].type;
replace[consts.meta] = obj[last].meta;
replace[consts.inspected] = false;
obj[last] = replace;
});
}
module.exports = hydrate;