mirror of
https://github.com/filebrowser/filebrowser.git
synced 2024-06-07 23:00:43 +00:00
77 lines
1.6 KiB
JavaScript
77 lines
1.6 KiB
JavaScript
'use strict'
|
|
|
|
listing.redefineDownloadURLs = function () {
|
|
let files = ''
|
|
|
|
for (let i = 0; i < selectedItems.length; i++) {
|
|
let url = document.getElementById(selectedItems[i]).dataset.url
|
|
files += url.replace(window.location.pathname, '') + ','
|
|
}
|
|
|
|
files = files.substring(0, files.length - 1)
|
|
files = encodeURIComponent(files)
|
|
|
|
let links = document.querySelectorAll('#download ul a')
|
|
Array.from(links).forEach(link => {
|
|
link.href = '?download=' + link.dataset.format + '&files=' + files
|
|
})
|
|
}
|
|
|
|
listing.newFilePrompt = function (event) {
|
|
event.preventDefault()
|
|
buttons.setLoading('new')
|
|
|
|
let name = event.currentTarget.querySelector('input').value
|
|
|
|
webdav.new(window.location.pathname + name)
|
|
.then(() => {
|
|
buttons.setDone('new')
|
|
listing.reload()
|
|
})
|
|
.catch(e => {
|
|
console.log(e)
|
|
buttons.setDone('new', false)
|
|
})
|
|
|
|
closePrompt(event)
|
|
return false
|
|
}
|
|
|
|
listing.addDoubleTapEvent = function () {
|
|
let items = document.getElementsByClassName('item'),
|
|
touches = {
|
|
id: '',
|
|
count: 0
|
|
}
|
|
|
|
Array.from(items).forEach(file => {
|
|
file.addEventListener('touchstart', event => {
|
|
if (touches.id != file.id) {
|
|
touches.id = file.id
|
|
touches.count = 1
|
|
|
|
setTimeout(() => {
|
|
touches.count = 0
|
|
}, 300)
|
|
|
|
return
|
|
}
|
|
|
|
touches.count++
|
|
|
|
if (touches.count > 1) {
|
|
window.location = file.dataset.url
|
|
}
|
|
})
|
|
})
|
|
}
|
|
|
|
|
|
document.addEventListener('DOMContentLoaded', event => {
|
|
listing.addDoubleTapEvent()
|
|
|
|
if (user.AllowNew) {
|
|
buttons.new.addEventListener('click', listing.newFileButton)
|
|
}
|
|
})
|