albums: support custom album titles

This commit is contained in:
mappu 2023-05-17 19:21:48 +12:00
parent 660038b897
commit 7407353dfb
1 changed files with 13 additions and 6 deletions

View File

@ -212,10 +212,8 @@
</div>
<div class="contented-upload-if contented-if-album">
<label>
Type a list of short IDs, separated with commas:<br>
<input class="contented-album-input" type="text">
</label>
<input type="text" class="contented-album-title" placeholder="Album name"><br>
<input type="text" class="contented-album-items" placeholder="Image IDs, separated with commas">
<br><br>
<button class="contented-album-upload">Make album &raquo;</button>
</div>
@ -328,7 +326,12 @@
e.preventDefault();
e.stopPropagation();
var childIDs = $(".contented-album-input").val().split(",");
var title = $(".contented-album-title").val();
if (title === "") {
title = "Untitled album";
}
var childIDs = $(".contented-album-items").val().split(",");
for (var i = 0; i < childIDs.length; ++i) {
childIDs[i] = childIDs[i].trim(); // Basic validation - can't really perform full validation here
@ -345,7 +348,7 @@
}
var blob = new Blob([JSON.stringify(childIDs)], {type : 'contented/album'});
handleUploadFrom([blob]);
handleUploadFrom([new File([blob], title, {type: 'contented/album'})]);
});
// Ctrl+V uploads
@ -484,6 +487,10 @@
// Common upload handler
/**
*
* @param {File[]|Blob[]} files
*/
var handleUploadFrom = function(files) {
setProgressCaption("Uploading, please wait...");