mirror of
https://github.com/docmost/docmost
synced 2025-03-28 21:13:28 +00:00
15 lines
470 B
TypeScript
15 lines
470 B
TypeScript
import Cookies from "js-cookie";
|
|
import { createJSONStorage, atomWithStorage } from "jotai/utils";
|
|
import { ITokens } from '../types/auth.types';
|
|
|
|
|
|
const cookieStorage = createJSONStorage<ITokens>(() => {
|
|
return {
|
|
getItem: () => Cookies.get("authTokens"),
|
|
setItem: (key, value) => Cookies.set(key, value),
|
|
removeItem: (key) => Cookies.remove(key),
|
|
};
|
|
});
|
|
|
|
export const authTokensAtom = atomWithStorage<ITokens | null>("authTokens", null, cookieStorage);
|