Files
moreminimore-vibe/src/preload.ts
Will Chen b0f08eaf15 Neon / portal template support (#713)
TODOs:
- [x] Do restart when checkout / restore if there is a DB
- [x] List all branches (branch id, name, date)
- [x] Allow checking out versions with no DB
- [x] safeguard to never delete main branches
- [x] create app hook for neon template
- [x] weird UX with connector on configure panel
- [x] tiny neon logo in connector
- [x] deploy to vercel
- [x] build forgot password page
- [x] what about email setup
- [x] lots of imgix errors
- [x] edit file - db snapshot
- [x] DYAD_DISABLE_DB_PUSH
- [ ] update portal doc
- [x] switch preview branch to be read-only endpoint
- [x] disable supabase sys prompt if neon is enabled
- [ ] https://payloadcms.com/docs/upload/storage-adapters
- [x] need to use main branch...

Phase 2?
- [x] generate DB migrations
2025-08-04 16:36:09 -07:00

172 lines
4.5 KiB
TypeScript

// See the Electron documentation for details on how to use preload scripts:
// https://www.electronjs.org/docs/latest/tutorial/process-model#preload-scripts
import { contextBridge, ipcRenderer } from "electron";
// Whitelist of valid channels
const validInvokeChannels = [
"get-language-models",
"get-language-models-by-providers",
"create-custom-language-model",
"get-language-model-providers",
"delete-custom-language-model-provider",
"create-custom-language-model-provider",
"delete-custom-language-model",
"delete-custom-model",
"chat:add-dep",
"chat:message",
"chat:cancel",
"chat:stream",
"chat:count-tokens",
"create-chat",
"create-app",
"copy-app",
"get-chat",
"get-chats",
"get-chat-logs",
"list-apps",
"get-app",
"get-app-env-vars",
"set-app-env-vars",
"edit-app-file",
"read-app-file",
"run-app",
"stop-app",
"restart-app",
"respond-to-app-input",
"list-versions",
"revert-version",
"checkout-version",
"get-current-branch",
"delete-app",
"rename-app",
"get-user-settings",
"set-user-settings",
"get-env-vars",
"open-external-url",
"show-item-in-folder",
"reset-all",
"nodejs-status",
"install-node",
"github:start-flow",
"github:list-repos",
"github:get-repo-branches",
"github:is-repo-available",
"github:create-repo",
"github:connect-existing-repo",
"github:push",
"github:disconnect",
"neon:create-project",
"neon:get-project",
"neon:delete-branch",
"vercel:save-token",
"vercel:list-projects",
"vercel:is-project-available",
"vercel:create-project",
"vercel:connect-existing-project",
"vercel:get-deployments",
"vercel:disconnect",
"get-app-version",
"reload-env-path",
"get-proposal",
"approve-proposal",
"reject-proposal",
"get-system-debug-info",
"supabase:list-projects",
"supabase:set-app-project",
"supabase:unset-app-project",
"local-models:list-ollama",
"local-models:list-lmstudio",
"window:minimize",
"window:maximize",
"window:close",
"get-system-platform",
"upload-to-signed-url",
"delete-chat",
"update-chat",
"delete-messages",
"start-chat-stream",
"does-release-note-exist",
"import-app",
"check-ai-rules",
"select-app-folder",
"check-app-name",
"rename-branch",
"clear-session-data",
"get-user-budget",
"get-context-paths",
"set-context-paths",
"get-app-upgrades",
"execute-app-upgrade",
"is-capacitor",
"sync-capacitor",
"open-ios",
"open-android",
"check-problems",
"restart-dyad",
"get-templates",
"portal:migrate-create",
// Test-only channels
// These should ALWAYS be guarded with IS_TEST_BUILD in the main process.
// We can't detect with IS_TEST_BUILD in the preload script because
// it's a separate process from the main process.
"supabase:fake-connect-and-set-project",
];
// Add valid receive channels
const validReceiveChannels = [
"chat:response:chunk",
"chat:response:end",
"chat:response:error",
"app:output",
"github:flow-update",
"github:flow-success",
"github:flow-error",
"deep-link-received",
] as const;
type ValidInvokeChannel = (typeof validInvokeChannels)[number];
type ValidReceiveChannel = (typeof validReceiveChannels)[number];
// Expose protected methods that allow the renderer process to use
// the ipcRenderer without exposing the entire object
contextBridge.exposeInMainWorld("electron", {
ipcRenderer: {
invoke: (channel: ValidInvokeChannel, ...args: unknown[]) => {
if (validInvokeChannels.includes(channel)) {
return ipcRenderer.invoke(channel, ...args);
}
throw new Error(`Invalid channel: ${channel}`);
},
on: (
channel: ValidReceiveChannel,
listener: (...args: unknown[]) => void,
) => {
if (validReceiveChannels.includes(channel)) {
const subscription = (
_event: Electron.IpcRendererEvent,
...args: unknown[]
) => listener(...args);
ipcRenderer.on(channel, subscription);
return () => {
ipcRenderer.removeListener(channel, subscription);
};
}
throw new Error(`Invalid channel: ${channel}`);
},
removeAllListeners: (channel: ValidReceiveChannel) => {
if (validReceiveChannels.includes(channel)) {
ipcRenderer.removeAllListeners(channel);
}
},
removeListener: (
channel: ValidReceiveChannel,
listener: (...args: unknown[]) => void,
) => {
if (validReceiveChannels.includes(channel)) {
ipcRenderer.removeListener(channel, listener);
}
},
},
});