WebFM/webfm/static/js/events.js

81 lines
2.3 KiB
JavaScript

let fullScreenState = 0;
let clicktapwait = 200;
let shouldPlay = null;
let controlsTimeout = null;
let canHideControls = true;
document.body.onload = (eve) => {
getFavesAjax();
reloadDirectory();
if (window.self !== window.top) {
setTimeout(function () {
let elm = document.getElementById("bg");
elm.parentElement.removeChild(elm);
// Stylesheet for iframe views
var link = document.createElement("link");
link.href = formatURL("static/css/iframe.css");
link.type = "text/css";
link.rel = "stylesheet";
document.getElementsByTagName("head")[0].appendChild(link);
}, 500);
}
}
$( "#search-files-field" ).bind( "keyup", async function(eve) {
searchPage();
});
$( "#clear-search-btn" ).bind( "click", async function(eve) {
clearSearch();
});
$( "#refresh-btn" ).bind( "click", async function(eve) {
reloadDirectory();
});
$( "#back-btn" ).bind( "click", async function(eve) {
goUpADirectory();
});
$( "#tggl-faves-btn" ).bind( "click", async function(eve) {
manageFavorites(eve.target);
});
$( "#lock-folders-btn" ).bind( "click", async function(eve) {
lockFolders();
});
$( "#scroll-files-to-top-btn" ).bind( "click", async function(eve) {
scrollFilesToTop();
});
// Actions for content
document.getElementById('file-grid').ondblclick = (event) => {
let target = event.target;
let className = target.className;
// Left click detect
if (event.which == 1) {
// If clicking on container
if (className === "dir-style" || className === "video-style" ||
className === "file-style" || className === "image-style") {
const title = target.getAttribute("title");
const hash = target.getAttribute("hash");
const parts = title.split('.');
const extension = "." + parts[parts.length - 1].toLowerCase();
if (className === "dir-style") {
listFilesAjax(hash);
} else if (className === "video-style") {
showMedia(hash, extension, "video");
} else {
showMedia(hash, extension, "file");
}
}
}
}