mirror of
https://github.com/docmost/docmost.git
synced 2026-07-21 06:22:47 +10:00
572452c80b
Add the bases feature: formula engine package, grid/table UI, and the base-embed editor extension, with supporting client and server changes.
22 lines
794 B
TypeScript
22 lines
794 B
TypeScript
import { atomFamily, atomWithStorage } from "jotai/utils";
|
|
import { BaseViewDraft } from "@/ee/base/types/base.types";
|
|
|
|
export type ViewDraftKey = {
|
|
userId: string;
|
|
pageId: string;
|
|
viewId: string;
|
|
};
|
|
|
|
export const viewDraftStorageKey = (k: ViewDraftKey) =>
|
|
`docmost:base-view-draft:v1:${k.userId}:${k.pageId}:${k.viewId}`;
|
|
|
|
// atomWithStorage handles JSON serialization and cross-tab sync. The custom
|
|
// comparator ensures the same userId/pageId/viewId triple resolves to the
|
|
// same atom instance, so Jotai's identity-equality cache hits still work.
|
|
export const viewDraftAtomFamily = atomFamily(
|
|
(k: ViewDraftKey) =>
|
|
atomWithStorage<BaseViewDraft | null>(viewDraftStorageKey(k), null),
|
|
(a, b) =>
|
|
a.userId === b.userId && a.pageId === b.pageId && a.viewId === b.viewId,
|
|
);
|