我在我的反应项目中使用 Recoil (recoiljs.org)。
我有一个带有项目列表的相当经典的设置 - 对象图看起来像这样:
Routes - routes is an array of Route objects
- Route - route object is edited in a form
我使用一个原子来表示当前选择的 Routes 数组,例如
const [routes, setRoutes] = useRecoilValue(currentRoutesViewState);
而且我还使用 aselectorFamily
来允许单个控件绑定到单个项目并更新其状态。
const routeSelectorFamily = selectorFamily({
key: "routeSelectorFamily",
get:
(routeKey) =>
({ get }) => {
const routes = get(currentRoutesViewState);
return routes.find((r) => r.key === routeKey);
},
set:
(routeKey) =>
({ set }, newValue) => {
set(currentRoutesViewState, (oldRoutes) => {
const index = oldRoutes.findIndex((r) => r.key === routeKey);
const newRoutes = replaceItemAtIndex(
oldRoutes,
index,
newValue as RouteViewModel
);
return newRoutes;
});
},
});
如您所见,该set
功能允许某人更新单个路由状态,并将其复制到任何渲染路由中。
但是,我想自动保存对整个图表的任何更改,但不知道如何轻松观察对 Routes 父对象的任何更改。有没有办法以编程方式订阅更新,以便我可以序列化并保存此状态?