@finos/legend-application-pure-ide
Version:
Legend Pure IDE application core
45 lines • 2.25 kB
TypeScript
/**
* Copyright (c) 2020-present, Goldman Sachs
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import { TreeState } from './TreeState.js';
import { type DirectoryTreeNode, DirectoryNode } from '../server/models/DirectoryTree.js';
import type { PureIDEStore } from './PureIDEStore.js';
import type { FileCoordinate } from '../server/models/File.js';
import { type GeneratorFn } from '@finos/legend-shared';
import type { TreeData } from '@finos/legend-art';
export declare class DirectoryTreeState extends TreeState<DirectoryTreeNode, DirectoryNode> {
nodeForCreateNewFile?: DirectoryTreeNode | undefined;
nodeForCreateNewDirectory?: DirectoryTreeNode | undefined;
nodeForRenameFile?: DirectoryTreeNode | undefined;
constructor(ideStore: PureIDEStore);
setNodeForCreateNewFile: (value: DirectoryTreeNode | undefined) => void;
setNodeForCreateNewDirectory: (value: DirectoryTreeNode | undefined) => void;
setNodeForRenameFile: (value: DirectoryTreeNode | undefined) => void;
getRootNodes(): Promise<DirectoryNode[]>;
buildTreeData(rootNodes: DirectoryNode[]): TreeData<DirectoryTreeNode>;
getChildNodes(node: DirectoryTreeNode): Promise<DirectoryNode[]>;
processChildNodes(node: DirectoryTreeNode, childNodes: DirectoryNode[]): void;
openNode(node: DirectoryTreeNode): GeneratorFn<void>;
revealPath(path: string, options?: {
/**
* Only reveal directories, will skip opening file
* if the provided path belongs to a file
*/
directoryOnly?: boolean | undefined;
forceOpenExplorerPanel?: boolean | undefined;
coordinate?: FileCoordinate | undefined;
}): GeneratorFn<void>;
}
//# sourceMappingURL=DirectoryTreeState.d.ts.map