]> source.dussan.org Git - nextcloud-server.git/commitdiff
fix(files): Consistent sorting for folders before files (user configurable)
authorFerdinand Thiessen <opensource@fthiessen.de>
Fri, 26 Jan 2024 13:21:32 +0000 (14:21 +0100)
committerFerdinand Thiessen <opensource@fthiessen.de>
Sat, 27 Jan 2024 13:23:47 +0000 (14:23 +0100)
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
apps/files/lib/Service/UserConfig.php
apps/files/src/store/userconfig.ts
apps/files/src/views/FilesList.vue
apps/files/src/views/Settings.vue

index 00569dc6aeb84563669982fac67e4d204da219a3..b6755836b0f4218daaad8f69fb48590d79ea5d38 100644 (file)
@@ -47,6 +47,12 @@ class UserConfig {
                        'default' => true,
                        'allowed' => [true, false],
                ],
+               [
+                       // Whether to sort folders before files in the list or not
+                       'key' => 'sort_folders_first',
+                       'default' => true,
+                       'allowed' => [true, false],
+               ],
                [
                        // Whether to show the files list in grid view or not
                        'key' => 'grid_view',
index cbd3f71600a98b96407772504736633841c182c5..c5f34c2dbe023134e08063cf929c48c097a9ef7c 100644 (file)
@@ -27,12 +27,13 @@ import { loadState } from '@nextcloud/initial-state'
 import axios from '@nextcloud/axios'
 import Vue from 'vue'
 
-const userConfig = loadState('files', 'config', {
+const userConfig = loadState<UserConfig>('files', 'config', {
        show_hidden: false,
        crop_image_previews: true,
        sort_favorites_first: true,
+       sort_folders_first: true,
        grid_view: false,
-}) as UserConfig
+})
 
 export const useUserConfigStore = function(...args) {
        const store = defineStore('userconfig', {
index fabfccd6ca1a49601bce88ff5f83b06e6ea0041f..d57dece60d39f8444d7c9bdfd88203bcac716c1f 100644 (file)
@@ -257,7 +257,7 @@ export default defineComponent({
                                // 1: Sort favorites first if enabled
                                ...(this.userConfig.sort_favorites_first ? [v => v.attributes?.favorite !== 1] : []),
                                // 2: Sort folders first if sorting by name
-                               ...(this.sortingMode === 'basename' ? [v => v.type !== 'folder'] : []),
+                               ...(this.userConfig.sort_folders_first ? [v => v.type !== 'folder'] : []),
                                // 3: Use sorting mode if NOT basename (to be able to use displayName too)
                                ...(this.sortingMode !== 'basename' ? [v => v[this.sortingMode]] : []),
                                // 4: Use displayName if available, fallback to name
@@ -269,7 +269,7 @@ export default defineComponent({
                                // (for 1): always sort favorites before normal files
                                ...(this.userConfig.sort_favorites_first ? ['asc'] : []),
                                // (for 2): always sort folders before files
-                               ...(this.sortingMode === 'basename' ? ['asc'] : []),
+                               ...(this.userConfig.sort_folders_first ? ['asc'] : []),
                                // (for 3): Reverse if sorting by mtime as mtime higher means edited more recent -> lower
                                ...(this.sortingMode === 'mtime' ? [this.isAscSorting ? 'desc' : 'asc'] : []),
                                // (also for 3 so make sure not to conflict with 2 and 3)
index d3eb318d4fa2b21fcedf82f21b582c281fcbac85..cefbdab4eec70f3294b135f6c2ed1092982b6b7c 100644 (file)
                                @update:checked="setConfig('sort_favorites_first', $event)">
                                {{ t('files', 'Sort favorites first') }}
                        </NcCheckboxRadioSwitch>
+                       <NcCheckboxRadioSwitch :checked="userConfig.sort_folders_first"
+                               @update:checked="setConfig('sort_folders_first', $event)">
+                               {{ t('files', 'Sort folders before files') }}
+                       </NcCheckboxRadioSwitch>
                        <NcCheckboxRadioSwitch :checked="userConfig.show_hidden"
                                @update:checked="setConfig('show_hidden', $event)">
                                {{ t('files', 'Show hidden files') }}