deploy: current vibn theia state
Some checks failed
Playwright Tests / Playwright Tests (ubuntu-22.04, Node.js 22.x) (push) Has been cancelled
3PP License Check / 3PP License Check (11, 22.x, ubuntu-22.04) (push) Has been cancelled
Publish packages to NPM / Perform Publishing (push) Has been cancelled

Made-with: Cursor
This commit is contained in:
2026-02-27 12:01:08 -08:00
commit 8bb5110148
3782 changed files with 640947 additions and 0 deletions

View File

@@ -0,0 +1,66 @@
// *****************************************************************************
// Copyright (C) 2024 EclipseSource GmbH.
//
// This program and the accompanying materials are made available under the
// terms of the Eclipse Public License v. 2.0 which is available at
// http://www.eclipse.org/legal/epl-2.0.
//
// This Source Code may also be made available under the following Secondary
// Licenses when the conditions for such availability set forth in the Eclipse
// Public License v. 2.0 are satisfied: GNU General Public License, version 2
// with the GNU Classpath Exception which is available at
// https://www.gnu.org/software/classpath/license.html.
//
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
// *****************************************************************************
import { Command, CommandRegistry, nls } from '@theia/core';
import { TabBarToolbarContribution, TabBarToolbarRegistry } from '@theia/core/lib/browser/shell/tab-bar-toolbar';
import { AIViewContribution } from '@theia/ai-core/lib/browser';
import { ChatViewWidget } from '@theia/ai-chat-ui/lib/browser/chat-view-widget';
import { FrontendApplication } from '@theia/core/lib/browser';
import { injectable } from '@theia/core/shared/inversify';
import { AIConfigurationContainerWidget } from './ai-configuration-widget';
export const AI_CONFIGURATION_TOGGLE_COMMAND_ID = 'aiConfiguration:toggle';
export const OPEN_AI_CONFIG_VIEW = Command.toLocalizedCommand({
id: 'aiConfiguration:open',
label: 'Open AI Configuration view',
});
@injectable()
export class AIAgentConfigurationViewContribution extends AIViewContribution<AIConfigurationContainerWidget> implements TabBarToolbarContribution {
constructor() {
super({
widgetId: AIConfigurationContainerWidget.ID,
widgetName: AIConfigurationContainerWidget.LABEL,
defaultWidgetOptions: {
area: 'main',
rank: 100
},
toggleCommandId: AI_CONFIGURATION_TOGGLE_COMMAND_ID
});
}
async initializeLayout(_app: FrontendApplication): Promise<void> {
await this.openView();
}
override registerCommands(commands: CommandRegistry): void {
super.registerCommands(commands);
commands.registerCommand(OPEN_AI_CONFIG_VIEW, {
execute: () => this.openView({ activate: true }),
});
}
registerToolbarItems(registry: TabBarToolbarRegistry): void {
registry.registerItem({
id: 'chat-view.' + OPEN_AI_CONFIG_VIEW.id,
command: OPEN_AI_CONFIG_VIEW.id,
tooltip: nls.localize('theia/ai-ide/open-agent-settings-tooltip', 'Open Agent settings...'),
group: 'ai-settings',
priority: 2,
isVisible: widget => this.activationService.isActive && widget instanceof ChatViewWidget
});
}
}