gpt4 book ai didi

javascript - lambda js : lens for deeply nested objects with nested arrays of objects

转载 作者:行者123 更新时间:2023-12-03 08:05:07 24 4
gpt4 key购买 nike

使用 Ramda.js(和镜头),我想修改下面的 JavaScript 对象,将 ID=“/1/B/i”的对象的“NAME:VERSION1”更改为“NAME:VERSION2”。

我想使用镜头,因为我只想更改一个深度嵌套的值,否则保持整个结构不变。

我不想使用 lensIndex 因为我永远不知道数组的顺序是什么,所以相反,我想通过查找它的“id”字段来“找到”数组中的对象。

我可以用镜片做到这一点,还是应该用不同的方式做到这一点?

{
"id": "/1",
"groups": [
{
"id": "/1/A",
"apps": [
{
"id": "/1/A/i",
"more nested data skipped to simplify the example": {}
}
]
},
{
"id": "/1/B",
"apps": [
{ "id": "/1/B/n", "container": {} },
{
"id": "/1/B/i",

"container": {
"docker": {
"image": "NAME:VERSION1",
"otherStuff": {}
}
}
}
]
}

]
}

最佳答案

这应该可以通过创建一个通过 ID 匹配对象的镜头来实现,然后可以与其他镜头组合以深入到图像场。

首先,我们可以创建一个镜头,它将专注于与某个谓词匹配的数组元素(注意:只有保证匹配列表中的至少一个元素,这才是有效的镜头)

//:: (a -> Boolean) -> Lens [a] a
const lensMatching = pred => (toF => entities => {
const index = R.findIndex(pred, entities);
return R.map(entity => R.update(index, entity, entities),
toF(entities[index]));
});

请注意,我们在这里手动构建镜头,而不是使用 R.lens。以节省查找与谓词匹配的项目的索引的重复。

一旦我们有了这个函数,我们就可以构建一个与给定 ID 匹配的镜头。
//:: String -> Lens [{ id: String }] { id: String }
const lensById = R.compose(lensMatching, R.propEq('id'))

然后我们可以将所有镜头组合在一起以瞄准像场
const imageLens = R.compose(
R.lensProp('groups'),
lensById('/1/B'),
R.lensProp('apps'),
lensById('/1/B/i'),
R.lensPath(['container', 'docker', 'image'])
)

可用于更新 data像这样的对象:
set(imageLens, 'NAME:VERSION2', data)

如果您愿意,您可以更进一步,并声明一个专注于图像字符串版本的镜头。
const vLens = R.lens(
R.compose(R.nth(1), R.split(':')),
(version, str) => R.replace(/:.*/, ':' + version, str)
)

set(vLens, 'v2', 'NAME:v1') // 'NAME:v2'

然后可以将其附加到 imageLens 的组合中。以整个对象中的版本为目标。
const verLens = compose(imageLens, vLens);
set(verLens, 'VERSION2', data);

关于javascript - lambda js : lens for deeply nested objects with nested arrays of objects,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35538351/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com