// ***************************************************************************** // Copyright (C) 2019 TypeFox 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 { injectable, inject } from '@theia/core/shared/inversify'; import { LabelProvider, LabelProviderContribution, DidChangeLabelEvent } from '@theia/core/lib/browser/label-provider'; import { MarkerInfoNode } from './marker-tree'; import { TreeLabelProvider } from '@theia/core/lib/browser/tree/tree-label-provider'; import { WorkspaceService } from '@theia/workspace/lib/browser'; @injectable() export class MarkerTreeLabelProvider implements LabelProviderContribution { @inject(LabelProvider) protected readonly labelProvider: LabelProvider; @inject(TreeLabelProvider) protected readonly treeLabelProvider: TreeLabelProvider; @inject(WorkspaceService) protected readonly workspaceService: WorkspaceService; canHandle(element: object): number { return MarkerInfoNode.is(element) ? this.treeLabelProvider.canHandle(element) + 1 : 0; } getIcon(node: MarkerInfoNode): string { return this.labelProvider.getIcon(node.uri); } getName(node: MarkerInfoNode): string { return this.labelProvider.getName(node.uri); } getLongName(node: MarkerInfoNode): string { const description: string[] = []; const rootUri = this.workspaceService.getWorkspaceRootUri(node.uri); // In a multiple-root workspace include the root name to the label before the parent directory. if (this.workspaceService.isMultiRootWorkspaceOpened && rootUri) { description.push(this.labelProvider.getName(rootUri)); } // If the given resource is not at the workspace root, include the parent directory to the label. if (rootUri && rootUri.toString() !== node.uri.parent.toString()) { description.push(this.labelProvider.getLongName(node.uri.parent)); } // Get the full path of a resource which does not exist in the given workspace. if (!rootUri) { description.push(this.labelProvider.getLongName(node.uri.parent.withScheme('markers'))); } return description.join(' ● '); } getDescription(node: MarkerInfoNode): string { return this.labelProvider.getLongName(node.uri.parent); } affects(node: MarkerInfoNode, event: DidChangeLabelEvent): boolean { return event.affects(node.uri) || event.affects(node.uri.parent); } }