Преглед на файлове

Fixes parenting of folder nodes

main
Eric Amodio преди 5 години
родител
ревизия
9718c98359
променени са 1 файла, в които са добавени 7 реда и са изтрити 5 реда
  1. +7
    -5
      src/views/nodes/folderNode.ts

+ 7
- 5
src/views/nodes/folderNode.ts Целия файл

@ -43,14 +43,17 @@ export class FolderNode extends ViewNode {
this.root.descendants,
this.relativePath === undefined
);
if (nesting !== ViewFilesLayout.List) {
if (nesting === ViewFilesLayout.List) {
this.root.descendants.forEach(n => (n.relativePath = this.root.relativePath));
children = this.root.descendants;
} else {
children = [];
for (const folder of this.root.children.values()) {
if (folder.value === undefined) {
children.push(
new FolderNode(
this.view,
this,
this.folderName ? this : this.parent!,
this.repoPath,
folder.name,
folder,
@ -61,12 +64,11 @@ export class FolderNode extends ViewNode {
continue;
}
// Make sure to set the parent
(folder.value as any).parent = this.folderName ? this : this.parent!;
folder.value.relativePath = this.root.relativePath;
children.push(folder.value);
}
} else {
this.root.descendants.forEach(n => (n.relativePath = this.root.relativePath));
children = this.root.descendants;
}
children.sort((a, b) => {

Зареждане…
Отказ
Запис