// ***************************************************************************** // Copyright (C) 2017-2018 Ericsson and others. // // 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 '../../src/browser/styles/index.css'; import { ContainerModule, interfaces } from '@theia/core/shared/inversify'; import { SearchInWorkspaceService, SearchInWorkspaceClientImpl } from './search-in-workspace-service'; import { SearchInWorkspaceServer, SIW_WS_PATH } from '../common/search-in-workspace-interface'; import { WidgetFactory, createTreeContainer, bindViewContribution, FrontendApplicationContribution, LabelProviderContribution, ApplicationShellLayoutMigration, StylingParticipant, RemoteConnectionProvider, ServiceConnectionProvider } from '@theia/core/lib/browser'; import { SearchInWorkspaceWidget } from './search-in-workspace-widget'; import { SearchInWorkspaceResultTreeWidget } from './search-in-workspace-result-tree-widget'; import { SearchInWorkspaceFrontendContribution } from './search-in-workspace-frontend-contribution'; import { SearchInWorkspaceContextKeyService } from './search-in-workspace-context-key-service'; import { TabBarToolbarContribution } from '@theia/core/lib/browser/shell/tab-bar-toolbar'; import { bindSearchInWorkspacePreferences } from '../common/search-in-workspace-preferences'; import { SearchInWorkspaceLabelProvider } from './search-in-workspace-label-provider'; import { SearchInWorkspaceFactory } from './search-in-workspace-factory'; import { SearchLayoutVersion3Migration } from './search-layout-migrations'; import { WorkspaceSearchFilterProvider } from '@theia/workspace/lib/browser'; import { SearchExcludeFilterProvider } from './search-exclude-filter-provider'; export default new ContainerModule(bind => { bind(SearchInWorkspaceContextKeyService).toSelf().inSingletonScope(); bind(SearchInWorkspaceWidget).toSelf(); bind(WidgetFactory).toDynamicValue(ctx => ({ id: SearchInWorkspaceWidget.ID, createWidget: () => ctx.container.get(SearchInWorkspaceWidget) })); bind(SearchInWorkspaceResultTreeWidget).toDynamicValue(ctx => createSearchTreeWidget(ctx.container)); bind(SearchInWorkspaceFactory).toSelf().inSingletonScope(); bind(WidgetFactory).toService(SearchInWorkspaceFactory); bind(ApplicationShellLayoutMigration).to(SearchLayoutVersion3Migration).inSingletonScope(); bindViewContribution(bind, SearchInWorkspaceFrontendContribution); bind(FrontendApplicationContribution).toService(SearchInWorkspaceFrontendContribution); bind(TabBarToolbarContribution).toService(SearchInWorkspaceFrontendContribution); bind(StylingParticipant).toService(SearchInWorkspaceFrontendContribution); // The object that gets notified of search results. bind(SearchInWorkspaceClientImpl).toSelf().inSingletonScope(); bind(SearchInWorkspaceService).toSelf().inSingletonScope(); // The object to call methods on the backend. bind(SearchInWorkspaceServer).toDynamicValue(ctx => { const client = ctx.container.get(SearchInWorkspaceClientImpl); const provider = ctx.container.get(RemoteConnectionProvider); return provider.createProxy(SIW_WS_PATH, client); }).inSingletonScope(); bindSearchInWorkspacePreferences(bind); bind(SearchInWorkspaceLabelProvider).toSelf().inSingletonScope(); bind(LabelProviderContribution).toService(SearchInWorkspaceLabelProvider); bind(SearchExcludeFilterProvider).toSelf().inSingletonScope(); bind(WorkspaceSearchFilterProvider).toService(SearchExcludeFilterProvider); }); export function createSearchTreeWidget(parent: interfaces.Container): SearchInWorkspaceResultTreeWidget { const child = createTreeContainer(parent, { widget: SearchInWorkspaceResultTreeWidget, props: { contextMenuPath: SearchInWorkspaceResultTreeWidget.Menus.BASE, multiSelect: true, globalSelection: true } }); return child.get(SearchInWorkspaceResultTreeWidget); }