使用 React 以编程方式观察 Recoil 的变化

Programmatically observing changes in Recoil with React

我在我的 React 项目中使用 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);

而且我还使用 selectorFamily 允许单独的控件绑定到并更新单个项目的状态。

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 父对象的任何更改。有没有办法以编程方式订阅更新,以便我可以序列化并保存此状态?

您可以为此使用 useEffect

const currentState = useRecoilValue(currentRoutesViewState);

useEffect(() => {
  // currentState changed.
  // save the current state
}, [currentState])