@cloudcli-ai/cloudcli 1.34.0 → 1.35.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.de.md +9 -1
- package/README.ja.md +8 -0
- package/README.ko.md +9 -1
- package/README.md +23 -5
- package/README.ru.md +9 -1
- package/README.tr.md +8 -1
- package/README.zh-CN.md +9 -1
- package/README.zh-TW.md +9 -1
- package/dist/api-docs.html +36 -18
- package/dist/assets/index-BvX30NW5.css +32 -0
- package/dist/assets/index-D1IdCTT6.js +1418 -0
- package/dist/index.html +12 -4
- package/dist-server/server/browser-use-mcp.js +350 -0
- package/dist-server/server/browser-use-mcp.js.map +1 -0
- package/dist-server/server/claude-sdk.js +25 -5
- package/dist-server/server/claude-sdk.js.map +1 -1
- package/dist-server/server/cli.js +14 -6
- package/dist-server/server/cli.js.map +1 -1
- package/dist-server/server/cursor-cli.js +27 -11
- package/dist-server/server/cursor-cli.js.map +1 -1
- package/dist-server/server/gemini-cli.js +17 -2
- package/dist-server/server/gemini-cli.js.map +1 -1
- package/dist-server/server/index.js +136 -40
- package/dist-server/server/index.js.map +1 -1
- package/dist-server/server/load-env.js +1 -1
- package/dist-server/server/load-env.js.map +1 -1
- package/dist-server/server/modules/browser-use/browser-use-mcp.routes.js +107 -0
- package/dist-server/server/modules/browser-use/browser-use-mcp.routes.js.map +1 -0
- package/dist-server/server/modules/browser-use/browser-use.routes.js +93 -0
- package/dist-server/server/modules/browser-use/browser-use.routes.js.map +1 -0
- package/dist-server/server/modules/browser-use/browser-use.service.js +688 -0
- package/dist-server/server/modules/browser-use/browser-use.service.js.map +1 -0
- package/dist-server/server/modules/browser-use/tests/browser-use.service.test.js +8 -0
- package/dist-server/server/modules/browser-use/tests/browser-use.service.test.js.map +1 -0
- package/dist-server/server/modules/database/index.js +1 -0
- package/dist-server/server/modules/database/index.js.map +1 -1
- package/dist-server/server/modules/database/migrations.js +23 -1
- package/dist-server/server/modules/database/migrations.js.map +1 -1
- package/dist-server/server/modules/database/repositories/notification-channel-endpoints.js +100 -0
- package/dist-server/server/modules/database/repositories/notification-channel-endpoints.js.map +1 -0
- package/dist-server/server/modules/database/repositories/notification-preferences.js +8 -0
- package/dist-server/server/modules/database/repositories/notification-preferences.js.map +1 -1
- package/dist-server/server/modules/database/repositories/sessions.db.js +173 -17
- package/dist-server/server/modules/database/repositories/sessions.db.js.map +1 -1
- package/dist-server/server/modules/database/schema.js +26 -0
- package/dist-server/server/modules/database/schema.js.map +1 -1
- package/dist-server/server/modules/database/tests/projects.db.integration.test.js.map +1 -0
- package/dist-server/server/modules/database/tests/sessions-provider-mapping.test.js +78 -0
- package/dist-server/server/modules/database/tests/sessions-provider-mapping.test.js.map +1 -0
- package/dist-server/server/modules/database/{repositories → tests}/sessions.db.integration.test.js +10 -0
- package/dist-server/server/modules/database/tests/sessions.db.integration.test.js.map +1 -0
- package/dist-server/server/modules/notifications/index.js +4 -0
- package/dist-server/server/modules/notifications/index.js.map +1 -0
- package/dist-server/server/modules/notifications/notifications.routes.js +115 -0
- package/dist-server/server/modules/notifications/notifications.routes.js.map +1 -0
- package/dist-server/server/modules/notifications/services/desktop-notification-clients.service.js +97 -0
- package/dist-server/server/modules/notifications/services/desktop-notification-clients.service.js.map +1 -0
- package/dist-server/server/modules/notifications/services/notification-orchestrator.service.js +229 -0
- package/dist-server/server/modules/notifications/services/notification-orchestrator.service.js.map +1 -0
- package/dist-server/server/modules/notifications/websocket/desktop-notifications-websocket.service.js +79 -0
- package/dist-server/server/modules/notifications/websocket/desktop-notifications-websocket.service.js.map +1 -0
- package/dist-server/server/modules/projects/services/project-management.service.js +0 -4
- package/dist-server/server/modules/projects/services/project-management.service.js.map +1 -1
- package/dist-server/server/modules/projects/services/projects-with-sessions-fetch.service.js +10 -38
- package/dist-server/server/modules/projects/services/projects-with-sessions-fetch.service.js.map +1 -1
- package/dist-server/server/modules/providers/index.js +1 -0
- package/dist-server/server/modules/providers/index.js.map +1 -1
- package/dist-server/server/modules/providers/list/claude/claude-session-synchronizer.provider.js +24 -1
- package/dist-server/server/modules/providers/list/claude/claude-session-synchronizer.provider.js.map +1 -1
- package/dist-server/server/modules/providers/list/claude/claude-sessions.provider.js +9 -12
- package/dist-server/server/modules/providers/list/claude/claude-sessions.provider.js.map +1 -1
- package/dist-server/server/modules/providers/list/claude/claude-skills.provider.js +7 -0
- package/dist-server/server/modules/providers/list/claude/claude-skills.provider.js.map +1 -1
- package/dist-server/server/modules/providers/list/codex/codex-session-synchronizer.provider.js +7 -3
- package/dist-server/server/modules/providers/list/codex/codex-session-synchronizer.provider.js.map +1 -1
- package/dist-server/server/modules/providers/list/codex/codex-sessions.provider.js +3 -9
- package/dist-server/server/modules/providers/list/codex/codex-sessions.provider.js.map +1 -1
- package/dist-server/server/modules/providers/list/codex/codex-skills.provider.js +7 -0
- package/dist-server/server/modules/providers/list/codex/codex-skills.provider.js.map +1 -1
- package/dist-server/server/modules/providers/list/cursor/cursor-sessions.provider.js +13 -22
- package/dist-server/server/modules/providers/list/cursor/cursor-sessions.provider.js.map +1 -1
- package/dist-server/server/modules/providers/list/cursor/cursor-skills.provider.js +7 -0
- package/dist-server/server/modules/providers/list/cursor/cursor-skills.provider.js.map +1 -1
- package/dist-server/server/modules/providers/list/gemini/gemini-models.provider.js +5 -8
- package/dist-server/server/modules/providers/list/gemini/gemini-models.provider.js.map +1 -1
- package/dist-server/server/modules/providers/list/gemini/gemini-sessions.provider.js +6 -6
- package/dist-server/server/modules/providers/list/gemini/gemini-sessions.provider.js.map +1 -1
- package/dist-server/server/modules/providers/list/gemini/gemini-skills.provider.js +7 -0
- package/dist-server/server/modules/providers/list/gemini/gemini-skills.provider.js.map +1 -1
- package/dist-server/server/modules/providers/list/opencode/opencode-session-synchronizer.provider.js +17 -3
- package/dist-server/server/modules/providers/list/opencode/opencode-session-synchronizer.provider.js.map +1 -1
- package/dist-server/server/modules/providers/list/opencode/opencode-sessions.provider.js +9 -10
- package/dist-server/server/modules/providers/list/opencode/opencode-sessions.provider.js.map +1 -1
- package/dist-server/server/modules/providers/provider.routes.js +123 -1
- package/dist-server/server/modules/providers/provider.routes.js.map +1 -1
- package/dist-server/server/modules/providers/services/mcp.service.js +23 -0
- package/dist-server/server/modules/providers/services/mcp.service.js.map +1 -1
- package/dist-server/server/modules/providers/services/provider-capabilities.service.js +65 -0
- package/dist-server/server/modules/providers/services/provider-capabilities.service.js.map +1 -0
- package/dist-server/server/modules/providers/services/provider-models.service.js +1 -1
- package/dist-server/server/modules/providers/services/provider-models.service.js.map +1 -1
- package/dist-server/server/modules/providers/services/sessions-watcher.service.js +62 -23
- package/dist-server/server/modules/providers/services/sessions-watcher.service.js.map +1 -1
- package/dist-server/server/modules/providers/services/sessions.service.js +62 -4
- package/dist-server/server/modules/providers/services/sessions.service.js.map +1 -1
- package/dist-server/server/modules/providers/services/skills.service.js +11 -0
- package/dist-server/server/modules/providers/services/skills.service.js.map +1 -1
- package/dist-server/server/modules/providers/shared/skills/skills.provider.js +163 -1
- package/dist-server/server/modules/providers/shared/skills/skills.provider.js.map +1 -1
- package/dist-server/server/modules/providers/tests/opencode-sessions.test.js +45 -0
- package/dist-server/server/modules/providers/tests/opencode-sessions.test.js.map +1 -1
- package/dist-server/server/modules/providers/tests/skills.test.js +160 -0
- package/dist-server/server/modules/providers/tests/skills.test.js.map +1 -1
- package/dist-server/server/modules/websocket/index.js +1 -0
- package/dist-server/server/modules/websocket/index.js.map +1 -1
- package/dist-server/server/modules/websocket/services/chat-run-registry.service.js +252 -0
- package/dist-server/server/modules/websocket/services/chat-run-registry.service.js.map +1 -0
- package/dist-server/server/modules/websocket/services/chat-session-writer.service.js +105 -0
- package/dist-server/server/modules/websocket/services/chat-session-writer.service.js.map +1 -0
- package/dist-server/server/modules/websocket/services/chat-websocket.service.js +218 -156
- package/dist-server/server/modules/websocket/services/chat-websocket.service.js.map +1 -1
- package/dist-server/server/modules/websocket/services/shell-websocket.service.js +83 -31
- package/dist-server/server/modules/websocket/services/shell-websocket.service.js.map +1 -1
- package/dist-server/server/modules/websocket/services/websocket-server.service.js +5 -0
- package/dist-server/server/modules/websocket/services/websocket-server.service.js.map +1 -1
- package/dist-server/server/modules/websocket/tests/chat-run-registry.test.js +216 -0
- package/dist-server/server/modules/websocket/tests/chat-run-registry.test.js.map +1 -0
- package/dist-server/server/openai-codex.js +24 -14
- package/dist-server/server/openai-codex.js.map +1 -1
- package/dist-server/server/opencode-cli.js +21 -8
- package/dist-server/server/opencode-cli.js.map +1 -1
- package/dist-server/server/opencode-cli.test.js +19 -1
- package/dist-server/server/opencode-cli.test.js.map +1 -1
- package/dist-server/server/routes/settings.js +1 -1
- package/dist-server/server/routes/settings.js.map +1 -1
- package/dist-server/server/services/notification-orchestrator.js +1 -176
- package/dist-server/server/services/notification-orchestrator.js.map +1 -1
- package/dist-server/server/services/tests/notification-orchestrator.test.js +64 -0
- package/dist-server/server/services/tests/notification-orchestrator.test.js.map +1 -0
- package/dist-server/server/shared/{claude-cli-path.test.js → tests/claude-cli-path.test.js} +1 -1
- package/dist-server/server/shared/tests/claude-cli-path.test.js.map +1 -0
- package/dist-server/server/shared/tests/slice-tail-page.test.js +35 -0
- package/dist-server/server/shared/tests/slice-tail-page.test.js.map +1 -0
- package/dist-server/server/shared/utils.js +73 -1
- package/dist-server/server/shared/utils.js.map +1 -1
- package/dist-server/server/voice-proxy.js +226 -0
- package/dist-server/server/voice-proxy.js.map +1 -0
- package/electron/assets/logo-macos.icns +0 -0
- package/electron/assets/logo-macos.png +0 -0
- package/electron/assets/logo-windows.ico +0 -0
- package/electron/cloud.js +260 -0
- package/electron/desktopNotifications.js +378 -0
- package/electron/desktopWindow.js +766 -0
- package/electron/launcher/index.html +14 -0
- package/electron/launcher/launcher.css +801 -0
- package/electron/launcher/launcher.js +687 -0
- package/electron/localServer.js +550 -0
- package/electron/main.js +944 -0
- package/electron/preload.cjs +60 -0
- package/electron/scripts/generate-macos-icon.js +62 -0
- package/electron/serverInstaller.js +277 -0
- package/electron/tabs.js +87 -0
- package/electron/viewHost.js +331 -0
- package/package.json +79 -3
- package/public/api-docs.html +36 -18
- package/scripts/release/build-server-bundle.js +176 -0
- package/scripts/release/prepare-desktop-app.js +152 -0
- package/server/browser-use-mcp.ts +384 -0
- package/server/claude-sdk.js +27 -5
- package/server/cli.js +15 -6
- package/server/cursor-cli.js +27 -11
- package/server/gemini-cli.js +17 -2
- package/server/index.js +137 -47
- package/server/load-env.js +1 -1
- package/server/modules/browser-use/browser-use-mcp.routes.ts +120 -0
- package/server/modules/browser-use/browser-use.routes.ts +96 -0
- package/server/modules/browser-use/browser-use.service.ts +836 -0
- package/server/modules/browser-use/tests/browser-use.service.test.ts +10 -0
- package/server/modules/database/index.ts +1 -0
- package/server/modules/database/migrations.ts +25 -0
- package/server/modules/database/repositories/notification-channel-endpoints.ts +153 -0
- package/server/modules/database/repositories/notification-preferences.ts +12 -1
- package/server/modules/database/repositories/sessions.db.ts +227 -23
- package/server/modules/database/schema.ts +27 -0
- package/server/modules/database/tests/sessions-provider-mapping.test.ts +108 -0
- package/server/modules/database/{repositories → tests}/sessions.db.integration.test.ts +12 -0
- package/server/modules/notifications/index.ts +13 -0
- package/server/modules/notifications/notifications.routes.ts +127 -0
- package/server/modules/notifications/services/desktop-notification-clients.service.ts +124 -0
- package/server/modules/notifications/services/notification-orchestrator.service.js +288 -0
- package/server/modules/notifications/websocket/desktop-notifications-websocket.service.ts +109 -0
- package/server/modules/projects/services/project-management.service.ts +0 -8
- package/server/modules/projects/services/projects-with-sessions-fetch.service.ts +12 -53
- package/server/modules/providers/README.md +1 -1
- package/server/modules/providers/index.ts +1 -0
- package/server/modules/providers/list/claude/claude-session-synchronizer.provider.ts +26 -1
- package/server/modules/providers/list/claude/claude-sessions.provider.ts +9 -14
- package/server/modules/providers/list/claude/claude-skills.provider.ts +8 -0
- package/server/modules/providers/list/codex/codex-session-synchronizer.provider.ts +7 -3
- package/server/modules/providers/list/codex/codex-sessions.provider.ts +3 -12
- package/server/modules/providers/list/codex/codex-skills.provider.ts +8 -0
- package/server/modules/providers/list/cursor/cursor-sessions.provider.ts +13 -22
- package/server/modules/providers/list/cursor/cursor-skills.provider.ts +8 -0
- package/server/modules/providers/list/gemini/gemini-models.provider.ts +5 -8
- package/server/modules/providers/list/gemini/gemini-sessions.provider.ts +6 -6
- package/server/modules/providers/list/gemini/gemini-skills.provider.ts +8 -0
- package/server/modules/providers/list/opencode/opencode-session-synchronizer.provider.ts +18 -4
- package/server/modules/providers/list/opencode/opencode-sessions.provider.ts +9 -12
- package/server/modules/providers/provider.routes.ts +167 -1
- package/server/modules/providers/services/mcp.service.ts +26 -0
- package/server/modules/providers/services/provider-capabilities.service.ts +91 -0
- package/server/modules/providers/services/provider-models.service.ts +1 -1
- package/server/modules/providers/services/sessions-watcher.service.ts +71 -25
- package/server/modules/providers/services/sessions.service.ts +79 -4
- package/server/modules/providers/services/skills.service.ts +25 -1
- package/server/modules/providers/shared/skills/skills.provider.ts +223 -0
- package/server/modules/providers/tests/opencode-sessions.test.ts +49 -0
- package/server/modules/providers/tests/skills.test.ts +212 -0
- package/server/modules/websocket/README.md +33 -27
- package/server/modules/websocket/index.ts +1 -0
- package/server/modules/websocket/services/chat-run-registry.service.ts +327 -0
- package/server/modules/websocket/services/chat-session-writer.service.ts +145 -0
- package/server/modules/websocket/services/chat-websocket.service.ts +292 -207
- package/server/modules/websocket/services/shell-websocket.service.ts +108 -32
- package/server/modules/websocket/services/websocket-server.service.ts +6 -0
- package/server/modules/websocket/tests/chat-run-registry.test.ts +244 -0
- package/server/openai-codex.js +24 -14
- package/server/opencode-cli.js +21 -8
- package/server/opencode-cli.test.js +20 -1
- package/server/routes/settings.js +6 -1
- package/server/services/notification-orchestrator.js +3 -224
- package/server/services/tests/notification-orchestrator.test.js +80 -0
- package/server/shared/interfaces.ts +15 -0
- package/server/shared/tests/slice-tail-page.test.ts +42 -0
- package/server/shared/types.ts +84 -1
- package/server/shared/utils.ts +95 -1
- package/server/voice-proxy.js +224 -0
- package/dist/assets/index-73Xw3i9v.css +0 -32
- package/dist/assets/index-BIHaviaA.js +0 -1361
- package/dist/modelConstants.js +0 -854
- package/dist-server/server/modules/database/repositories/projects.db.integration.test.js.map +0 -1
- package/dist-server/server/modules/database/repositories/sessions.db.integration.test.js.map +0 -1
- package/dist-server/server/shared/claude-cli-path.test.js.map +0 -1
- package/public/modelConstants.js +0 -854
- /package/dist-server/server/modules/database/{repositories → tests}/projects.db.integration.test.js +0 -0
- /package/server/modules/database/{repositories → tests}/projects.db.integration.test.ts +0 -0
- /package/server/shared/{claude-cli-path.test.ts → tests/claude-cli-path.test.ts} +0 -0
|
@@ -0,0 +1,766 @@
|
|
|
1
|
+
import { BrowserWindow, Menu, Tray, clipboard, nativeImage, nativeTheme, session, webContents as electronWebContents } from 'electron';
|
|
2
|
+
|
|
3
|
+
import { ViewHost } from './viewHost.js';
|
|
4
|
+
|
|
5
|
+
const TITLEBAR_HEIGHT = 44;
|
|
6
|
+
const AUTH_TOKEN_STORAGE_KEY = 'auth-token';
|
|
7
|
+
function isAllowedPermissionOrigin(sourceUrl, controlPlaneUrl) {
|
|
8
|
+
try {
|
|
9
|
+
const source = new URL(sourceUrl);
|
|
10
|
+
if ((source.hostname === '127.0.0.1' || source.hostname === 'localhost') && source.protocol === 'http:') {
|
|
11
|
+
return true;
|
|
12
|
+
}
|
|
13
|
+
if (source.protocol !== 'https:') {
|
|
14
|
+
return false;
|
|
15
|
+
}
|
|
16
|
+
const controlPlane = new URL(controlPlaneUrl);
|
|
17
|
+
return source.origin === controlPlane.origin || source.hostname.endsWith('.cloudcli.ai');
|
|
18
|
+
} catch {
|
|
19
|
+
return false;
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
function getWebContentsProcessId(contents) {
|
|
24
|
+
return {
|
|
25
|
+
osProcessId: typeof contents.getOSProcessId === 'function' ? contents.getOSProcessId() : null,
|
|
26
|
+
processId: typeof contents.getProcessId === 'function' ? contents.getProcessId() : null,
|
|
27
|
+
};
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
export class DesktopWindowManager {
|
|
31
|
+
constructor({
|
|
32
|
+
appName,
|
|
33
|
+
getWindowIconPath,
|
|
34
|
+
getLauncherPath,
|
|
35
|
+
getPreloadPath,
|
|
36
|
+
openExternalUrl,
|
|
37
|
+
getDesktopState,
|
|
38
|
+
getDisplayTargetName,
|
|
39
|
+
getRemoteEnvironmentMenuItems,
|
|
40
|
+
getCloudState,
|
|
41
|
+
getLocalState,
|
|
42
|
+
actions,
|
|
43
|
+
tabs,
|
|
44
|
+
}) {
|
|
45
|
+
this.appName = appName;
|
|
46
|
+
this.getWindowIconPath = getWindowIconPath;
|
|
47
|
+
this.getLauncherPath = getLauncherPath;
|
|
48
|
+
this.getPreloadPath = getPreloadPath;
|
|
49
|
+
this.openExternalUrl = openExternalUrl;
|
|
50
|
+
this.getDesktopState = getDesktopState;
|
|
51
|
+
this.getDisplayTargetName = getDisplayTargetName;
|
|
52
|
+
this.getRemoteEnvironmentMenuItems = getRemoteEnvironmentMenuItems;
|
|
53
|
+
this.getCloudState = getCloudState;
|
|
54
|
+
this.getLocalState = getLocalState;
|
|
55
|
+
this.actions = actions;
|
|
56
|
+
this.tabs = tabs;
|
|
57
|
+
|
|
58
|
+
this.mainWindow = null;
|
|
59
|
+
this.settingsWindow = null;
|
|
60
|
+
this.tray = null;
|
|
61
|
+
this.launcherLoaded = false;
|
|
62
|
+
this.viewHost = new ViewHost({
|
|
63
|
+
appName: this.appName,
|
|
64
|
+
getMainWindow: () => this.mainWindow,
|
|
65
|
+
getContentViewBounds: () => this.getContentViewBounds(),
|
|
66
|
+
getPreloadPath: this.getPreloadPath,
|
|
67
|
+
openExternalUrl: this.openExternalUrl,
|
|
68
|
+
showError: this.actions.showError,
|
|
69
|
+
});
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
getMainWindow() {
|
|
73
|
+
return this.mainWindow;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
getTrayImage() {
|
|
77
|
+
const image = nativeImage.createFromPath(this.getWindowIconPath());
|
|
78
|
+
return image.resize({ width: 18, height: 18 });
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
getContentViewBounds() {
|
|
82
|
+
if (!this.mainWindow) return { x: 0, y: TITLEBAR_HEIGHT, width: 0, height: 0 };
|
|
83
|
+
const [width, height] = this.mainWindow.getContentSize();
|
|
84
|
+
return {
|
|
85
|
+
x: 0,
|
|
86
|
+
y: TITLEBAR_HEIGHT,
|
|
87
|
+
width,
|
|
88
|
+
height: Math.max(0, height - TITLEBAR_HEIGHT),
|
|
89
|
+
};
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
detachActiveContentView() {
|
|
93
|
+
this.viewHost.detachAll();
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
async showTabPlaceholder(target, message) {
|
|
97
|
+
const tabId = this.tabs.getTabIdForTarget(target);
|
|
98
|
+
await this.viewHost.showTabPlaceholder(tabId, target, message);
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
async showLocalStartupTarget(target, logs) {
|
|
102
|
+
const tabId = this.tabs.getTabIdForTarget(target);
|
|
103
|
+
await this.viewHost.showLocalStartupTarget(tabId, target, logs);
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
async showContentTarget(target) {
|
|
107
|
+
const tabId = this.tabs.getTabIdForTarget(target);
|
|
108
|
+
await this.viewHost.showContentTarget(tabId, target);
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
destroyTabView(tabId) {
|
|
112
|
+
this.viewHost.destroyTabView(tabId);
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
emitDesktopState() {
|
|
116
|
+
const state = this.getDesktopState();
|
|
117
|
+
if (this.mainWindow && !this.mainWindow.webContents.isDestroyed()) {
|
|
118
|
+
this.mainWindow.webContents.send('cloudcli-desktop:state-updated', state);
|
|
119
|
+
}
|
|
120
|
+
if (this.settingsWindow && !this.settingsWindow.webContents.isDestroyed()) {
|
|
121
|
+
this.settingsWindow.webContents.send('cloudcli-desktop:state-updated', state);
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
emitLauncherCommand(command) {
|
|
126
|
+
if (!this.mainWindow || this.mainWindow.webContents.isDestroyed()) return;
|
|
127
|
+
this.mainWindow.webContents.send('cloudcli-desktop:launcher-command', command);
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
emitSettingsCommand(command) {
|
|
131
|
+
if (!this.settingsWindow || this.settingsWindow.webContents.isDestroyed()) return;
|
|
132
|
+
this.settingsWindow.webContents.send('cloudcli-desktop:launcher-command', command);
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
syncSettingsWindowBounds() {
|
|
136
|
+
if (!this.mainWindow || !this.settingsWindow || this.settingsWindow.isDestroyed()) return;
|
|
137
|
+
this.settingsWindow.setBounds(this.mainWindow.getBounds());
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
async ensureSettingsWindow(sheet = 'desktop-settings') {
|
|
141
|
+
if (!this.mainWindow) return null;
|
|
142
|
+
|
|
143
|
+
if (this.settingsWindow && !this.settingsWindow.isDestroyed()) {
|
|
144
|
+
this.syncSettingsWindowBounds();
|
|
145
|
+
this.emitSettingsCommand({ type: 'open-sheet', sheet });
|
|
146
|
+
this.settingsWindow.focus();
|
|
147
|
+
return this.settingsWindow;
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
this.settingsWindow = new BrowserWindow({
|
|
151
|
+
parent: this.mainWindow,
|
|
152
|
+
show: false,
|
|
153
|
+
frame: false,
|
|
154
|
+
transparent: true,
|
|
155
|
+
hasShadow: false,
|
|
156
|
+
resizable: false,
|
|
157
|
+
minimizable: false,
|
|
158
|
+
maximizable: false,
|
|
159
|
+
fullscreenable: false,
|
|
160
|
+
movable: false,
|
|
161
|
+
skipTaskbar: true,
|
|
162
|
+
backgroundColor: '#00000000',
|
|
163
|
+
webPreferences: {
|
|
164
|
+
contextIsolation: true,
|
|
165
|
+
nodeIntegration: false,
|
|
166
|
+
sandbox: true,
|
|
167
|
+
preload: this.getPreloadPath(),
|
|
168
|
+
},
|
|
169
|
+
});
|
|
170
|
+
this.syncSettingsWindowBounds();
|
|
171
|
+
this.viewHost.configureChildWebContents(this.settingsWindow.webContents);
|
|
172
|
+
this.settingsWindow.once('ready-to-show', () => this.settingsWindow?.show());
|
|
173
|
+
this.settingsWindow.on('closed', () => {
|
|
174
|
+
this.settingsWindow = null;
|
|
175
|
+
});
|
|
176
|
+
await this.settingsWindow.loadFile(this.getLauncherPath(), {
|
|
177
|
+
query: { modal: '1', sheet },
|
|
178
|
+
});
|
|
179
|
+
return this.settingsWindow;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
closeSettingsWindow() {
|
|
183
|
+
if (!this.settingsWindow || this.settingsWindow.isDestroyed()) return;
|
|
184
|
+
this.settingsWindow.close();
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
async showTarget(target, { trackTab = true } = {}) {
|
|
188
|
+
if (!this.mainWindow) return;
|
|
189
|
+
if (trackTab) {
|
|
190
|
+
this.tabs.upsertTarget(target);
|
|
191
|
+
}
|
|
192
|
+
this.actions.setActiveTarget(target);
|
|
193
|
+
this.buildAppMenu();
|
|
194
|
+
this.mainWindow.setTitle(`${this.appName} - ${target.name}`);
|
|
195
|
+
const finalUrl = await this.showContentTarget(target);
|
|
196
|
+
this.emitDesktopState();
|
|
197
|
+
return finalUrl;
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
async showLauncher() {
|
|
201
|
+
if (!this.mainWindow) return;
|
|
202
|
+
const target = { kind: 'launcher', name: this.appName, url: null };
|
|
203
|
+
this.tabs.upsertTarget(target);
|
|
204
|
+
this.actions.setActiveTarget(target);
|
|
205
|
+
this.detachActiveContentView();
|
|
206
|
+
this.buildAppMenu();
|
|
207
|
+
this.mainWindow.setTitle(this.appName);
|
|
208
|
+
this.mainWindow.webContents.focus();
|
|
209
|
+
if (!this.launcherLoaded) {
|
|
210
|
+
await this.mainWindow.loadFile(this.getLauncherPath());
|
|
211
|
+
this.launcherLoaded = true;
|
|
212
|
+
} else {
|
|
213
|
+
this.emitDesktopState();
|
|
214
|
+
}
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
async switchDesktopTab(tabId) {
|
|
218
|
+
const tab = this.tabs.activate(tabId);
|
|
219
|
+
if (!tab || !this.mainWindow) return this.getDesktopState();
|
|
220
|
+
|
|
221
|
+
if (tab.id === 'home' || tab.kind === 'launcher') {
|
|
222
|
+
await this.showLauncher();
|
|
223
|
+
return this.getDesktopState();
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
if (!tab.target?.url) {
|
|
227
|
+
throw new Error('This tab does not have a target URL.');
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
await this.showTarget(tab.target, { trackTab: false });
|
|
231
|
+
return this.getDesktopState();
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
async reloadActiveTab() {
|
|
235
|
+
const activeTab = this.tabs.getActiveTab();
|
|
236
|
+
if (!activeTab || activeTab.id === 'home' || activeTab.kind === 'launcher') {
|
|
237
|
+
this.emitDesktopState();
|
|
238
|
+
return this.getDesktopState();
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
const reloaded = this.viewHost.reloadTab(activeTab.id);
|
|
242
|
+
if (!reloaded && activeTab.target?.url) {
|
|
243
|
+
await this.showTarget(activeTab.target, { trackTab: false });
|
|
244
|
+
}
|
|
245
|
+
this.emitDesktopState();
|
|
246
|
+
return this.getDesktopState();
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
async navigateActiveView(url) {
|
|
250
|
+
const navigated = await this.viewHost.navigateActiveView(url);
|
|
251
|
+
this.emitDesktopState();
|
|
252
|
+
return navigated;
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
async readAuthTokenForTarget(url) {
|
|
256
|
+
return this.viewHost.readLocalStorageValueForOrigin(url, AUTH_TOKEN_STORAGE_KEY);
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
openActiveTabDevTools() {
|
|
260
|
+
if (this.viewHost.openActiveViewDevTools()) return;
|
|
261
|
+
void this.actions.showError('No active BrowserView', new Error('Switch to a non-launcher tab before opening active tab DevTools.'));
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
reloadActiveBrowserViewForDiagnostics() {
|
|
265
|
+
if (this.viewHost.reloadActiveView()) return;
|
|
266
|
+
void this.actions.showError('No active BrowserView', new Error('Switch to a non-launcher tab before reloading the active BrowserView.'));
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
detachActiveBrowserViewForDiagnostics() {
|
|
270
|
+
if (this.viewHost.detachActiveView()) return;
|
|
271
|
+
void this.actions.showError('No active BrowserView', new Error('Switch to a non-launcher tab before detaching the active BrowserView.'));
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
copyWebContentsDiagnostics() {
|
|
275
|
+
const tabViewDiagnostics = this.viewHost.getTabViewDiagnostics();
|
|
276
|
+
const tabViewByContentsId = new Map(
|
|
277
|
+
tabViewDiagnostics
|
|
278
|
+
.filter((item) => item.webContentsId != null)
|
|
279
|
+
.map((item) => [item.webContentsId, item])
|
|
280
|
+
);
|
|
281
|
+
|
|
282
|
+
const rows = electronWebContents.getAllWebContents().map((contents) => {
|
|
283
|
+
const destroyed = contents.isDestroyed();
|
|
284
|
+
const processIds = destroyed ? { osProcessId: null, processId: null } : getWebContentsProcessId(contents);
|
|
285
|
+
const tabView = tabViewByContentsId.get(contents.id);
|
|
286
|
+
let owner = 'unknown';
|
|
287
|
+
if (this.mainWindow?.webContents?.id === contents.id) {
|
|
288
|
+
owner = 'main-window';
|
|
289
|
+
} else if (this.settingsWindow?.webContents?.id === contents.id) {
|
|
290
|
+
owner = 'settings-window';
|
|
291
|
+
} else if (tabView) {
|
|
292
|
+
owner = `browser-view:${tabView.tabId}`;
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
return {
|
|
296
|
+
id: contents.id,
|
|
297
|
+
owner,
|
|
298
|
+
osProcessId: processIds.osProcessId,
|
|
299
|
+
processId: processIds.processId,
|
|
300
|
+
url: destroyed ? null : contents.getURL(),
|
|
301
|
+
title: destroyed ? null : contents.getTitle(),
|
|
302
|
+
destroyed,
|
|
303
|
+
focused: destroyed || typeof contents.isFocused !== 'function' ? false : contents.isFocused(),
|
|
304
|
+
attached: tabView ? tabView.attached : null,
|
|
305
|
+
active: tabView ? tabView.active : null,
|
|
306
|
+
};
|
|
307
|
+
});
|
|
308
|
+
|
|
309
|
+
const activeTab = this.tabs.getActiveTab();
|
|
310
|
+
const diagnostics = {
|
|
311
|
+
generatedAt: new Date().toISOString(),
|
|
312
|
+
activeTabId: this.tabs.activeTabId,
|
|
313
|
+
activeTab: activeTab
|
|
314
|
+
? {
|
|
315
|
+
id: activeTab.id,
|
|
316
|
+
title: activeTab.title,
|
|
317
|
+
kind: activeTab.kind,
|
|
318
|
+
targetUrl: activeTab.target?.url || null,
|
|
319
|
+
}
|
|
320
|
+
: null,
|
|
321
|
+
tabViews: tabViewDiagnostics,
|
|
322
|
+
webContents: rows,
|
|
323
|
+
};
|
|
324
|
+
|
|
325
|
+
clipboard.writeText(JSON.stringify(diagnostics, null, 2));
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
async closeDesktopTab(tabId) {
|
|
329
|
+
const tab = this.tabs.remove(tabId);
|
|
330
|
+
if (!tab) return this.getDesktopState();
|
|
331
|
+
this.destroyTabView(tabId);
|
|
332
|
+
if (this.tabs.activeTabId === 'home') {
|
|
333
|
+
await this.showLauncher();
|
|
334
|
+
} else {
|
|
335
|
+
this.emitDesktopState();
|
|
336
|
+
}
|
|
337
|
+
return this.getDesktopState();
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
buildEnvironmentActionsSubmenu(environment) {
|
|
341
|
+
const items = [];
|
|
342
|
+
const statusSuffix = environment.status === 'running' ? '' : ` (${environment.status})`;
|
|
343
|
+
items.push({
|
|
344
|
+
label: 'Open Environment',
|
|
345
|
+
click: () => void this.actions.openEnvironmentInDesktop(environment)
|
|
346
|
+
.catch((error) => this.actions.showError(`Could not open ${environment.name || environment.subdomain}${statusSuffix}`, error)),
|
|
347
|
+
});
|
|
348
|
+
items.push({
|
|
349
|
+
label: 'Open in Browser',
|
|
350
|
+
click: () => void this.actions.openEnvironmentInBrowser(environment)
|
|
351
|
+
.catch((error) => this.actions.showError('Could not open environment in browser', error)),
|
|
352
|
+
});
|
|
353
|
+
items.push({
|
|
354
|
+
label: 'Open in VS Code',
|
|
355
|
+
click: () => void this.actions.openEnvironmentInIde(environment, 'vscode')
|
|
356
|
+
.catch((error) => this.actions.showError('Could not open environment in VS Code', error)),
|
|
357
|
+
});
|
|
358
|
+
items.push({
|
|
359
|
+
label: 'Open in Cursor',
|
|
360
|
+
click: () => void this.actions.openEnvironmentInIde(environment, 'cursor')
|
|
361
|
+
.catch((error) => this.actions.showError('Could not open environment in Cursor', error)),
|
|
362
|
+
});
|
|
363
|
+
items.push({
|
|
364
|
+
label: 'Open SSH Terminal',
|
|
365
|
+
click: () => void this.actions.openEnvironmentInSsh(environment)
|
|
366
|
+
.catch((error) => this.actions.showError('Could not open SSH terminal', error)),
|
|
367
|
+
});
|
|
368
|
+
items.push({
|
|
369
|
+
label: 'Copy Mobile/Web URL',
|
|
370
|
+
click: () => this.actions.copyText(this.actions.getEnvironmentUrl(environment)),
|
|
371
|
+
});
|
|
372
|
+
if (environment.status !== 'running') {
|
|
373
|
+
items.unshift({
|
|
374
|
+
label: environment.status === 'paused' ? 'Resume' : 'Start',
|
|
375
|
+
click: () => void this.actions.startEnvironment(environment)
|
|
376
|
+
.catch((error) => this.actions.showError('Could not start environment', error)),
|
|
377
|
+
});
|
|
378
|
+
}
|
|
379
|
+
if (environment.status === 'running') {
|
|
380
|
+
items.push({
|
|
381
|
+
label: 'Stop',
|
|
382
|
+
click: () => void this.actions.stopEnvironment(environment)
|
|
383
|
+
.catch((error) => this.actions.showError('Could not stop environment', error)),
|
|
384
|
+
});
|
|
385
|
+
}
|
|
386
|
+
return items;
|
|
387
|
+
}
|
|
388
|
+
|
|
389
|
+
buildTrayEnvironmentSection() {
|
|
390
|
+
const cloudState = this.getCloudState();
|
|
391
|
+
if (!cloudState.account?.apiKey) {
|
|
392
|
+
return [
|
|
393
|
+
{
|
|
394
|
+
label: cloudState.account?.email ? `Reconnect ${cloudState.account.email}` : 'Login',
|
|
395
|
+
click: () => void this.actions.connectCloudAccount()
|
|
396
|
+
.catch((error) => this.actions.showError('Could not connect CloudCLI account', error)),
|
|
397
|
+
},
|
|
398
|
+
];
|
|
399
|
+
}
|
|
400
|
+
|
|
401
|
+
if (!cloudState.environments.length) {
|
|
402
|
+
return [{ label: 'No environments found', enabled: false }];
|
|
403
|
+
}
|
|
404
|
+
|
|
405
|
+
return cloudState.environments.map((environment) => ({
|
|
406
|
+
label: `${environment.name || environment.subdomain} - ${environment.status}`,
|
|
407
|
+
submenu: this.buildEnvironmentActionsSubmenu(environment),
|
|
408
|
+
}));
|
|
409
|
+
}
|
|
410
|
+
|
|
411
|
+
buildAppMenu() {
|
|
412
|
+
if (!this.mainWindow) return;
|
|
413
|
+
const cloudState = this.getCloudState();
|
|
414
|
+
const localState = this.getLocalState();
|
|
415
|
+
const remoteItems = this.getRemoteEnvironmentMenuItems();
|
|
416
|
+
const cloudAccountLabel = cloudState.account?.apiKey
|
|
417
|
+
? (cloudState.account?.email ? `Connected: ${cloudState.account.email}` : 'CloudCLI Connected')
|
|
418
|
+
: (cloudState.account?.email ? `Reconnect: ${cloudState.account.email}` : 'Connect CloudCLI Account...');
|
|
419
|
+
|
|
420
|
+
const template = [
|
|
421
|
+
{
|
|
422
|
+
label: this.appName,
|
|
423
|
+
submenu: [
|
|
424
|
+
{ label: `About ${this.appName}`, role: 'about' },
|
|
425
|
+
{ type: 'separator' },
|
|
426
|
+
{
|
|
427
|
+
label: 'Show Launcher',
|
|
428
|
+
accelerator: 'CmdOrCtrl+Shift+L',
|
|
429
|
+
click: () => void this.showLauncher().catch((error) => this.actions.showError('Could not show launcher', error)),
|
|
430
|
+
},
|
|
431
|
+
{
|
|
432
|
+
label: 'Switch Environment',
|
|
433
|
+
accelerator: 'CmdOrCtrl+Shift+E',
|
|
434
|
+
click: () => void this.actions.showEnvironmentPicker().catch((error) => this.actions.showError('Could not switch environment', error)),
|
|
435
|
+
},
|
|
436
|
+
{
|
|
437
|
+
label: 'Diagnostics',
|
|
438
|
+
submenu: [
|
|
439
|
+
{
|
|
440
|
+
label: 'Copy Diagnostics',
|
|
441
|
+
click: () => void this.actions.copyDiagnostics(),
|
|
442
|
+
},
|
|
443
|
+
],
|
|
444
|
+
},
|
|
445
|
+
{ type: 'separator' },
|
|
446
|
+
{
|
|
447
|
+
label: process.platform === 'darwin' ? `Hide ${this.appName}` : 'Hide',
|
|
448
|
+
role: 'hide',
|
|
449
|
+
visible: process.platform === 'darwin',
|
|
450
|
+
},
|
|
451
|
+
{ label: 'Hide Others', role: 'hideOthers', visible: process.platform === 'darwin' },
|
|
452
|
+
{ label: 'Show All', role: 'unhide', visible: process.platform === 'darwin' },
|
|
453
|
+
{ type: 'separator', visible: process.platform === 'darwin' },
|
|
454
|
+
{ label: `Quit ${this.appName}`, accelerator: 'CmdOrCtrl+Q', role: 'quit' },
|
|
455
|
+
],
|
|
456
|
+
},
|
|
457
|
+
{
|
|
458
|
+
label: 'Environment',
|
|
459
|
+
submenu: [
|
|
460
|
+
{
|
|
461
|
+
label: 'Show Launcher',
|
|
462
|
+
accelerator: 'CmdOrCtrl+Shift+L',
|
|
463
|
+
click: () => void this.showLauncher().catch((error) => this.actions.showError('Could not show launcher', error)),
|
|
464
|
+
},
|
|
465
|
+
{
|
|
466
|
+
label: 'Switch Environment',
|
|
467
|
+
accelerator: 'CmdOrCtrl+Shift+E',
|
|
468
|
+
click: () => void this.actions.showEnvironmentPicker().catch((error) => this.actions.showError('Could not switch environment', error)),
|
|
469
|
+
},
|
|
470
|
+
{ type: 'separator' },
|
|
471
|
+
{
|
|
472
|
+
label: 'Open Local CloudCLI',
|
|
473
|
+
accelerator: 'CmdOrCtrl+L',
|
|
474
|
+
click: () => void this.actions.openLocalInDesktop().catch((error) => this.actions.showError('Could not open local CloudCLI', error)),
|
|
475
|
+
},
|
|
476
|
+
{
|
|
477
|
+
label: 'Open Local Web UI in Browser',
|
|
478
|
+
accelerator: 'CmdOrCtrl+Shift+W',
|
|
479
|
+
click: () => void this.actions.openLocalWebUi().catch((error) => this.actions.showError('Could not open local web UI', error)),
|
|
480
|
+
},
|
|
481
|
+
{
|
|
482
|
+
label: 'Copy Local Web URL',
|
|
483
|
+
accelerator: 'CmdOrCtrl+Shift+U',
|
|
484
|
+
click: () => void this.actions.copyLocalWebUrl().catch((error) => this.actions.showError('Could not copy local web URL', error)),
|
|
485
|
+
},
|
|
486
|
+
{ type: 'separator' },
|
|
487
|
+
{
|
|
488
|
+
label: 'Keep Local Server Running After Quit',
|
|
489
|
+
type: 'checkbox',
|
|
490
|
+
checked: localState.desktopSettings.keepLocalServerRunning,
|
|
491
|
+
click: (menuItem) => void this.actions.updateDesktopSetting('keepLocalServerRunning', menuItem.checked)
|
|
492
|
+
.catch((error) => this.actions.showError('Could not update desktop setting', error)),
|
|
493
|
+
},
|
|
494
|
+
{
|
|
495
|
+
label: 'Allow LAN Access to Local Server',
|
|
496
|
+
type: 'checkbox',
|
|
497
|
+
checked: localState.desktopSettings.exposeLocalServerOnNetwork,
|
|
498
|
+
click: (menuItem) => void this.actions.updateDesktopSetting('exposeLocalServerOnNetwork', menuItem.checked)
|
|
499
|
+
.catch((error) => this.actions.showError('Could not update desktop setting', error)),
|
|
500
|
+
},
|
|
501
|
+
],
|
|
502
|
+
},
|
|
503
|
+
{
|
|
504
|
+
label: 'Cloud',
|
|
505
|
+
submenu: [
|
|
506
|
+
{
|
|
507
|
+
label: cloudAccountLabel,
|
|
508
|
+
accelerator: 'CmdOrCtrl+Shift+C',
|
|
509
|
+
click: () => void this.actions.connectCloudAccount().catch((error) => this.actions.showError('Could not connect CloudCLI account', error)),
|
|
510
|
+
},
|
|
511
|
+
{
|
|
512
|
+
label: 'Refresh Cloud Environments',
|
|
513
|
+
click: () => void this.actions.refreshCloudEnvironments().catch((error) => this.actions.showError('Could not load CloudCLI environments', error)),
|
|
514
|
+
enabled: Boolean(cloudState.account?.apiKey),
|
|
515
|
+
},
|
|
516
|
+
{
|
|
517
|
+
label: 'Logout CloudCLI Account',
|
|
518
|
+
click: () => void this.actions.clearCloudAccount().catch((error) => this.actions.showError('Could not logout', error)),
|
|
519
|
+
enabled: Boolean(cloudState.account?.apiKey),
|
|
520
|
+
},
|
|
521
|
+
{ type: 'separator' },
|
|
522
|
+
{
|
|
523
|
+
label: 'Remote Environments',
|
|
524
|
+
submenu: remoteItems,
|
|
525
|
+
},
|
|
526
|
+
],
|
|
527
|
+
},
|
|
528
|
+
{
|
|
529
|
+
label: 'Edit',
|
|
530
|
+
submenu: [
|
|
531
|
+
{ role: 'undo' },
|
|
532
|
+
{ role: 'redo' },
|
|
533
|
+
{ type: 'separator' },
|
|
534
|
+
{ role: 'cut' },
|
|
535
|
+
{ role: 'copy' },
|
|
536
|
+
{ role: 'paste' },
|
|
537
|
+
{ role: 'selectAll' },
|
|
538
|
+
],
|
|
539
|
+
},
|
|
540
|
+
{
|
|
541
|
+
label: 'View',
|
|
542
|
+
submenu: [
|
|
543
|
+
{ role: 'reload' },
|
|
544
|
+
{ role: 'forceReload' },
|
|
545
|
+
{ role: 'toggleDevTools' },
|
|
546
|
+
{
|
|
547
|
+
label: 'Open Active Tab DevTools',
|
|
548
|
+
click: () => this.openActiveTabDevTools(),
|
|
549
|
+
},
|
|
550
|
+
{
|
|
551
|
+
label: 'Copy WebContents Diagnostics',
|
|
552
|
+
click: () => this.copyWebContentsDiagnostics(),
|
|
553
|
+
},
|
|
554
|
+
{
|
|
555
|
+
label: 'Reload Active BrowserView',
|
|
556
|
+
click: () => this.reloadActiveBrowserViewForDiagnostics(),
|
|
557
|
+
},
|
|
558
|
+
{
|
|
559
|
+
label: 'Detach Active BrowserView',
|
|
560
|
+
click: () => this.detachActiveBrowserViewForDiagnostics(),
|
|
561
|
+
},
|
|
562
|
+
{ type: 'separator' },
|
|
563
|
+
{ role: 'resetZoom' },
|
|
564
|
+
{ role: 'zoomIn' },
|
|
565
|
+
{ role: 'zoomOut' },
|
|
566
|
+
{ type: 'separator' },
|
|
567
|
+
{ role: 'togglefullscreen' },
|
|
568
|
+
],
|
|
569
|
+
},
|
|
570
|
+
{
|
|
571
|
+
label: 'Window',
|
|
572
|
+
submenu: [
|
|
573
|
+
{ role: 'minimize' },
|
|
574
|
+
{ role: 'zoom' },
|
|
575
|
+
...(process.platform === 'darwin' ? [{ type: 'separator' }, { role: 'front' }] : []),
|
|
576
|
+
],
|
|
577
|
+
},
|
|
578
|
+
{
|
|
579
|
+
label: 'Help',
|
|
580
|
+
submenu: [
|
|
581
|
+
{
|
|
582
|
+
label: 'Open cloudcli.ai',
|
|
583
|
+
click: () => void this.actions.openCloudDashboard(),
|
|
584
|
+
},
|
|
585
|
+
{
|
|
586
|
+
label: 'Copy Diagnostics',
|
|
587
|
+
click: () => void this.actions.copyDiagnostics(),
|
|
588
|
+
},
|
|
589
|
+
],
|
|
590
|
+
},
|
|
591
|
+
];
|
|
592
|
+
|
|
593
|
+
Menu.setApplicationMenu(Menu.buildFromTemplate(template));
|
|
594
|
+
this.buildTrayMenu();
|
|
595
|
+
}
|
|
596
|
+
|
|
597
|
+
buildTrayMenu() {
|
|
598
|
+
if (!this.tray) return;
|
|
599
|
+
const cloudState = this.getCloudState();
|
|
600
|
+
const localState = this.getLocalState();
|
|
601
|
+
|
|
602
|
+
const template = [
|
|
603
|
+
{
|
|
604
|
+
label: 'Local',
|
|
605
|
+
submenu: [
|
|
606
|
+
{
|
|
607
|
+
label: localState.localServerRunning ? 'Open Local in CloudCLI' : 'Start Local in CloudCLI',
|
|
608
|
+
click: () => void this.actions.openLocalInDesktop().catch((error) => this.actions.showError('Could not open local CloudCLI', error)),
|
|
609
|
+
},
|
|
610
|
+
{
|
|
611
|
+
label: 'Open Local in Browser',
|
|
612
|
+
click: () => void this.actions.openLocalWebUi().catch((error) => this.actions.showError('Could not open local web UI', error)),
|
|
613
|
+
},
|
|
614
|
+
{
|
|
615
|
+
label: 'Copy Local URL',
|
|
616
|
+
click: () => void this.actions.copyLocalWebUrl().catch((error) => this.actions.showError('Could not copy local web URL', error)),
|
|
617
|
+
},
|
|
618
|
+
],
|
|
619
|
+
},
|
|
620
|
+
{
|
|
621
|
+
label: 'Cloud Environments',
|
|
622
|
+
submenu: this.buildTrayEnvironmentSection(),
|
|
623
|
+
},
|
|
624
|
+
{ type: 'separator' },
|
|
625
|
+
{
|
|
626
|
+
label: cloudState.account?.email ? `Connected: ${cloudState.account.email}` : 'Login',
|
|
627
|
+
click: () => void this.actions.connectCloudAccount().catch((error) => this.actions.showError('Could not connect CloudCLI account', error)),
|
|
628
|
+
},
|
|
629
|
+
{
|
|
630
|
+
label: 'Logout CloudCLI Account',
|
|
631
|
+
click: () => void this.actions.clearCloudAccount().catch((error) => this.actions.showError('Could not logout', error)),
|
|
632
|
+
enabled: Boolean(cloudState.account?.apiKey),
|
|
633
|
+
},
|
|
634
|
+
{ type: 'separator' },
|
|
635
|
+
{
|
|
636
|
+
label: `Quit ${this.appName}`,
|
|
637
|
+
role: 'quit',
|
|
638
|
+
},
|
|
639
|
+
];
|
|
640
|
+
|
|
641
|
+
this.tray.setToolTip(`${this.appName}${this.actions.getActiveTarget()?.name ? ` - ${this.actions.getActiveTarget().name}` : ''}`);
|
|
642
|
+
this.tray.setContextMenu(Menu.buildFromTemplate(template));
|
|
643
|
+
}
|
|
644
|
+
|
|
645
|
+
async showDesktopSettings() {
|
|
646
|
+
if (!this.mainWindow) return this.getDesktopState();
|
|
647
|
+
await this.ensureSettingsWindow('desktop-settings');
|
|
648
|
+
return this.getDesktopState();
|
|
649
|
+
}
|
|
650
|
+
|
|
651
|
+
async showLocalSettings() {
|
|
652
|
+
if (!this.mainWindow) return this.getDesktopState();
|
|
653
|
+
await this.ensureSettingsWindow('local-settings');
|
|
654
|
+
return this.getDesktopState();
|
|
655
|
+
}
|
|
656
|
+
|
|
657
|
+
async showActiveEnvironmentActionsMenu() {
|
|
658
|
+
if (!this.mainWindow) return this.getDesktopState();
|
|
659
|
+
const activeTarget = this.actions.getActiveTarget();
|
|
660
|
+
if (activeTarget?.kind !== 'remote') return this.getDesktopState();
|
|
661
|
+
|
|
662
|
+
const environment = this.getCloudState().environments.find((item) => item.id === activeTarget.id);
|
|
663
|
+
if (!environment) return this.getDesktopState();
|
|
664
|
+
|
|
665
|
+
const menu = Menu.buildFromTemplate(this.buildEnvironmentActionsSubmenu(environment));
|
|
666
|
+
menu.popup({ window: this.mainWindow });
|
|
667
|
+
return this.getDesktopState();
|
|
668
|
+
}
|
|
669
|
+
|
|
670
|
+
async showEnvironmentActionsMenu(environmentId) {
|
|
671
|
+
if (!this.mainWindow) return this.getDesktopState();
|
|
672
|
+
const environment = this.getCloudState().environments.find((item) => item.id === environmentId);
|
|
673
|
+
if (!environment) return this.getDesktopState();
|
|
674
|
+
|
|
675
|
+
const menu = Menu.buildFromTemplate(this.buildEnvironmentActionsSubmenu(environment));
|
|
676
|
+
menu.popup({ window: this.mainWindow });
|
|
677
|
+
return this.getDesktopState();
|
|
678
|
+
}
|
|
679
|
+
|
|
680
|
+
configurePermissions() {
|
|
681
|
+
const isAllowedPermission = (webContents, permission) => {
|
|
682
|
+
const sourceUrl = webContents.getURL();
|
|
683
|
+
const allowedPermissions = new Set(['clipboard-read', 'media', 'notifications']);
|
|
684
|
+
return isAllowedPermissionOrigin(sourceUrl, this.getCloudState().controlPlaneUrl) && allowedPermissions.has(permission);
|
|
685
|
+
};
|
|
686
|
+
|
|
687
|
+
session.defaultSession.setPermissionRequestHandler((webContents, permission, callback) => {
|
|
688
|
+
callback(isAllowedPermission(webContents, permission));
|
|
689
|
+
});
|
|
690
|
+
session.defaultSession.setPermissionCheckHandler((webContents, permission) => {
|
|
691
|
+
if (!webContents) return false;
|
|
692
|
+
return isAllowedPermission(webContents, permission);
|
|
693
|
+
});
|
|
694
|
+
}
|
|
695
|
+
|
|
696
|
+
createTray() {
|
|
697
|
+
if (this.tray) return;
|
|
698
|
+
this.tray = new Tray(this.getTrayImage());
|
|
699
|
+
this.tray.on('click', () => {
|
|
700
|
+
if (!this.mainWindow) return;
|
|
701
|
+
if (this.mainWindow.isVisible()) {
|
|
702
|
+
this.mainWindow.focus();
|
|
703
|
+
} else {
|
|
704
|
+
this.mainWindow.show();
|
|
705
|
+
}
|
|
706
|
+
});
|
|
707
|
+
this.buildTrayMenu();
|
|
708
|
+
}
|
|
709
|
+
|
|
710
|
+
async createWindow() {
|
|
711
|
+
this.mainWindow = new BrowserWindow({
|
|
712
|
+
width: 1440,
|
|
713
|
+
height: 960,
|
|
714
|
+
minWidth: 1024,
|
|
715
|
+
minHeight: 720,
|
|
716
|
+
show: false,
|
|
717
|
+
backgroundColor: '#0f172a',
|
|
718
|
+
title: this.appName,
|
|
719
|
+
icon: this.getWindowIconPath(),
|
|
720
|
+
titleBarStyle: 'hidden',
|
|
721
|
+
...(process.platform === 'darwin'
|
|
722
|
+
? { trafficLightPosition: { x: 18, y: 14 } }
|
|
723
|
+
: {
|
|
724
|
+
titleBarOverlay: {
|
|
725
|
+
color: nativeTheme.shouldUseDarkColors ? '#111111' : '#f7f8fa',
|
|
726
|
+
symbolColor: nativeTheme.shouldUseDarkColors ? '#a1a1a1' : '#5b6470',
|
|
727
|
+
height: 44,
|
|
728
|
+
},
|
|
729
|
+
}),
|
|
730
|
+
webPreferences: {
|
|
731
|
+
contextIsolation: true,
|
|
732
|
+
nodeIntegration: false,
|
|
733
|
+
sandbox: true,
|
|
734
|
+
preload: this.getPreloadPath(),
|
|
735
|
+
},
|
|
736
|
+
});
|
|
737
|
+
|
|
738
|
+
this.mainWindow.once('ready-to-show', () => {
|
|
739
|
+
this.mainWindow?.show();
|
|
740
|
+
});
|
|
741
|
+
|
|
742
|
+
this.mainWindow.webContents.setWindowOpenHandler(({ url }) => {
|
|
743
|
+
void this.openExternalUrl(url).catch((error) => this.actions.showError('Could not open external link', error));
|
|
744
|
+
return { action: 'deny' };
|
|
745
|
+
});
|
|
746
|
+
|
|
747
|
+
this.mainWindow.on('resize', () => {
|
|
748
|
+
this.viewHost.resizeActiveView();
|
|
749
|
+
this.syncSettingsWindowBounds();
|
|
750
|
+
});
|
|
751
|
+
|
|
752
|
+
this.mainWindow.on('move', () => {
|
|
753
|
+
this.syncSettingsWindowBounds();
|
|
754
|
+
});
|
|
755
|
+
|
|
756
|
+
this.mainWindow.on('closed', () => {
|
|
757
|
+
this.viewHost.clear();
|
|
758
|
+
this.settingsWindow = null;
|
|
759
|
+
this.mainWindow = null;
|
|
760
|
+
this.launcherLoaded = false;
|
|
761
|
+
});
|
|
762
|
+
|
|
763
|
+
this.buildAppMenu();
|
|
764
|
+
await this.showLauncher();
|
|
765
|
+
}
|
|
766
|
+
}
|