-
Notifications
You must be signed in to change notification settings - Fork 82
/
Copy pathfolderNode.ts
45 lines (39 loc) · 1.57 KB
/
folderNode.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
42
43
44
45
// 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, NodeKind } from "../java/nodeData";
import { DataNode } from "./dataNode";
import { ExplorerNode } from "./explorerNode";
import { ProjectNode } from "./projectNode";
import { NodeFactory } from "./nodeFactory";
export class FolderNode extends DataNode {
constructor(nodeData: INodeData, parent: DataNode, private _project: ProjectNode, private _rootNode?: DataNode) {
super(nodeData, parent);
}
protected async loadData(): Promise<INodeData[]> {
return Jdtls.getPackageData({
kind: NodeKind.Folder,
projectUri: this._project.uri,
path: this.path,
rootPath: this._rootNode?.path,
handlerIdentifier: this._rootNode?.handlerIdentifier,
});
}
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, this._project, this._rootNode));
});
}
return result.filter(<T>(n?: T): n is T => Boolean(n));
}
protected get iconPath(): ThemeIcon {
return new ThemeIcon("folder");
}
protected get contextValue(): string {
return Explorer.ContextValueType.Folder;
}
}