jotai.ts 672 B

123456789101112131415161718192021222324252627
  1. import { unstable_createStore, useAtom, WritableAtom } from "jotai";
  2. import { useLayoutEffect } from "react";
  3. export const jotaiScope = Symbol();
  4. export const jotaiStore = unstable_createStore();
  5. export const useAtomWithInitialValue = <
  6. T extends unknown,
  7. A extends WritableAtom<T, T>,
  8. >(
  9. atom: A,
  10. initialValue: T | (() => T),
  11. ) => {
  12. const [value, setValue] = useAtom(atom);
  13. useLayoutEffect(() => {
  14. if (typeof initialValue === "function") {
  15. // @ts-ignore
  16. setValue(initialValue());
  17. } else {
  18. setValue(initialValue);
  19. }
  20. // eslint-disable-next-line react-hooks/exhaustive-deps
  21. }, []);
  22. return [value, setValue] as const;
  23. };