mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-05-17 05:07:17 +02:00
Split codebase (#455)
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
import { atom } from "jotai";
|
||||
import { atomWithKVStorage } from "../lib/atoms/atomWithKVStorage";
|
||||
import { activeWorkspaceIdAtom } from "./useActiveWorkspace";
|
||||
|
||||
function kvKey(workspaceId: string | null) {
|
||||
return ["sidebar_collapsed", workspaceId ?? "n/a"];
|
||||
}
|
||||
|
||||
export const sidebarCollapsedAtom = atom((get) => {
|
||||
const workspaceId = get(activeWorkspaceIdAtom);
|
||||
return atomWithKVStorage<Record<string, boolean>>(kvKey(workspaceId), {});
|
||||
});
|
||||
Reference in New Issue
Block a user