style
This commit is contained in:
parent
c9704764ae
commit
9f4e007818
2 changed files with 31 additions and 0 deletions
|
|
@ -1507,6 +1507,7 @@ function cleanupDownloadProcess(playlistId) {
|
|||
|
||||
// Restore card UI
|
||||
updatePlaylistCardUI(playlistId);
|
||||
updateRefreshButtonState();
|
||||
}
|
||||
|
||||
function togglePlaylistSelection(event) {
|
||||
|
|
@ -1858,6 +1859,7 @@ async function startTrackAnalysis(playlistId) {
|
|||
try {
|
||||
process.status = 'running';
|
||||
updatePlaylistCardUI(playlistId);
|
||||
updateRefreshButtonState();
|
||||
|
||||
document.getElementById(`begin-analysis-btn-${playlistId}`).style.display = 'none';
|
||||
document.getElementById(`cancel-all-btn-${playlistId}`).style.display = 'inline-block';
|
||||
|
|
@ -2331,6 +2333,7 @@ function startSyncPolling(playlistId) {
|
|||
updateCardToDefault(playlistId, { status: 'error', error: 'Polling failed' });
|
||||
}
|
||||
}, 2000); // Poll every 2 seconds
|
||||
updateRefreshButtonState();
|
||||
}
|
||||
|
||||
function stopSyncPolling(playlistId) {
|
||||
|
|
@ -2338,6 +2341,33 @@ function stopSyncPolling(playlistId) {
|
|||
clearInterval(activeSyncPollers[playlistId]);
|
||||
delete activeSyncPollers[playlistId];
|
||||
}
|
||||
updateRefreshButtonState();
|
||||
}
|
||||
|
||||
function hasActiveOperations() {
|
||||
const hasActiveSyncs = Object.keys(activeSyncPollers).length > 0;
|
||||
const hasActiveDownloads = Object.values(activeDownloadProcesses).some(p => p.status === 'running');
|
||||
return hasActiveSyncs || hasActiveDownloads;
|
||||
}
|
||||
|
||||
|
||||
function updateRefreshButtonState() {
|
||||
const refreshBtn = document.getElementById('spotify-refresh-btn');
|
||||
if (!refreshBtn) return;
|
||||
|
||||
if (hasActiveOperations()) {
|
||||
refreshBtn.disabled = true;
|
||||
// Provide context-specific text
|
||||
const hasActiveSyncs = Object.keys(activeSyncPollers).length > 0;
|
||||
if (hasActiveSyncs) {
|
||||
refreshBtn.textContent = '🔄 Syncing...';
|
||||
} else {
|
||||
refreshBtn.textContent = '📥 Downloading...';
|
||||
}
|
||||
} else {
|
||||
refreshBtn.disabled = false;
|
||||
refreshBtn.textContent = '🔄 Refresh';
|
||||
}
|
||||
}
|
||||
|
||||
function updateCardToSyncing(playlistId, percent, progress = null) {
|
||||
|
|
|
|||
|
|
@ -4318,6 +4318,7 @@ body {
|
|||
.playlist-modal-body {
|
||||
flex: 1;
|
||||
padding: 0 28px;
|
||||
padding-left: 0;
|
||||
overflow: hidden;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
|
|
|
|||
Loading…
Reference in a new issue