-
Notifications
You must be signed in to change notification settings - Fork 82
/
Copy pathworkspaceNode.ts
41 lines (35 loc) · 1.31 KB
/
workspaceNode.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.
import { ThemeIcon } from "vscode";
import { Explorer } from "../constants";
import { Jdtls } from "../java/jdtls";
import { INodeData } from "../java/nodeData";
import { DataNode } from "./dataNode";
import { ExplorerNode } from "./explorerNode";
import { NodeFactory } from "./nodeFactory";
export class WorkspaceNode extends DataNode {
constructor(nodeData: INodeData, parent?: DataNode) {
super(nodeData, parent);
}
protected async loadData(): Promise<INodeData[] | undefined> {
if (!this.nodeData.uri) {
return undefined;
}
return Jdtls.getProjects(this.nodeData.uri);
}
protected createChildNodeList(): ExplorerNode[] {
const result: (ExplorerNode | undefined)[] = [];
if (this.nodeData.children && this.nodeData.children.length) {
this.nodeData.children.forEach((nodeData) => {
result.push(NodeFactory.createNode(nodeData, this));
});
}
return result.filter(<T>(n?: T): n is T => Boolean(n));
}
protected get iconPath(): ThemeIcon {
return new ThemeIcon("root-folder");
}
protected get contextValue(): string {
return Explorer.ContextValueType.WorkspaceFolder;
}
}