Some checks failed
CI / test (map[image:macos-latest name:macos], 1, 4) (push) Has been cancelled
CI / test (map[image:macos-latest name:macos], 2, 4) (push) Has been cancelled
CI / test (map[image:macos-latest name:macos], 3, 4) (push) Has been cancelled
CI / test (map[image:macos-latest name:macos], 4, 4) (push) Has been cancelled
CI / test (map[image:windows-latest name:windows], 1, 4) (push) Has been cancelled
CI / test (map[image:windows-latest name:windows], 2, 4) (push) Has been cancelled
CI / test (map[image:windows-latest name:windows], 3, 4) (push) Has been cancelled
CI / test (map[image:windows-latest name:windows], 4, 4) (push) Has been cancelled
CI / merge-reports (push) Has been cancelled
- Added a new integration script to manage custom features related to smart context. - Implemented handlers for smart context operations (get, update, clear, stats) in ipc. - Created a SmartContextStore class to manage context snippets and summaries. - Developed hooks for React to interact with smart context (useSmartContext, useUpdateSmartContext, useClearSmartContext, useSmartContextStats). - Included backup and restore functionality in the integration script. - Validated integration by checking for custom modifications and file existence.
29 lines
1.2 KiB
TypeScript
29 lines
1.2 KiB
TypeScript
import { atom } from "jotai";
|
|
import type { App, AppOutput, Version } from "@/ipc/ipc_types";
|
|
import type { UserSettings } from "@/lib/schemas";
|
|
|
|
export const currentAppAtom = atom<App | null>(null);
|
|
export const selectedAppIdAtom = atom<number | null>(null);
|
|
export const appsListAtom = atom<App[]>([]);
|
|
export const appBasePathAtom = atom<string>("");
|
|
export const versionsListAtom = atom<Version[]>([]);
|
|
export const previewModeAtom = atom<
|
|
"preview" | "code" | "problems" | "configure" | "publish" | "security"
|
|
>("preview");
|
|
export const selectedVersionIdAtom = atom<string | null>(null);
|
|
export const appOutputAtom = atom<AppOutput[]>([]);
|
|
export const appUrlAtom = atom<
|
|
| { appUrl: string; appId: number; originalUrl: string }
|
|
| { appUrl: null; appId: null; originalUrl: null }
|
|
>({ appUrl: null, appId: null, originalUrl: null });
|
|
export const userSettingsAtom = atom<UserSettings | null>(null);
|
|
|
|
// Atom for storing allow-listed environment variables
|
|
export const envVarsAtom = atom<Record<string, string | undefined>>({});
|
|
|
|
export const previewPanelKeyAtom = atom<number>(0);
|
|
|
|
export const previewErrorMessageAtom = atom<
|
|
{ message: string; source: "preview-app" | "dyad-app" } | undefined
|
|
>(undefined);
|