feat: restore dev console link and show gateway token (#15)

This commit is contained in:
Felix
2026-02-09 18:04:12 +08:00
committed by GitHub
Unverified
parent 5eea27d196
commit ba53fa5ab2
3 changed files with 171 additions and 21 deletions

View File

@@ -64,8 +64,21 @@ export function Sidebar() {
const setSidebarCollapsed = useSettingsStore((state) => state.setSidebarCollapsed); const setSidebarCollapsed = useSettingsStore((state) => state.setSidebarCollapsed);
const devModeUnlocked = useSettingsStore((state) => state.devModeUnlocked); const devModeUnlocked = useSettingsStore((state) => state.devModeUnlocked);
const openDevConsole = () => { const openDevConsole = async () => {
window.electron.openExternal('http://localhost:18789'); try {
const result = await window.electron.ipcRenderer.invoke('gateway:getControlUiUrl') as {
success: boolean;
url?: string;
error?: string;
};
if (result.success && result.url) {
window.electron.openExternal(result.url);
} else {
console.error('Failed to get Dev Console URL:', result.error);
}
} catch (err) {
console.error('Error opening Dev Console:', err);
}
}; };
const navItems = [ const navItems = [

View File

@@ -11,6 +11,7 @@ import {
Clock, Clock,
Settings, Settings,
Plus, Plus,
Terminal,
} from 'lucide-react'; } from 'lucide-react';
import { Link } from 'react-router-dom'; import { Link } from 'react-router-dom';
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/components/ui/card'; import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/components/ui/card';
@@ -19,12 +20,14 @@ import { Badge } from '@/components/ui/badge';
import { useGatewayStore } from '@/stores/gateway'; import { useGatewayStore } from '@/stores/gateway';
import { useChannelsStore } from '@/stores/channels'; import { useChannelsStore } from '@/stores/channels';
import { useSkillsStore } from '@/stores/skills'; import { useSkillsStore } from '@/stores/skills';
import { useSettingsStore } from '@/stores/settings';
import { StatusBadge } from '@/components/common/StatusBadge'; import { StatusBadge } from '@/components/common/StatusBadge';
export function Dashboard() { export function Dashboard() {
const gatewayStatus = useGatewayStore((state) => state.status); const gatewayStatus = useGatewayStore((state) => state.status);
const { channels, fetchChannels } = useChannelsStore(); const { channels, fetchChannels } = useChannelsStore();
const { skills, fetchSkills } = useSkillsStore(); const { skills, fetchSkills } = useSkillsStore();
const devModeUnlocked = useSettingsStore((state) => state.devModeUnlocked);
const isGatewayRunning = gatewayStatus.state === 'running'; const isGatewayRunning = gatewayStatus.state === 'running';
const [uptime, setUptime] = useState(0); const [uptime, setUptime] = useState(0);
@@ -60,6 +63,23 @@ export function Dashboard() {
return () => clearInterval(interval); return () => clearInterval(interval);
}, [gatewayStatus.connectedAt]); }, [gatewayStatus.connectedAt]);
const openDevConsole = async () => {
try {
const result = await window.electron.ipcRenderer.invoke('gateway:getControlUiUrl') as {
success: boolean;
url?: string;
error?: string;
};
if (result.success && result.url) {
window.electron.openExternal(result.url);
} else {
console.error('Failed to get Dev Console URL:', result.error);
}
} catch (err) {
console.error('Error opening Dev Console:', err);
}
};
return ( return (
<div className="space-y-6"> <div className="space-y-6">
{/* Status Cards */} {/* Status Cards */}
@@ -159,6 +179,16 @@ export function Dashboard() {
<span>Settings</span> <span>Settings</span>
</Link> </Link>
</Button> </Button>
{devModeUnlocked && (
<Button
variant="outline"
className="h-auto flex-col gap-2 py-4"
onClick={openDevConsole}
>
<Terminal className="h-5 w-5" />
<span>Dev Console</span>
</Button>
)}
</div> </div>
</CardContent> </CardContent>
</Card> </Card>

View File

@@ -2,6 +2,7 @@
* Settings Page * Settings Page
* Application configuration * Application configuration
*/ */
import { useState } from 'react';
import { import {
Sun, Sun,
Moon, Moon,
@@ -11,6 +12,7 @@ import {
ExternalLink, ExternalLink,
Key, Key,
Download, Download,
Copy,
} from 'lucide-react'; } from 'lucide-react';
import { Button } from '@/components/ui/button'; import { Button } from '@/components/ui/button';
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/components/ui/card'; import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/components/ui/card';
@@ -18,11 +20,18 @@ import { Label } from '@/components/ui/label';
import { Switch } from '@/components/ui/switch'; import { Switch } from '@/components/ui/switch';
import { Separator } from '@/components/ui/separator'; import { Separator } from '@/components/ui/separator';
import { Badge } from '@/components/ui/badge'; import { Badge } from '@/components/ui/badge';
import { Input } from '@/components/ui/input';
import { toast } from 'sonner';
import { useSettingsStore } from '@/stores/settings'; import { useSettingsStore } from '@/stores/settings';
import { useGatewayStore } from '@/stores/gateway'; import { useGatewayStore } from '@/stores/gateway';
import { useUpdateStore } from '@/stores/update'; import { useUpdateStore } from '@/stores/update';
import { ProvidersSettings } from '@/components/settings/ProvidersSettings'; import { ProvidersSettings } from '@/components/settings/ProvidersSettings';
import { UpdateSettings } from '@/components/settings/UpdateSettings'; import { UpdateSettings } from '@/components/settings/UpdateSettings';
type ControlUiInfo = {
url: string;
token: string;
port: number;
};
export function Settings() { export function Settings() {
const { const {
@@ -35,14 +44,58 @@ export function Settings() {
autoDownloadUpdate, autoDownloadUpdate,
setAutoDownloadUpdate, setAutoDownloadUpdate,
devModeUnlocked, devModeUnlocked,
setDevModeUnlocked,
} = useSettingsStore(); } = useSettingsStore();
const { status: gatewayStatus, restart: restartGateway } = useGatewayStore(); const { status: gatewayStatus, restart: restartGateway } = useGatewayStore();
const currentVersion = useUpdateStore((state) => state.currentVersion); const currentVersion = useUpdateStore((state) => state.currentVersion);
const [controlUiInfo, setControlUiInfo] = useState<ControlUiInfo | null>(null);
// Open developer console // Open developer console
const openDevConsole = () => { const openDevConsole = async () => {
window.electron.openExternal('http://localhost:18789'); try {
const result = await window.electron.ipcRenderer.invoke('gateway:getControlUiUrl') as {
success: boolean;
url?: string;
token?: string;
port?: number;
error?: string;
};
if (result.success && result.url && result.token && typeof result.port === 'number') {
setControlUiInfo({ url: result.url, token: result.token, port: result.port });
window.electron.openExternal(result.url);
} else {
console.error('Failed to get Dev Console URL:', result.error);
}
} catch (err) {
console.error('Error opening Dev Console:', err);
}
};
const refreshControlUiInfo = async () => {
try {
const result = await window.electron.ipcRenderer.invoke('gateway:getControlUiUrl') as {
success: boolean;
url?: string;
token?: string;
port?: number;
};
if (result.success && result.url && result.token && typeof result.port === 'number') {
setControlUiInfo({ url: result.url, token: result.token, port: result.port });
}
} catch {
// Ignore refresh errors
}
};
const handleCopyGatewayToken = async () => {
if (!controlUiInfo?.token) return;
try {
await navigator.clipboard.writeText(controlUiInfo.token);
toast.success('Gateway token copied');
} catch (error) {
toast.error(`Failed to copy token: ${String(error)}`);
}
}; };
return ( return (
@@ -199,30 +252,84 @@ export function Settings() {
</CardContent> </CardContent>
</Card> </Card>
{/* Advanced */}
<Card>
<CardHeader>
<CardTitle>Advanced</CardTitle>
<CardDescription>Power-user options</CardDescription>
</CardHeader>
<CardContent className="space-y-4">
<div className="flex items-center justify-between">
<div>
<Label>Developer Mode</Label>
<p className="text-sm text-muted-foreground">
Show developer tools and shortcuts
</p>
</div>
<Switch
checked={devModeUnlocked}
onCheckedChange={setDevModeUnlocked}
/>
</div>
</CardContent>
</Card>
{/* Developer */} {/* Developer */}
{devModeUnlocked && ( {devModeUnlocked && (
<Card> <Card>
<CardHeader> <CardHeader>
<CardTitle>Developer</CardTitle> <CardTitle>Developer</CardTitle>
<CardDescription>Advanced options for developers</CardDescription> <CardDescription>Advanced options for developers</CardDescription>
</CardHeader> </CardHeader>
<CardContent className="space-y-4"> <CardContent className="space-y-4">
<div className="space-y-2"> <div className="space-y-2">
<Label>OpenClaw Console</Label> <Label>OpenClaw Console</Label>
<p className="text-sm text-muted-foreground">
Access the native OpenClaw management interface
</p>
<Button variant="outline" onClick={openDevConsole}>
<Terminal className="h-4 w-4 mr-2" />
Open Developer Console
<ExternalLink className="h-3 w-3 ml-2" />
</Button>
<p className="text-xs text-muted-foreground">
Opens the Control UI with gateway token injected
</p>
<div className="space-y-2 pt-2">
<Label>Gateway Token</Label>
<p className="text-sm text-muted-foreground"> <p className="text-sm text-muted-foreground">
Access the native OpenClaw management interface Paste this into Control UI settings if prompted
</p>
<Button variant="outline" onClick={openDevConsole}>
<Terminal className="h-4 w-4 mr-2" />
Open Developer Console
<ExternalLink className="h-3 w-3 ml-2" />
</Button>
<p className="text-xs text-muted-foreground">
Opens http://localhost:18789 in your browser
</p> </p>
<div className="flex gap-2">
<Input
readOnly
value={controlUiInfo?.token || ''}
placeholder="Token unavailable"
className="font-mono"
/>
<Button
type="button"
variant="outline"
onClick={refreshControlUiInfo}
disabled={!devModeUnlocked}
>
<RefreshCw className="h-4 w-4 mr-2" />
Load
</Button>
<Button
type="button"
variant="outline"
onClick={handleCopyGatewayToken}
disabled={!controlUiInfo?.token}
>
<Copy className="h-4 w-4 mr-2" />
Copy
</Button>
</div>
</div> </div>
</CardContent> </div>
</Card> </CardContent>
</Card>
)} )}
{/* About */} {/* About */}