67 lines
2.8 KiB
TypeScript
67 lines
2.8 KiB
TypeScript
// *****************************************************************************
|
|
// 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
|
|
});
|
|
}
|
|
}
|