diff options
author | Ferdinand Thiessen <opensource@fthiessen.de> | 2024-11-14 23:24:47 +0100 |
---|---|---|
committer | Ferdinand Thiessen <opensource@fthiessen.de> | 2024-11-16 22:00:30 +0100 |
commit | c06723c44afbc16cf85d316fb086887c18de09c7 (patch) | |
tree | 514848f120c78b6e1970cf7ff1ba62ef1328dfa2 /apps/files/src/components/FileEntry/FileEntryName.vue | |
parent | 67a02fa611c8a88dc500cff2c93033bb3db436b7 (diff) | |
download | nextcloud-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/FileEntry/FileEntryName.vue')
-rw-r--r-- | apps/files/src/components/FileEntry/FileEntryName.vue | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/apps/files/src/components/FileEntry/FileEntryName.vue b/apps/files/src/components/FileEntry/FileEntryName.vue index 34092a54201..e4cffba32b7 100644 --- a/apps/files/src/components/FileEntry/FileEntryName.vue +++ b/apps/files/src/components/FileEntry/FileEntryName.vue @@ -94,7 +94,8 @@ export default defineComponent({ }, setup() { - 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 } = useRouteParameters() const renamingStore = useRenamingStore() @@ -143,7 +144,7 @@ export default defineComponent({ } } - if (this.defaultFileAction && this.currentView) { + if (this.defaultFileAction) { const displayName = this.defaultFileAction.displayName([this.source], this.currentView) return { is: 'button', @@ -247,8 +248,8 @@ export default defineComponent({ if (status) { showSuccess(t('files', 'Renamed "{oldName}" to "{newName}"', { oldName, newName })) this.$nextTick(() => { - const nameContainter = this.$refs.basename as HTMLElement | undefined - nameContainter?.focus() + const nameContainer = this.$refs.basename as HTMLElement | undefined + nameContainer?.focus() }) } else { // Was cancelled - meaning the renaming state is just reset |