]> source.dussan.org Git - nextcloud-server.git/commitdiff
feat: Reset route if neither the Viewer of the Sidebar is open
authorLouis Chemineau <louis@chmn.me>
Mon, 16 Sep 2024 09:10:31 +0000 (11:10 +0200)
committerLouis Chemineau <louis@chmn.me>
Mon, 16 Sep 2024 09:55:55 +0000 (11:55 +0200)
When the viewer or the sidebar is opened, we add the fileid to the route.
When both of them are closed, we do not remove the fileid from the route.
This means that, upon reload, the sidebar will be opened even though it was closed previously.

This PR ensure that the fileid is removed from the route when both the Sidebar and the Viewer are closed.

Signed-off-by: Louis Chemineau <louis@chmn.me>
apps/files/src/components/FilesListVirtual.vue

index 65c88df21847ba8941be9192e6c7500023d01818..af8696c6e2b3c8ccf491c5708e9ba24880d41552 100644 (file)
@@ -78,6 +78,7 @@ import { getFileListHeaders, Folder, View, getFileActions, FileType } from '@nex
 import { showError } from '@nextcloud/dialogs'
 import { loadState } from '@nextcloud/initial-state'
 import { translate as t, translatePlural as n } from '@nextcloud/l10n'
+import { subscribe, unsubscribe } from '@nextcloud/event-bus'
 import { defineComponent } from 'vue'
 
 import { action as sidebarAction } from '../actions/sidebarAction.ts'
@@ -210,10 +211,20 @@ export default defineComponent({
                        this.scrollToFile(fileId, false)
                },
 
-               openFile(open: boolean) {
-                       if (open) {
-                               this.$nextTick(() => this.handleOpenFile(this.fileId))
-                       }
+               openFile: {
+                       handler() {
+                               // wait for scrolling and updating the actions to settle
+                               this.$nextTick(() => {
+                                       if (this.fileId) {
+                                               if (this.openFile) {
+                                                       this.handleOpenFile(this.fileId)
+                                               } else {
+                                                       this.unselectFile()
+                                               }
+                                       }
+                               })
+                       },
+                       immediate: true,
                },
        },
 
@@ -226,11 +237,15 @@ export default defineComponent({
                this.scrollToFile(id ?? this.fileId)
                this.openSidebarForFile(id ?? this.fileId)
                this.handleOpenFile(id ?? null)
+
+               subscribe('files:sidebar:closed', this.unselectFile)
        },
 
        beforeDestroy() {
                const mainContent = window.document.querySelector('main.app-content') as HTMLElement
                mainContent.removeEventListener('dragover', this.onDragOver)
+
+               unsubscribe('files:sidebar:closed', this.unselectFile)
        },
 
        methods: {
@@ -258,15 +273,22 @@ export default defineComponent({
                        }
                },
 
+               unselectFile() {
+                       // If the Sidebar is closed and if openFile is false, remove the file id from the URL
+                       if (!this.openFile && OCA.Files.Sidebar.file === '') {
+                               window.OCP.Files.Router.goToRoute(
+                                       null,
+                                       { ...this.$route.params, fileid: String(this.currentFolder.fileid ?? '') },
+                                       this.$route.query,
+                               )
+                       }
+               },
+
                /**
                 * Handle opening a file (e.g. by ?openfile=true)
                 * @param fileId File to open
                 */
                handleOpenFile(fileId: number|null) {
-                       if (!this.openFile) {
-                               return
-                       }
-
                        if (fileId === null || this.openFileId === fileId) {
                                return
                        }