aboutsummaryrefslogtreecommitdiffstats
path: root/excalidraw-app/app-jotai.ts
diff options
context:
space:
mode:
authorkj_sh6042026-03-15 16:19:35 -0400
committerkj_sh6042026-03-15 16:19:35 -0400
commitbfc2cec7d43eb8eaa46dd3f91084932381257059 (patch)
tree0857e3aac2cff922826d4871ff54536b26fad6fc /excalidraw-app/app-jotai.ts
parent225db4a7805befe009fe055fc2ef5daedd6c04f9 (diff)
refactor: excalidraw-app/
Diffstat (limited to 'excalidraw-app/app-jotai.ts')
-rw-r--r--excalidraw-app/app-jotai.ts37
1 files changed, 37 insertions, 0 deletions
diff --git a/excalidraw-app/app-jotai.ts b/excalidraw-app/app-jotai.ts
new file mode 100644
index 0000000..1591803
--- /dev/null
+++ b/excalidraw-app/app-jotai.ts
@@ -0,0 +1,37 @@
+// eslint-disable-next-line no-restricted-imports
+import {
+ atom,
+ Provider,
+ useAtom,
+ useAtomValue,
+ useSetAtom,
+ createStore,
+ type PrimitiveAtom,
+} from "jotai";
+import { useLayoutEffect } from "react";
+
+export const appJotaiStore = createStore();
+
+export { atom, Provider, useAtom, useAtomValue, useSetAtom };
+
+export const useAtomWithInitialValue = <
+ T extends unknown,
+ A extends PrimitiveAtom<T>,
+>(
+ atom: A,
+ initialValue: T | (() => T),
+) => {
+ const [value, setValue] = useAtom(atom);
+
+ useLayoutEffect(() => {
+ if (typeof initialValue === "function") {
+ // @ts-ignore
+ setValue(initialValue());
+ } else {
+ setValue(initialValue);
+ }
+ // eslint-disable-next-line react-hooks/exhaustive-deps
+ }, []);
+
+ return [value, setValue] as const;
+};