Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
b6bddd1
fix(files): updated models
Nazar690 Oct 3, 2025
0357325
fix(files): files refactoring
nmykhalkevch-exoft Oct 5, 2025
cff4fcc
fix(files): infinity scroll
nmykhalkevch-exoft Oct 7, 2025
e893b33
fix(files): add file select destination component
nmykhalkevch-exoft Oct 8, 2025
41f7fff
Merge branch 'main' of github.com:CenterForOpenScience/angular-osf in…
nmykhalkevch-exoft Oct 8, 2025
34ff292
fix(files): add permissions to move
nmykhalkevch-exoft Oct 8, 2025
0cb552f
fix(files): files new features
nmykhalkevch-exoft Oct 8, 2025
8817c40
fix(files): update provider
nmykhalkevch-exoft Oct 8, 2025
36538fb
Merge branch 'main' of github.com:CenterForOpenScience/angular-osf in…
nmykhalkevch-exoft Oct 8, 2025
7191f25
fix(files): add multiselection
nmykhalkevch-exoft Oct 9, 2025
86e1721
Merge branch 'main' of github.com:CenterForOpenScience/angular-osf in…
nmykhalkevch-exoft Oct 9, 2025
2e81a60
fix(files): remove commented code
nmykhalkevch-exoft Oct 9, 2025
4fc7c66
Merge branch 'main' of github.com:CenterForOpenScience/angular-osf in…
nmykhalkevch-exoft Oct 10, 2025
267b88d
fix(files): fixed bugs
nmykhalkevch-exoft Oct 10, 2025
3b25d66
Merge branch 'main' of github.com:CenterForOpenScience/angular-osf in…
nmykhalkevch-exoft Oct 10, 2025
7fb5692
fix(files): registration draft files
nmykhalkevch-exoft Oct 10, 2025
511d93b
Merge branch 'main' of github.com:CenterForOpenScience/angular-osf in…
nmykhalkevch-exoft Oct 10, 2025
6181b74
fix(files): fixed selection
nmykhalkevch-exoft Oct 10, 2025
641c8f6
Merge branch 'main' of github.com:CenterForOpenScience/angular-osf in…
nmykhalkevch-exoft Oct 10, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ <h2>{{ 'preprints.preprintStepper.file.title' | translate }}</h2>
[files]="projectFiles()"
[totalCount]="projectFiles().length"
[storage]="null"
[selectionMode]="null"
[isLoading]="areProjectFilesLoading() || isCurrentFolderLoading()"
[resourceId]="selectedProjectId()!"
(entryFileClicked)="selectProjectFile($event)"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ <h2>{{ 'project.overview.files.filesPreview' | translate }}</h2>
[isLoading]="isFilesLoading() || isStorageLoading"
[resourceId]="selectedRoot!"
[provider]="provider()"
[selectionMode]="null"
(entryFileClicked)="navigateToFile($event)"
(loadFiles)="onLoadFiles($event)"
(setCurrentFolder)="setCurrentFolder($event)"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@

<osf-files-tree
[files]="files()"
[selectionMode]="null"
[totalCount]="filesTotalCount()"
[storage]="null"
[currentFolder]="currentFolder()!"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
styleClass="w-full md:w-[30rem]"
class="tree-table"
[loading]="isLoadingMore()"
selectionMode="multiple"
[selectionMode]="selectionMode()"
[selection]="selectedFiles()"
(onNodeSelect)="onNodeSelect($event)"
(onNodeUnselect)="onNodeUnselect($event)"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ export class FilesTreeComponent implements OnDestroy, AfterViewInit {
supportUpload = input<boolean>(true);
selectedFiles = input<FileModel[]>([]);
scrollHeight = input<string>('300px');
selectionMode = input<'multiple' | null>('multiple');

entryFileClicked = output<FileModel>();
uploadFilesConfirmed = output<File[] | File>();
Expand Down
Loading