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.
94 lines
3.9 KiB
94 lines
3.9 KiB
const fs = require('fs');
|
|
const path = require('path');
|
|
const Mousetrap = require('../dep/mousetrap');
|
|
|
|
const lightRefresh = require('../fileview/lightrefresh');
|
|
const preModal = require('../modal/pre');
|
|
const postModal = require('../modal/post');
|
|
const showError = require('../modal/common/error');
|
|
const clearModals = require('../modal/clearmodals');
|
|
const newToast = require('../toast/createtoast');
|
|
const refresh = require('../fileview/refresh');
|
|
|
|
module.exports = () => {
|
|
if (window.kade.modal) {return;}
|
|
preModal('rename-folder-modal-container');
|
|
let modalOut = document.createElement('div');
|
|
modalOut.className = 'modal';
|
|
modalOut.id = 'rename-folder-modal-container';
|
|
document.body.appendChild(modalOut);
|
|
let modal = document.createElement('div');
|
|
modal.className = 'modal-wrapper';
|
|
modalOut.appendChild(modal);
|
|
let title = document.createElement('h2');
|
|
title.innerHTML = 'Rename Folder';
|
|
modal.appendChild(title);
|
|
let text = document.createElement('p');
|
|
text.innerHTML = "What would you like to rename this folder to?";
|
|
modal.appendChild(text);
|
|
let cont = document.createElement('div');
|
|
cont.className = 'button-container';
|
|
modal.appendChild(cont);
|
|
let input = document.createElement('input');
|
|
input.placeholder = window.kade.currentFolder;
|
|
input.id = 'rename-folder-input';
|
|
input.value = window.kade.currentFolder;
|
|
let lastIn = '';
|
|
input.oninput = () => {
|
|
if (!input.value.match(/^[a-zA-Z0-9-_() ]*$/gm)) {input.value = lastIn;}
|
|
else {lastIn = input.value;}
|
|
};
|
|
cont.appendChild(input);
|
|
let conf = document.createElement('button');
|
|
conf.innerHTML = 'Rename';
|
|
conf.onclick = () => {
|
|
try {
|
|
input.value = input.value.trim();
|
|
if (!input.value.length) {return;}
|
|
if (fs.existsSync(path.join(window.kade.cpath, input.value))) {
|
|
if (!input.value.match(/^.+\(\d\)$/gm)) {input.value += ' (1)';}
|
|
else {
|
|
let tempstr = input.value.split('');
|
|
tempstr[input.value.length - 2] = `${Number(input.value.charAt(input.value.length - 2)) + 1}`;
|
|
input.value = tempstr.join('');
|
|
}
|
|
return;
|
|
}
|
|
fs.renameSync(path.join(window.kade.cpath, window.kade.currentFolder), path.join(window.kade.cpath, input.value));
|
|
lightRefresh();
|
|
modalOut.remove();
|
|
newToast(
|
|
"Folder renamed", [`Folder "${window.kade.currentFolder}" was successfully renamed to "${input.value}"`, `<em>${window.kade.cpath}/${input.value}</em>`], undefined, false, 5,
|
|
() => {
|
|
refresh(`${window.kade.cpath}/${input.value}`);
|
|
require('electron').clipboard.writeText(`${window.kade.cpath}`);
|
|
newToast("Copied!", "<em>The folder's path has been copied to your clipboard.</em>", "#19df46");
|
|
}
|
|
);
|
|
} catch {
|
|
newToast("Folder not Renamed", "An error caused that folder to not be renamed.", "#b24355", false, 5, () => {showError("Folder Renaming", "There was an unknown error while trying to rename that folder. It may be a permissions issue, or the host folder doesn't exist anymore.");});
|
|
clearModals();
|
|
}
|
|
postModal(modalOut.id);
|
|
};
|
|
cont.appendChild(conf);
|
|
input.focus();
|
|
let msm = new Mousetrap(modal);
|
|
msm.bind('esc', () => {
|
|
lightRefresh();
|
|
modalOut.remove();
|
|
postModal(modalOut.id);
|
|
});
|
|
msm.bind('enter', () => {conf.click();});
|
|
let close = document.createElement('a');
|
|
close.className = 'close-button';
|
|
close.onclick = () => {
|
|
lightRefresh();
|
|
modalOut.remove();
|
|
postModal(modalOut.id);
|
|
};
|
|
let closeWrap = document.createElement('div');
|
|
closeWrap.className = 'close-button-wrapper';
|
|
modal.appendChild(closeWrap);
|
|
closeWrap.appendChild(close);
|
|
} |