An electron-based WIP aesthetic file explorer ^^
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
FileKade/scripts/startup/preload.js

50 lines
1.5 KiB

3 years ago
const os = require('os');
const setButtons = require('./setbuttons');
const hideContext = require('../contextmenu/hidecontext');
const lightRefresh = require('../fileview/lightrefresh');
const checkDir = require('../fileview/checkdir');
3 years ago
window.addEventListener('DOMContentLoaded', () => {
window.kade = {
elc: false,
cpath: '',
sort: 'Name',
ascend: true,
context: false,
chdir: [],
3 years ago
ctxFunc: {},
modals: [],
modal: false
};
3 years ago
const startDir = `${os.homedir}\\Desktop`;
require('./initcontext')();
3 years ago
require('../fileview/refresh')(startDir);
setButtons();
document.onclick = () => {
setTimeout(function () {
if (window.kade.elc) {window.kade.elc = false; return;}
if (window.kade.cl) {window.kade.cl.classList.remove('file-active');}
window.kade.ctxel = null;
3 years ago
}, 100);
if (window.kade.context) {hideContext(window);}
3 years ago
}
window.kade.refreshInterval = setInterval(lightRefresh, 60000);
window.kade.checkDirInterval = setInterval(checkDir, 5000);
require('../keybinds/handleKey')();
3 years ago
});
window.addEventListener('contextmenu', e => {
e.preventDefault();
require('../contextmenu/createcontext')(e, e.target, window);
setTimeout(function () {
if (window.kade.elc) {window.kade.elc = false; return;}
if (window.kade.cl) {window.kade.cl.classList.remove('file-active');}
}, 100);
});