mirror of
https://github.com/AutoMaker-Org/automaker.git
synced 2026-01-30 06:12:03 +00:00
- Introduced a new endpoint to check if the application is running in a containerized environment, allowing the UI to display appropriate risk warnings. - Added a confirmation dialog for users when running outside a sandbox, requiring acknowledgment of potential risks before proceeding. - Implemented a rejection screen for users who deny sandbox risk confirmation, providing options to restart in a container or reload the application. - Updated the main application logic to handle sandbox status checks and user responses effectively, enhancing security and user experience.
59 lines
2.2 KiB
TypeScript
59 lines
2.2 KiB
TypeScript
/**
|
|
* Electron preload script (TypeScript)
|
|
*
|
|
* Only exposes native features (dialogs, shell) and server URL.
|
|
* All other operations go through HTTP API.
|
|
*/
|
|
|
|
import { contextBridge, ipcRenderer, OpenDialogOptions, SaveDialogOptions } from 'electron';
|
|
|
|
// Expose minimal API for native features
|
|
contextBridge.exposeInMainWorld('electronAPI', {
|
|
// Platform info
|
|
platform: process.platform,
|
|
isElectron: true,
|
|
|
|
// Connection check
|
|
ping: (): Promise<string> => ipcRenderer.invoke('ping'),
|
|
|
|
// Get server URL for HTTP client
|
|
getServerUrl: (): Promise<string> => ipcRenderer.invoke('server:getUrl'),
|
|
|
|
// Get API key for authentication
|
|
getApiKey: (): Promise<string | null> => ipcRenderer.invoke('auth:getApiKey'),
|
|
|
|
// Native dialogs - better UX than prompt()
|
|
openDirectory: (): Promise<Electron.OpenDialogReturnValue> =>
|
|
ipcRenderer.invoke('dialog:openDirectory'),
|
|
openFile: (options?: OpenDialogOptions): Promise<Electron.OpenDialogReturnValue> =>
|
|
ipcRenderer.invoke('dialog:openFile', options),
|
|
saveFile: (options?: SaveDialogOptions): Promise<Electron.SaveDialogReturnValue> =>
|
|
ipcRenderer.invoke('dialog:saveFile', options),
|
|
|
|
// Shell operations
|
|
openExternalLink: (url: string): Promise<{ success: boolean; error?: string }> =>
|
|
ipcRenderer.invoke('shell:openExternal', url),
|
|
openPath: (filePath: string): Promise<{ success: boolean; error?: string }> =>
|
|
ipcRenderer.invoke('shell:openPath', filePath),
|
|
openInEditor: (
|
|
filePath: string,
|
|
line?: number,
|
|
column?: number
|
|
): Promise<{ success: boolean; error?: string }> =>
|
|
ipcRenderer.invoke('shell:openInEditor', filePath, line, column),
|
|
|
|
// App info
|
|
getPath: (name: string): Promise<string> => ipcRenderer.invoke('app:getPath', name),
|
|
getVersion: (): Promise<string> => ipcRenderer.invoke('app:getVersion'),
|
|
isPackaged: (): Promise<boolean> => ipcRenderer.invoke('app:isPackaged'),
|
|
|
|
// Window management
|
|
updateMinWidth: (sidebarExpanded: boolean): Promise<void> =>
|
|
ipcRenderer.invoke('window:updateMinWidth', sidebarExpanded),
|
|
|
|
// App control
|
|
quit: (): Promise<void> => ipcRenderer.invoke('app:quit'),
|
|
});
|
|
|
|
console.log('[Preload] Electron API exposed (TypeScript)');
|