{{folder.filename}}
diff --git a/src/addons/mod/folder/components/index/index.ts b/src/addons/mod/folder/components/index/index.ts index 8cd1f0504..e20e5cf7e 100644 --- a/src/addons/mod/folder/components/index/index.ts +++ b/src/addons/mod/folder/components/index/index.ts @@ -54,6 +54,7 @@ export class AddonModFolderIndexComponent extends CoreCourseModuleMainResourceCo if (this.subfolder) { this.description = this.folderInstance ? this.folderInstance.intro : this.module.description; this.contents = this.subfolder; + this.sortFilesAndFolders(); this.showLoading = false; @@ -88,6 +89,30 @@ export class AddonModFolderIndexComponent extends CoreCourseModuleMainResourceCo this.description = this.folderInstance ? this.folderInstance.intro : this.module.description; this.contents = AddonModFolderHelper.formatContents(contents); + this.sortFilesAndFolders(); + } + + /** + * Sort files and folders alphabetically. + */ + protected sortFilesAndFolders(): void { + if (!this.contents) { + return; + } + + this.contents.folders.sort((a, b) => { + const compareA = a.filename.toLowerCase(); + const compareB = b.filename.toLowerCase(); + + return compareA.localeCompare(compareB); + }); + + this.contents.files.sort((a, b) => { + const compareA = a.filename.toLowerCase(); + const compareB = b.filename.toLowerCase(); + + return compareA.localeCompare(compareB); + }); } /** diff --git a/src/addons/privatefiles/pages/index/index.html b/src/addons/privatefiles/pages/index/index.html index ec245c9cd..3ad05578f 100644 --- a/src/addons/privatefiles/pages/index/index.html +++ b/src/addons/privatefiles/pages/index/index.html @@ -37,10 +37,8 @@{{fileName}}
-{{ fileSizeReadable }}
-{{ timemodified * 1000 | coreFormatDate }}
-{{fileName}}
+
+