handle findPlaylists notification and fix spacing

This commit is contained in:
simon 2021-12-05 22:15:10 +07:00
parent 8874168291
commit 7516090e14
No known key found for this signature in database
GPG Key ID: 2C15AA5E89985DD4
3 changed files with 7 additions and 6 deletions

View File

@ -277,14 +277,13 @@ def index_channel_playlists(channel_id):
all_indexed = PendingList().get_all_indexed()
all_youtube_ids = [i["youtube_id"] for i in all_indexed]
counter = 1
for playlist_id, playlist_title in all_playlists:
for idx, (playlist_id, playlist_title) in enumerate(all_playlists):
# notify
mess_dict = {
"status": "message:playlistscan",
"level": "info",
"title": "Scanning channel for playlists",
"message": f"Progress: {counter}/{len(all_playlists)}",
"message": f"Progress: {idx + 1}/{len(all_playlists)}",
}
RedisArchivist().set_message("message:playlistscan", mess_dict)
print("add playlist: " + playlist_title)
@ -305,7 +304,6 @@ def index_channel_playlists(channel_id):
continue
playlist_handler.upload_to_es()
playlist_handler.add_vids_to_playlist()
counter = counter + 1
if all_playlists:
handler = ThumbManager()

View File

@ -808,7 +808,7 @@ button:hover {
.dl-control-icons {
display: flex;
justify-content: center;
padding: 10px 0;
padding-bottom: 10px;
}
.dl-control-icons img {
@ -835,7 +835,7 @@ button:hover {
background-color: var(--highlight-bg);
text-align: center;
padding: 30px 0 15px 0;
margin-bottom: 1rem;
margin: 1rem 0;
}
.notification.info {

View File

@ -225,6 +225,9 @@ function findPlaylists(button) {
var message = document.createElement('p');
message.innerText = 'Scraping for playlists in progress';
document.getElementById("find-playlists-button").replaceWith(message);
setTimeout(function(){
checkMessages();
}, 500);
}
// delete from file system