Skip to content

Commit

Permalink
Merge pull request #47497 from nextcloud/backport/47465/stable29
Browse files Browse the repository at this point in the history
[stable29] fix(files): Reset drop notice on firefox
  • Loading branch information
susnux authored Aug 27, 2024
2 parents c9f82ff + 2478fc6 commit 57b81d8
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 10 deletions.
38 changes: 31 additions & 7 deletions apps/files/src/components/DragAndDropNotice.vue
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,13 @@

<script lang="ts">
import type { Folder } from '@nextcloud/files'
import { Permission } from '@nextcloud/files'
import { showError } from '@nextcloud/dialogs'
import { translate as t } from '@nextcloud/l10n'
import { UploadStatus } from '@nextcloud/upload'
import { defineComponent, type PropType } from 'vue'
import debounce from 'debounce'
import TrayArrowDownIcon from 'vue-material-design-icons/TrayArrowDown.vue'
Expand Down Expand Up @@ -104,18 +106,29 @@ export default defineComponent({
}
return null
},
/**
* Debounced function to reset the drag over state
* Required as Firefox has a bug where no dragleave is emitted:
* https://bugzilla.mozilla.org/show_bug.cgi?id=656164
*/
resetDragOver() {
return debounce(() => {
this.dragover = false
}, 3000)
},
},
mounted() {
// Add events on parent to cover both the table and DragAndDrop notice
const mainContent = window.document.querySelector('main.app-content') as HTMLElement
const mainContent = window.document.getElementById('app-content-vue') as HTMLElement
mainContent.addEventListener('dragover', this.onDragOver)
mainContent.addEventListener('dragleave', this.onDragLeave)
mainContent.addEventListener('drop', this.onContentDrop)
},
beforeDestroy() {
const mainContent = window.document.querySelector('main.app-content') as HTMLElement
const mainContent = window.document.getElementById('app-content-vue') as HTMLElement
mainContent.removeEventListener('dragover', this.onDragOver)
mainContent.removeEventListener('dragleave', this.onDragLeave)
mainContent.removeEventListener('drop', this.onContentDrop)
Expand All @@ -130,6 +143,7 @@ export default defineComponent({
if (isForeignFile) {
// Only handle uploading of outside files (not Nextcloud files)
this.dragover = true
this.resetDragOver()
}
},
Expand All @@ -144,6 +158,7 @@ export default defineComponent({
if (this.dragover) {
this.dragover = false
this.resetDragOver.clear()
}
},
Expand All @@ -152,6 +167,7 @@ export default defineComponent({
event.preventDefault()
if (this.dragover) {
this.dragover = false
this.resetDragOver.clear()
}
},
Expand Down Expand Up @@ -204,16 +220,24 @@ export default defineComponent({
if (lastUpload !== undefined) {
logger.debug('Scrolling to last upload in current folder', { lastUpload })
this.$router.push({
...this.$route,
const location: RawLocation = {
path: this.$route.path,
// Keep params but change file id
params: {
view: this.$route.params?.view ?? 'files',
fileid: parseInt(lastUpload.response!.headers['oc-fileid']),
...this.$route.params,
fileid: String(lastUpload.response!.headers['oc-fileid']),
},
query: {
...this.$route.query,
},
})
}
// Remove open file from query
delete location.query.openfile
this.$router.push(location)
}
this.dragover = false
this.resetDragOver.clear()
},
t,
Expand Down
4 changes: 2 additions & 2 deletions dist/files-main.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/files-main.js.map

Large diffs are not rendered by default.

0 comments on commit 57b81d8

Please sign in to comment.