mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
153 lines
3.9 KiB
TypeScript
153 lines
3.9 KiB
TypeScript
import { useEffect, useRef, useCallback, useMemo } from "react"
|
|
import { useApp } from "ink"
|
|
import { randomUUID } from "crypto"
|
|
import type { ExtensionMessage, WebviewMessage } from "@roo-code/types"
|
|
|
|
import { ExtensionHostInterface, ExtensionHostOptions } from "@/agent/index.js"
|
|
|
|
import { useCLIStore } from "../store.js"
|
|
|
|
// TODO: Unify with TUIAppProps?
|
|
export interface UseExtensionHostOptions extends ExtensionHostOptions {
|
|
initialPrompt?: string
|
|
onExtensionMessage: (msg: ExtensionMessage) => void
|
|
createExtensionHost: (options: ExtensionHostOptions) => ExtensionHostInterface
|
|
}
|
|
|
|
export interface UseExtensionHostReturn {
|
|
isReady: boolean
|
|
sendToExtension: ((msg: WebviewMessage) => void) | null
|
|
runTask: ((prompt: string) => Promise<void>) | null
|
|
cleanup: () => Promise<void>
|
|
}
|
|
|
|
/**
|
|
* Hook to manage the extension host lifecycle.
|
|
*
|
|
* Responsibilities:
|
|
* - Initialize the extension host
|
|
* - Set up event listeners for messages, task completion, and errors
|
|
* - Handle cleanup/disposal
|
|
* - Expose methods for sending messages and running tasks
|
|
*/
|
|
export function useExtensionHost({
|
|
initialPrompt,
|
|
mode,
|
|
reasoningEffort,
|
|
user,
|
|
provider,
|
|
apiKey,
|
|
model,
|
|
workspacePath,
|
|
extensionPath,
|
|
nonInteractive,
|
|
ephemeral,
|
|
debug,
|
|
exitOnComplete,
|
|
onExtensionMessage,
|
|
createExtensionHost,
|
|
}: UseExtensionHostOptions): UseExtensionHostReturn {
|
|
const { exit } = useApp()
|
|
const { addMessage, setComplete, setLoading, setHasStartedTask, setError } = useCLIStore()
|
|
|
|
const hostRef = useRef<ExtensionHostInterface | null>(null)
|
|
const isReadyRef = useRef(false)
|
|
|
|
const cleanup = useCallback(async () => {
|
|
if (hostRef.current) {
|
|
await hostRef.current.dispose()
|
|
hostRef.current = null
|
|
isReadyRef.current = false
|
|
}
|
|
}, [])
|
|
|
|
useEffect(() => {
|
|
const init = async () => {
|
|
try {
|
|
const host = createExtensionHost({
|
|
mode,
|
|
user,
|
|
reasoningEffort,
|
|
provider,
|
|
apiKey,
|
|
model,
|
|
workspacePath,
|
|
extensionPath,
|
|
nonInteractive,
|
|
ephemeral,
|
|
debug,
|
|
exitOnComplete,
|
|
disableOutput: true,
|
|
})
|
|
|
|
hostRef.current = host
|
|
isReadyRef.current = true
|
|
|
|
host.on("extensionWebviewMessage", (msg) => onExtensionMessage(msg as ExtensionMessage))
|
|
|
|
host.client.on("taskCompleted", async () => {
|
|
setComplete(true)
|
|
setLoading(false)
|
|
|
|
if (exitOnComplete) {
|
|
await cleanup()
|
|
exit()
|
|
setTimeout(() => process.exit(0), 100)
|
|
}
|
|
})
|
|
|
|
host.client.on("error", (err: Error) => {
|
|
setError(err.message)
|
|
setLoading(false)
|
|
})
|
|
|
|
await host.activate()
|
|
|
|
// Request initial state from extension (triggers
|
|
// postStateToWebview which includes taskHistory).
|
|
host.sendToExtension({ type: "requestCommands" })
|
|
host.sendToExtension({ type: "requestModes" })
|
|
|
|
setLoading(false)
|
|
|
|
if (initialPrompt) {
|
|
setHasStartedTask(true)
|
|
setLoading(true)
|
|
addMessage({ id: randomUUID(), role: "user", content: initialPrompt })
|
|
await host.runTask(initialPrompt)
|
|
}
|
|
} catch (err) {
|
|
setError(err instanceof Error ? err.message : String(err))
|
|
setLoading(false)
|
|
}
|
|
}
|
|
|
|
init()
|
|
|
|
return () => {
|
|
cleanup()
|
|
}
|
|
}, []) // Run once on mount
|
|
|
|
// Stable sendToExtension - uses ref to always access current host.
|
|
// This function reference never changes, preventing downstream
|
|
// useCallback/useMemo invalidations.
|
|
const sendToExtension = useCallback((msg: WebviewMessage) => {
|
|
hostRef.current?.sendToExtension(msg)
|
|
}, [])
|
|
|
|
// Stable runTask - uses ref to always access current host.
|
|
const runTask = useCallback((prompt: string): Promise<void> => {
|
|
if (!hostRef.current) {
|
|
return Promise.reject(new Error("Extension host not ready"))
|
|
}
|
|
|
|
return hostRef.current.runTask(prompt)
|
|
}, [])
|
|
|
|
// Memoized return object to prevent unnecessary re-renders in consumers.
|
|
return useMemo(
|
|
() => ({ isReady: isReadyRef.current, sendToExtension, runTask, cleanup }),
|
|
[sendToExtension, runTask, cleanup],
|
|
)
|
|
}
|