add rename file
This commit is contained in:
parent
80858d71c7
commit
400ae27ae0
@ -5,7 +5,10 @@
|
|||||||
// All paths require trailing slashes!
|
// All paths require trailing slashes!
|
||||||
$rootDir = __DIR__ . '/../images/';
|
$rootDir = __DIR__ . '/../images/';
|
||||||
// The URI at which the rootDir will be served
|
// The URI at which the rootDir will be served
|
||||||
$rootPath = 'images/';
|
// Use /images/ for testing
|
||||||
|
// When the app is not served at the root https://example.com/ but at a sublocation like https://example.com/imgsort2/,
|
||||||
|
// you might need to set it to just `images` without the /
|
||||||
|
$rootPath = '/images/';
|
||||||
// Path of the directory containing all the files to be sorted, relative to $rootDir
|
// Path of the directory containing all the files to be sorted, relative to $rootDir
|
||||||
$stagingDirName = '.sort/';
|
$stagingDirName = '.sort/';
|
||||||
|
|
||||||
@ -77,27 +80,23 @@
|
|||||||
/**
|
/**
|
||||||
* Move a file from staging to the destination directory
|
* Move a file from staging to the destination directory
|
||||||
* @param file relative to stagingDir
|
* @param file relative to stagingDir
|
||||||
* @param dir relative to rootDir
|
* @param dest new filename relative to rootDir
|
||||||
*/
|
*/
|
||||||
function moveFile($file, $dir) {
|
function moveFile($file, $dest) {
|
||||||
global $stagingDir, $rootDir;
|
global $stagingDir, $rootDir;
|
||||||
$fullFile = $stagingDir . $file;
|
$fullFile = $stagingDir . $file;
|
||||||
$fullDir = $rootDir . $dir . "/";
|
$fullDest = $rootDir . $dest;
|
||||||
$fullDest = $fullDir . basename($fullFile);
|
|
||||||
return saveMove($fullFile, $fullDest);
|
return saveMove($fullFile, $fullDest);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Move a file from destination directory back to the staging directory
|
* Like movefile, except reversed
|
||||||
* @param dir relative to rootDir
|
|
||||||
* @param file relative to rootDir/dir
|
|
||||||
*/
|
*/
|
||||||
function undoFile($file, $dir) {
|
function undoFile($file, $dest) {
|
||||||
global $stagingDir, $rootDir;
|
global $stagingDir, $rootDir;
|
||||||
$fullDir = $rootDir . $dir . "/";
|
$fullFile = $stagingDir . $file;
|
||||||
$fullFile = $fullDir . $file;
|
$fullDest = $rootDir . $dest;
|
||||||
$fullDest = $stagingDir . basename($fullFile);
|
return saveMove($fullDest, $fullFile);
|
||||||
return saveMove($fullFile, $fullDest);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -22,6 +22,7 @@
|
|||||||
|
|
||||||
<div class="second-box">
|
<div class="second-box">
|
||||||
<div id="buttons">
|
<div id="buttons">
|
||||||
|
<input id="filename" placeholder="filename" type="text" class="filename-input">No file</input>
|
||||||
<button onclick="undo()" id="undo-button">Undo</button>
|
<button onclick="undo()" id="undo-button">Undo</button>
|
||||||
<button onclick="skip()" id="skip-button">Skip</button>
|
<button onclick="skip()" id="skip-button">Skip</button>
|
||||||
<span class="move-buttons" id="move-buttons"></span>
|
<span class="move-buttons" id="move-buttons"></span>
|
||||||
|
49
src/index.js
49
src/index.js
@ -2,6 +2,9 @@ const imageExtensions = ['gif','jpg','jpeg','png', 'webp'];
|
|||||||
const videoExtensions =['mpg', 'mp2', 'mpeg', 'mpe', 'mpv', 'mp4'];
|
const videoExtensions =['mpg', 'mp2', 'mpeg', 'mpe', 'mpv', 'mp4'];
|
||||||
const audioExtensions =['mp3', 'ogg', 'wav', 'flac'];
|
const audioExtensions =['mp3', 'ogg', 'wav', 'flac'];
|
||||||
|
|
||||||
|
const invalidFileNameCharsRe =/[^\\/\|:\*\?"<>]/; // dont allow \/|:*?<>
|
||||||
|
const invalidFileNameChars = "\\/|:*?<>";
|
||||||
|
|
||||||
const mappings = new Map(JSON.parse(localStorage.getItem('mappings')) || []);
|
const mappings = new Map(JSON.parse(localStorage.getItem('mappings')) || []);
|
||||||
let statusLine = document.getElementById('status');
|
let statusLine = document.getElementById('status');
|
||||||
// store for when done with sorting TODO display
|
// store for when done with sorting TODO display
|
||||||
@ -203,6 +206,11 @@ function setCurrentFile() {
|
|||||||
currentFile = "";
|
currentFile = "";
|
||||||
statusLine.textContent = "No more files to sort";
|
statusLine.textContent = "No more files to sort";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// set filename in input field
|
||||||
|
const fileNameNoExt = currentFile.replace(/\.[^/.]+$/, "");
|
||||||
|
document.getElementById('filename').value = fileNameNoExt;
|
||||||
|
|
||||||
renderCurrentFile();
|
renderCurrentFile();
|
||||||
renderFileList();
|
renderFileList();
|
||||||
}
|
}
|
||||||
@ -211,15 +219,35 @@ function setCurrentFile() {
|
|||||||
|
|
||||||
async function moveFile(directory) {
|
async function moveFile(directory) {
|
||||||
if (!currentFile) {
|
if (!currentFile) {
|
||||||
statusLine.innerHTML = "No file to process!";
|
statusLine.textContent = "No file to process!";
|
||||||
return
|
return;
|
||||||
}
|
}
|
||||||
const response = await fetch(`imgsort.php?action=moveFile&file=${escape(currentFile)}&dest=${directory}`);
|
const userSetFilename = document.getElementById('filename').value;
|
||||||
|
if (!userSetFilename) {
|
||||||
|
statusLine.textContent = "Filename must not be empty";
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
// file names invalid on windows not handled
|
||||||
|
if (invalidFileNameCharsRe.test(userSetFilename)) {
|
||||||
|
statusLine.textContent = `Filename must not contain ${invalidFileNameChars}`;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// re-add the extension
|
||||||
|
const fileExt = currentFile.split('.').pop();
|
||||||
|
let filename = userSetFilename + '.' + fileExt;
|
||||||
|
|
||||||
|
let newFilePath = directory + '/' + filename;
|
||||||
|
const response = await fetch(`imgsort.php?action=moveFile&file=${escape(currentFile)}&dest=${escape(newFilePath)}`);
|
||||||
const text = await response.text();
|
const text = await response.text();
|
||||||
// console.log(text);
|
// console.log(text);
|
||||||
if (response.ok) {
|
if (response.ok) {
|
||||||
statusLine.textContent = `Moved '${currentFile}' to '${directory}'`;
|
if (filename != currentFile) {
|
||||||
history.push([currentFile, directory]);
|
statusLine.textContent = `Moved '${currentFile}' to '${directory}'`;
|
||||||
|
} else {
|
||||||
|
statusLine.textContent = `Moved '${currentFile}' to '${directory}' as '${filename}'`;
|
||||||
|
}
|
||||||
|
history.push([currentFile, newFilePath]);
|
||||||
// remove file from list
|
// remove file from list
|
||||||
fileList.splice(currentFileIdx, 1);
|
fileList.splice(currentFileIdx, 1);
|
||||||
// set next file
|
// set next file
|
||||||
@ -237,12 +265,12 @@ async function undo() {
|
|||||||
statusLine.textContent = "Nothing to undo"
|
statusLine.textContent = "Nothing to undo"
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
const [file, directory] = history.pop();
|
const [file, newFilePath] = history.pop();
|
||||||
const response = await fetch(`imgsort.php?action=undoFile&file=${escape(file)}&dest=${directory}`);
|
const response = await fetch(`imgsort.php?action=undoFile&file=${escape(file)}&dest=${escape(newFilePath)}`);
|
||||||
const text = await response.text();
|
const text = await response.text();
|
||||||
// console.log(text);
|
// console.log(text);
|
||||||
if (response.ok) {
|
if (response.ok) {
|
||||||
statusLine.innerHTML = `Undo: move '${file}' to '${directory}'`;
|
statusLine.textContent = `Undo: move '${file}' to '${newFilePath}'`;
|
||||||
await setFileList()
|
await setFileList()
|
||||||
setCurrentFile();
|
setCurrentFile();
|
||||||
}
|
}
|
||||||
@ -276,6 +304,11 @@ window.onload = function() {
|
|||||||
|
|
||||||
// handle keyboard
|
// handle keyboard
|
||||||
document.onkeypress = function(e) {
|
document.onkeypress = function(e) {
|
||||||
|
// dont handle keys while user is typing in filename box
|
||||||
|
if (document.querySelector('input') === document.activeElement) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
e = e || window.event;
|
e = e || window.event;
|
||||||
let keydebug = document.getElementById("keydebug");
|
let keydebug = document.getElementById("keydebug");
|
||||||
if (keydebug) {
|
if (keydebug) {
|
||||||
|
Loading…
Reference in New Issue
Block a user