feat: add OpenChamber sidebar command and icon for VS Code title bar

This commit is contained in:
Bohdan Triapitsyn
2025-12-31 00:06:59 +02:00
parent a9f3180439
commit 7b98f972f3
4 changed files with 208 additions and 4 deletions
+5 -1
View File
@@ -8,7 +8,11 @@ export class ChatViewProvider implements vscode.WebviewViewProvider {
public static readonly viewType = 'openchamber.chatView';
private _view?: vscode.WebviewView;
public isVisible() {
return this._view?.visible ?? false;
}
// Cache latest status/URL for when webview is resolved after connection is ready
private _cachedStatus: ConnectionStatus = 'connecting';
private _cachedError?: string;