aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files/src/components/FileEntryGrid.vue
diff options
context:
space:
mode:
authorFerdinand Thiessen <opensource@fthiessen.de>2024-11-14 23:24:47 +0100
committerFerdinand Thiessen <opensource@fthiessen.de>2024-11-16 22:00:30 +0100
commitc06723c44afbc16cf85d316fb086887c18de09c7 (patch)
tree514848f120c78b6e1970cf7ff1ba62ef1328dfa2 /apps/files/src/components/FileEntryGrid.vue
parent67a02fa611c8a88dc500cff2c93033bb3db436b7 (diff)
downloadnextcloud-server-c06723c44afbc16cf85d316fb086887c18de09c7.tar.gz
nextcloud-server-c06723c44afbc16cf85d316fb086887c18de09c7.zip
refactor(files): Adjust `useNavigation` composable to enforce active view
In some cases it is guaranteed that we have a proper active view, e.g. when the file list is loaded (so within FileEntry* components). This does not change anything but the Typescript types, so the `currentView` is typed as `View` instead of `View | null“. Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
Diffstat (limited to 'apps/files/src/components/FileEntryGrid.vue')
-rw-r--r--apps/files/src/components/FileEntryGrid.vue3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/files/src/components/FileEntryGrid.vue b/apps/files/src/components/FileEntryGrid.vue
index 6d31542a15b..f0b086ac891 100644
--- a/apps/files/src/components/FileEntryGrid.vue
+++ b/apps/files/src/components/FileEntryGrid.vue
@@ -107,7 +107,8 @@ export default defineComponent({
const filesStore = useFilesStore()
const renamingStore = useRenamingStore()
const selectionStore = useSelectionStore()
- const { currentView } = useNavigation()
+ // The file list is guaranteed to be only shown with active view - thus we can set the `loaded` flag
+ const { currentView } = useNavigation(true)
const {
directory: currentDir,
fileId: currentFileId,