mirror of
https://github.com/pacnpal/Roo-Code.git
synced 2025-12-20 12:21:13 -05:00
493 lines
20 KiB
TypeScript
493 lines
20 KiB
TypeScript
import * as vscode from "vscode"
|
|
import { ClaudeDev } from "../ClaudeDev"
|
|
import { ApiModelId, ApiProvider } from "../shared/api"
|
|
import { ExtensionMessage } from "../shared/ExtensionMessage"
|
|
import { WebviewMessage } from "../shared/WebviewMessage"
|
|
import { downloadTask, getNonce, getUri, selectImages } from "../utils"
|
|
/*
|
|
https://github.com/microsoft/vscode-webview-ui-toolkit-samples/blob/main/default/weather-webview/src/providers/WeatherViewProvider.ts
|
|
|
|
https://github.com/KumarVariable/vscode-extension-sidebar-html/blob/master/src/customSidebarViewProvider.ts
|
|
*/
|
|
|
|
type SecretKey = "apiKey" | "openRouterApiKey" | "awsAccessKey" | "awsSecretKey"
|
|
type GlobalStateKey = "apiProvider" | "apiModelId" | "awsRegion" | "maxRequestsPerTask" | "lastShownAnnouncementId"
|
|
|
|
export class ClaudeDevProvider implements vscode.WebviewViewProvider {
|
|
public static readonly sideBarId = "claude-dev.SidebarProvider" // used in package.json as the view's id. This value cannot be changed due to how vscode caches views based on their id, and updating the id would break existing instances of the extension.
|
|
public static readonly tabPanelId = "claude-dev.TabPanelProvider"
|
|
private disposables: vscode.Disposable[] = []
|
|
private view?: vscode.WebviewView | vscode.WebviewPanel
|
|
private claudeDev?: ClaudeDev
|
|
private latestAnnouncementId = "aug-10-2024" // update to some unique identifier when we add a new announcement
|
|
|
|
constructor(
|
|
private readonly context: vscode.ExtensionContext,
|
|
private readonly outputChannel: vscode.OutputChannel
|
|
) {
|
|
this.outputChannel.appendLine("ClaudeDevProvider instantiated")
|
|
}
|
|
|
|
/*
|
|
VSCode extensions use the disposable pattern to clean up resources when the sidebar/editor tab is closed by the user or system. This applies to event listening, commands, interacting with the UI, etc.
|
|
- https://vscode-docs.readthedocs.io/en/stable/extensions/patterns-and-principles/
|
|
- https://github.com/microsoft/vscode-extension-samples/blob/main/webview-sample/src/extension.ts
|
|
*/
|
|
async dispose() {
|
|
this.outputChannel.appendLine("Disposing ClaudeDevProvider...")
|
|
await this.clearTask()
|
|
this.outputChannel.appendLine("Cleared task")
|
|
if (this.view && "dispose" in this.view) {
|
|
this.view.dispose()
|
|
this.outputChannel.appendLine("Disposed webview")
|
|
}
|
|
while (this.disposables.length) {
|
|
const x = this.disposables.pop()
|
|
if (x) {
|
|
x.dispose()
|
|
}
|
|
}
|
|
this.outputChannel.appendLine("Disposed all disposables")
|
|
}
|
|
|
|
resolveWebviewView(
|
|
webviewView: vscode.WebviewView | vscode.WebviewPanel
|
|
//context: vscode.WebviewViewResolveContext<unknown>, used to recreate a deallocated webview, but we don't need this since we use retainContextWhenHidden
|
|
//token: vscode.CancellationToken
|
|
): void | Thenable<void> {
|
|
this.outputChannel.appendLine("Resolving webview view")
|
|
this.view = webviewView
|
|
|
|
webviewView.webview.options = {
|
|
// Allow scripts in the webview
|
|
enableScripts: true,
|
|
localResourceRoots: [this.context.extensionUri],
|
|
}
|
|
webviewView.webview.html = this.getHtmlContent(webviewView.webview)
|
|
|
|
// Sets up an event listener to listen for messages passed from the webview view context
|
|
// and executes code based on the message that is recieved
|
|
this.setWebviewMessageListener(webviewView.webview)
|
|
|
|
// Logs show up in bottom panel > Debug Console
|
|
//console.log("registering listener")
|
|
|
|
// Listen for when the panel becomes visible
|
|
// https://github.com/microsoft/vscode-discussions/discussions/840
|
|
if ("onDidChangeViewState" in webviewView) {
|
|
// WebviewView and WebviewPanel have all the same properties except for this visibility listener
|
|
// panel
|
|
webviewView.onDidChangeViewState(
|
|
() => {
|
|
if (this.view?.visible) {
|
|
this.postMessageToWebview({ type: "action", action: "didBecomeVisible" })
|
|
}
|
|
},
|
|
null,
|
|
this.disposables
|
|
)
|
|
} else if ("onDidChangeVisibility" in webviewView) {
|
|
// sidebar
|
|
webviewView.onDidChangeVisibility(
|
|
() => {
|
|
if (this.view?.visible) {
|
|
this.postMessageToWebview({ type: "action", action: "didBecomeVisible" })
|
|
}
|
|
},
|
|
null,
|
|
this.disposables
|
|
)
|
|
}
|
|
|
|
// Listen for when the view is disposed
|
|
// This happens when the user closes the view or when the view is closed programmatically
|
|
webviewView.onDidDispose(
|
|
async () => {
|
|
await this.dispose()
|
|
},
|
|
null,
|
|
this.disposables
|
|
)
|
|
|
|
// Listen for when color changes
|
|
vscode.workspace.onDidChangeConfiguration(
|
|
(e) => {
|
|
if (e && e.affectsConfiguration("workbench.colorTheme")) {
|
|
// Sends latest theme name to webview
|
|
this.postStateToWebview()
|
|
}
|
|
},
|
|
null,
|
|
this.disposables
|
|
)
|
|
|
|
// if the extension is starting a new session, clear previous task state
|
|
this.clearTask()
|
|
|
|
// Clear previous version's (0.0.6) claudeMessage cache from workspace state. We now store in global state with a unique identifier for each provider instance. We need to store globally rather than per workspace to eventually implement task history
|
|
this.updateWorkspaceState("claudeMessages", undefined)
|
|
|
|
this.outputChannel.appendLine("Webview view resolved")
|
|
}
|
|
|
|
async initClaudeDevWithTask(task?: string, images?: string[]) {
|
|
await this.clearTask() // ensures that an exising task doesn't exist before starting a new one, although this shouldn't be possible since user must clear task before starting a new one
|
|
const { maxRequestsPerTask, apiConfiguration } = await this.getState()
|
|
this.claudeDev = new ClaudeDev(this, apiConfiguration, maxRequestsPerTask, task, images)
|
|
}
|
|
|
|
// Send any JSON serializable data to the react app
|
|
async postMessageToWebview(message: ExtensionMessage) {
|
|
await this.view?.webview.postMessage(message)
|
|
}
|
|
|
|
/**
|
|
* Defines and returns the HTML that should be rendered within the webview panel.
|
|
*
|
|
* @remarks This is also the place where references to the React webview build files
|
|
* are created and inserted into the webview HTML.
|
|
*
|
|
* @param webview A reference to the extension webview
|
|
* @param extensionUri The URI of the directory containing the extension
|
|
* @returns A template string literal containing the HTML that should be
|
|
* rendered within the webview panel
|
|
*/
|
|
private getHtmlContent(webview: vscode.Webview): string {
|
|
// Get the local path to main script run in the webview,
|
|
// then convert it to a uri we can use in the webview.
|
|
|
|
// The CSS file from the React build output
|
|
const stylesUri = getUri(webview, this.context.extensionUri, [
|
|
"webview-ui",
|
|
"build",
|
|
"static",
|
|
"css",
|
|
"main.css",
|
|
])
|
|
// The JS file from the React build output
|
|
const scriptUri = getUri(webview, this.context.extensionUri, ["webview-ui", "build", "static", "js", "main.js"])
|
|
|
|
// The codicon font from the React build output
|
|
// https://github.com/microsoft/vscode-extension-samples/blob/main/webview-codicons-sample/src/extension.ts
|
|
// we installed this package in the extension so that we can access it how its intended from the extension (the font file is likely bundled in vscode), and we just import the css fileinto our react app we don't have access to it
|
|
// don't forget to add font-src ${webview.cspSource};
|
|
const codiconsUri = getUri(webview, this.context.extensionUri, [
|
|
"node_modules",
|
|
"@vscode",
|
|
"codicons",
|
|
"dist",
|
|
"codicon.css",
|
|
])
|
|
|
|
// const scriptUri = webview.asWebviewUri(vscode.Uri.joinPath(this._extensionUri, "assets", "main.js"))
|
|
|
|
// const styleResetUri = webview.asWebviewUri(vscode.Uri.joinPath(this._extensionUri, "assets", "reset.css"))
|
|
// const styleVSCodeUri = webview.asWebviewUri(vscode.Uri.joinPath(this._extensionUri, "assets", "vscode.css"))
|
|
|
|
// // Same for stylesheet
|
|
// const stylesheetUri = webview.asWebviewUri(vscode.Uri.joinPath(this._extensionUri, "assets", "main.css"))
|
|
|
|
// Use a nonce to only allow a specific script to be run.
|
|
/*
|
|
content security policy of your webview to only allow scripts that have a specific nonce
|
|
create a content security policy meta tag so that only loading scripts with a nonce is allowed
|
|
As your extension grows you will likely want to add custom styles, fonts, and/or images to your webview. If you do, you will need to update the content security policy meta tag to explicity allow for these resources. E.g.
|
|
<meta http-equiv="Content-Security-Policy" content="default-src 'none'; style-src ${webview.cspSource}; font-src ${webview.cspSource}; img-src ${webview.cspSource} https:; script-src 'nonce-${nonce}';">
|
|
- 'unsafe-inline' is required for styles due to vscode-webview-toolkit's dynamic style injection
|
|
- since we pass base64 images to the webview, we need to specify img-src ${webview.cspSource} data:;
|
|
|
|
in meta tag we add nonce attribute: A cryptographic nonce (only used once) to allow scripts. The server must generate a unique nonce value each time it transmits a policy. It is critical to provide a nonce that cannot be guessed as bypassing a resource's policy is otherwise trivial.
|
|
*/
|
|
const nonce = getNonce()
|
|
|
|
// Tip: Install the es6-string-html VS Code extension to enable code highlighting below
|
|
return /*html*/ `
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no">
|
|
<meta name="theme-color" content="#000000">
|
|
<meta http-equiv="Content-Security-Policy" content="default-src 'none'; font-src ${webview.cspSource}; style-src ${webview.cspSource} 'unsafe-inline'; img-src ${webview.cspSource} data:; script-src 'nonce-${nonce}';">
|
|
<link rel="stylesheet" type="text/css" href="${stylesUri}">
|
|
<link href="${codiconsUri}" rel="stylesheet" />
|
|
<title>Claude Dev</title>
|
|
</head>
|
|
<body>
|
|
<noscript>You need to enable JavaScript to run this app.</noscript>
|
|
<div id="root"></div>
|
|
<script nonce="${nonce}" src="${scriptUri}"></script>
|
|
</body>
|
|
</html>
|
|
`
|
|
}
|
|
|
|
/**
|
|
* Sets up an event listener to listen for messages passed from the webview context and
|
|
* executes code based on the message that is recieved.
|
|
*
|
|
* @param webview A reference to the extension webview
|
|
*/
|
|
private setWebviewMessageListener(webview: vscode.Webview) {
|
|
webview.onDidReceiveMessage(
|
|
async (message: WebviewMessage) => {
|
|
switch (message.type) {
|
|
case "webviewDidLaunch":
|
|
await this.postStateToWebview()
|
|
break
|
|
case "newTask":
|
|
// Code that should run in response to the hello message command
|
|
//vscode.window.showInformationMessage(message.text!)
|
|
|
|
// Send a message to our webview.
|
|
// You can send any JSON serializable data.
|
|
// Could also do this in extension .ts
|
|
//this.postMessageToWebview({ type: "text", text: `Extension: ${Date.now()}` })
|
|
// initializing new instance of ClaudeDev will make sure that any agentically running promises in old instance don't affect our new task. this essentially creates a fresh slate for the new task
|
|
await this.initClaudeDevWithTask(message.text, message.images)
|
|
break
|
|
case "apiConfiguration":
|
|
if (message.apiConfiguration) {
|
|
const {
|
|
apiProvider,
|
|
apiModelId,
|
|
apiKey,
|
|
openRouterApiKey,
|
|
awsAccessKey,
|
|
awsSecretKey,
|
|
awsRegion,
|
|
} = message.apiConfiguration
|
|
await this.updateGlobalState("apiProvider", apiProvider)
|
|
await this.updateGlobalState("apiModelId", apiModelId)
|
|
await this.storeSecret("apiKey", apiKey)
|
|
await this.storeSecret("openRouterApiKey", openRouterApiKey)
|
|
await this.storeSecret("awsAccessKey", awsAccessKey)
|
|
await this.storeSecret("awsSecretKey", awsSecretKey)
|
|
await this.updateGlobalState("awsRegion", awsRegion)
|
|
this.claudeDev?.updateApi(message.apiConfiguration)
|
|
}
|
|
await this.postStateToWebview()
|
|
break
|
|
case "maxRequestsPerTask":
|
|
let result: number | undefined = undefined
|
|
if (message.text && message.text.trim()) {
|
|
const num = Number(message.text)
|
|
if (!isNaN(num)) {
|
|
result = num
|
|
}
|
|
}
|
|
await this.updateGlobalState("maxRequestsPerTask", result)
|
|
this.claudeDev?.updateMaxRequestsPerTask(result)
|
|
await this.postStateToWebview()
|
|
break
|
|
case "askResponse":
|
|
this.claudeDev?.handleWebviewAskResponse(message.askResponse!, message.text, message.images)
|
|
break
|
|
case "clearTask":
|
|
// newTask will start a new task with a given task text, while clear task resets the current session and allows for a new task to be started
|
|
await this.clearTask()
|
|
await this.postStateToWebview()
|
|
break
|
|
case "didShowAnnouncement":
|
|
await this.updateGlobalState("lastShownAnnouncementId", this.latestAnnouncementId)
|
|
await this.postStateToWebview()
|
|
break
|
|
case "downloadTask":
|
|
downloadTask(this.claudeDev?.apiConversationHistory ?? [])
|
|
break
|
|
case "selectImages":
|
|
const images = await selectImages()
|
|
await this.postMessageToWebview({ type: "selectedImages", images })
|
|
break
|
|
// Add more switch case statements here as more webview message commands
|
|
// are created within the webview context (i.e. inside media/main.js)
|
|
}
|
|
},
|
|
null,
|
|
this.disposables
|
|
)
|
|
}
|
|
|
|
async postStateToWebview() {
|
|
const { apiConfiguration, maxRequestsPerTask, lastShownAnnouncementId } = await this.getState()
|
|
this.postMessageToWebview({
|
|
type: "state",
|
|
state: {
|
|
version: this.context.extension?.packageJSON?.version ?? "",
|
|
apiConfiguration,
|
|
maxRequestsPerTask,
|
|
themeName: vscode.workspace.getConfiguration("workbench").get<string>("colorTheme"),
|
|
claudeMessages: this.claudeDev?.claudeMessages || [],
|
|
shouldShowAnnouncement: lastShownAnnouncementId !== this.latestAnnouncementId,
|
|
},
|
|
})
|
|
}
|
|
|
|
async clearTask() {
|
|
this.claudeDev?.abortTask()
|
|
this.claudeDev = undefined // removes reference to it, so once promises end it will be garbage collected
|
|
}
|
|
|
|
// Caching mechanism to keep track of webview messages + API conversation history per provider instance
|
|
|
|
/*
|
|
Now that we use retainContextWhenHidden, we don't have to store a cache of claude messages in the user's state, but we could to reduce memory footprint in long conversations.
|
|
|
|
- We have to be careful of what state is shared between ClaudeDevProvider instances since there could be multiple instances of the extension running at once. For example when we cached claude messages using the same key, two instances of the extension could end up using the same key and overwriting each other's messages.
|
|
- Some state does need to be shared between the instances, i.e. the API key--however there doesn't seem to be a good way to notfy the other instances that the API key has changed.
|
|
|
|
We need to use a unique identifier for each ClaudeDevProvider instance's message cache since we could be running several instances of the extension outside of just the sidebar i.e. in editor panels.
|
|
|
|
For now since we don't need to store task history, we'll just use an identifier unique to this provider instance (since there can be several provider instances open at once).
|
|
However in the future when we implement task history, we'll need to use a unique identifier for each task. As well as manage a data structure that keeps track of task history with their associated identifiers and the task message itself, to present in a 'Task History' view.
|
|
Task history is a significant undertaking as it would require refactoring how we wait for ask responses--it would need to be a hidden claudeMessage, so that user's can resume tasks that ended with an ask.
|
|
*/
|
|
// private providerInstanceIdentifier = Date.now()
|
|
// getClaudeMessagesStateKey() {
|
|
// return `claudeMessages-${this.providerInstanceIdentifier}`
|
|
// }
|
|
|
|
// getApiConversationHistoryStateKey() {
|
|
// return `apiConversationHistory-${this.providerInstanceIdentifier}`
|
|
// }
|
|
|
|
// claude messages to present in the webview
|
|
|
|
// getClaudeMessages(): ClaudeMessage[] {
|
|
// // const messages = (await this.getGlobalState(this.getClaudeMessagesStateKey())) as ClaudeMessage[]
|
|
// // return messages || []
|
|
// return this.claudeMessages
|
|
// }
|
|
|
|
// setClaudeMessages(messages: ClaudeMessage[] | undefined) {
|
|
// // await this.updateGlobalState(this.getClaudeMessagesStateKey(), messages)
|
|
// this.claudeMessages = messages || []
|
|
// }
|
|
|
|
// addClaudeMessage(message: ClaudeMessage): ClaudeMessage[] {
|
|
// // const messages = await this.getClaudeMessages()
|
|
// // messages.push(message)
|
|
// // await this.setClaudeMessages(messages)
|
|
// // return messages
|
|
// this.claudeMessages.push(message)
|
|
// return this.claudeMessages
|
|
// }
|
|
|
|
// conversation history to send in API requests
|
|
|
|
/*
|
|
It seems that some API messages do not comply with vscode state requirements. Either the Anthropic library is manipulating these values somehow in the backend in a way thats creating cyclic references, or the API returns a function or a Symbol as part of the message content.
|
|
VSCode docs about state: "The value must be JSON-stringifyable ... value — A value. MUST not contain cyclic references."
|
|
For now we'll store the conversation history in memory, and if we need to store in state directly we'd need to do a manual conversion to ensure proper json stringification.
|
|
*/
|
|
|
|
// getApiConversationHistory(): Anthropic.MessageParam[] {
|
|
// // const history = (await this.getGlobalState(
|
|
// // this.getApiConversationHistoryStateKey()
|
|
// // )) as Anthropic.MessageParam[]
|
|
// // return history || []
|
|
// return this.apiConversationHistory
|
|
// }
|
|
|
|
// setApiConversationHistory(history: Anthropic.MessageParam[] | undefined) {
|
|
// // await this.updateGlobalState(this.getApiConversationHistoryStateKey(), history)
|
|
// this.apiConversationHistory = history || []
|
|
// }
|
|
|
|
// addMessageToApiConversationHistory(message: Anthropic.MessageParam): Anthropic.MessageParam[] {
|
|
// // const history = await this.getApiConversationHistory()
|
|
// // history.push(message)
|
|
// // await this.setApiConversationHistory(history)
|
|
// // return history
|
|
// this.apiConversationHistory.push(message)
|
|
// return this.apiConversationHistory
|
|
// }
|
|
|
|
/*
|
|
Storage
|
|
https://dev.to/kompotkot/how-to-use-secretstorage-in-your-vscode-extensions-2hco
|
|
https://www.eliostruyf.com/devhack-code-extension-storage-options/
|
|
*/
|
|
|
|
async getState() {
|
|
const [
|
|
apiProvider,
|
|
apiModelId,
|
|
apiKey,
|
|
openRouterApiKey,
|
|
awsAccessKey,
|
|
awsSecretKey,
|
|
awsRegion,
|
|
maxRequestsPerTask,
|
|
lastShownAnnouncementId,
|
|
] = await Promise.all([
|
|
this.getGlobalState("apiProvider") as Promise<ApiProvider | undefined>,
|
|
this.getGlobalState("apiModelId") as Promise<ApiModelId | undefined>,
|
|
this.getSecret("apiKey") as Promise<string | undefined>,
|
|
this.getSecret("openRouterApiKey") as Promise<string | undefined>,
|
|
this.getSecret("awsAccessKey") as Promise<string | undefined>,
|
|
this.getSecret("awsSecretKey") as Promise<string | undefined>,
|
|
this.getGlobalState("awsRegion") as Promise<string | undefined>,
|
|
this.getGlobalState("maxRequestsPerTask") as Promise<number | undefined>,
|
|
this.getGlobalState("lastShownAnnouncementId") as Promise<string | undefined>,
|
|
])
|
|
return {
|
|
apiConfiguration: {
|
|
apiProvider: apiProvider || "anthropic", // for legacy users that were using Anthropic by default
|
|
apiModelId,
|
|
apiKey,
|
|
openRouterApiKey,
|
|
awsAccessKey,
|
|
awsSecretKey,
|
|
awsRegion,
|
|
},
|
|
maxRequestsPerTask,
|
|
lastShownAnnouncementId,
|
|
}
|
|
}
|
|
|
|
// global
|
|
|
|
private async updateGlobalState(key: GlobalStateKey, value: any) {
|
|
await this.context.globalState.update(key, value)
|
|
}
|
|
|
|
private async getGlobalState(key: GlobalStateKey) {
|
|
return await this.context.globalState.get(key)
|
|
}
|
|
|
|
// workspace
|
|
|
|
private async updateWorkspaceState(key: string, value: any) {
|
|
await this.context.workspaceState.update(key, value)
|
|
}
|
|
|
|
private async getWorkspaceState(key: string) {
|
|
return await this.context.workspaceState.get(key)
|
|
}
|
|
|
|
// private async clearState() {
|
|
// this.context.workspaceState.keys().forEach((key) => {
|
|
// this.context.workspaceState.update(key, undefined)
|
|
// })
|
|
// this.context.globalState.keys().forEach((key) => {
|
|
// this.context.globalState.update(key, undefined)
|
|
// })
|
|
// this.context.secrets.delete("apiKey")
|
|
// }
|
|
|
|
// secrets
|
|
|
|
private async storeSecret(key: SecretKey, value?: string) {
|
|
if (value) {
|
|
await this.context.secrets.store(key, value)
|
|
} else {
|
|
await this.context.secrets.delete(key)
|
|
}
|
|
}
|
|
|
|
private async getSecret(key: SecretKey) {
|
|
return await this.context.secrets.get(key)
|
|
}
|
|
}
|