refactor: unify tool-starting logic with shared useStartTool hook

- New useStartTool hook: calls working createInstance+startInstance API
- WorkspacesPage: uses shared hook instead of inline createInstance logic
- WorkspaceDetailPage ToolsTab: uses shared hook instead of broken createWorkspaceInstance
- Both pages now use identical StartToolModal + identical start logic

Quality gates: tsc --noEmit clean
This commit is contained in:
2026-06-01 20:58:25 +02:00
parent 398436ecb5
commit ff8aa2a4f5
3 changed files with 91 additions and 34 deletions
+64
View File
@@ -0,0 +1,64 @@
/** Shared hook for starting a tool on a workspace. */
import { useCallback, useState } from "react";
import { createInstance, startInstance } from "../api/sessions";
import type { Workspace } from "../types/workspace";
import type { ToolInstance } from "../api/sessions";
export interface UseStartToolResult {
starting: boolean;
error: string | null;
startTool: (
workspace: Workspace,
toolTypeId: string,
displayName?: string,
configProfileId?: string,
) => Promise<ToolInstance | null>;
}
export function useStartTool(): UseStartToolResult {
const [starting, setStarting] = useState(false);
const [error, setError] = useState<string | null>(null);
const startTool = useCallback(
async (
workspace: Workspace,
toolTypeId: string,
displayName?: string,
configProfileId?: string,
): Promise<ToolInstance | null> => {
setStarting(true);
setError(null);
try {
const instance = await createInstance(
workspace.project_id,
workspace.repo_id,
toolTypeId,
displayName || workspace.name,
undefined,
undefined,
undefined,
configProfileId,
[],
workspace.id,
);
await startInstance(
workspace.project_id,
workspace.repo_id,
instance.id,
configProfileId,
);
return instance;
} catch (err) {
const msg = err instanceof Error ? err.message : "Failed to start tool";
setError(msg);
return null;
} finally {
setStarting(false);
}
},
[],
);
return { starting, error, startTool };
}