Merge pull request #5 from sup39/main

Add timestamp to saved png file name
This commit is contained in:
Wiwi Kuan 2023-04-17 13:53:23 +08:00 committed by GitHub
commit 3377d1cf35
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -221,7 +221,17 @@ function truncateString(str, maxLength = 40) {
function mouseClicked() {
// Save the canvas content as an image file
if (mouseX < 50 && mouseY < 50) {
saveCanvas('nicechord-pianometer', 'png');
const now = new Date();
const strDate =
now.getFullYear() +
String(now.getMonth()+1).padStart(2, '0') +
String(now.getDate()).padStart(2, '0');
const strTime =
String(now.getHours()).padStart(2, '0') +
String(now.getMinutes()).padStart(2, '0') +
String(now.getSeconds()).padStart(2, '0');
const fileName = `nicechord-pianometer-${strDate}_${strTime}`;
saveCanvas(fileName, 'png');
}
if (mouseY > 76) {
if (mouseX <= 84) {
@ -245,4 +255,4 @@ function mouseClicked() {
}
}
console.log(mouseX, mouseY);
}
}