chore: improved function naming

This commit is contained in:
Matthias 2024-11-20 20:13:32 +01:00
parent 72f2b6d6d8
commit 8b8a7a0f06

View File

@ -23,17 +23,17 @@ export function useBackgroundJob() {
try { try {
result.value = await getBackgroundJobStatus(jobId); result.value = await getBackgroundJobStatus(jobId);
if (!result.value.running) { if (!result.value.running) {
clearJobFromList(); clearJobFromRunningList();
} }
jobs.value[jobId] = { ...jobs.value[jobId], taskStatus: result.value }; jobs.value[jobId] = { ...jobs.value[jobId], taskStatus: result.value };
} catch (error) { } catch (error) {
console.error(error); console.error(error);
showAlert('Failed to get background job status', 'error'); showAlert('Failed to get background job status', 'error');
clearJobFromList(); clearJobFromRunningList();
} }
}, 500); }, 500);
function clearJobFromList() { function clearJobFromRunningList() {
if (interval) { if (interval) {
clearInterval(interval); clearInterval(interval);
} }
@ -47,6 +47,7 @@ export function useBackgroundJob() {
} }
const runningJobs = computed(() => jobs.value); const runningJobs = computed(() => jobs.value);
function clearJobs() { function clearJobs() {
// Clear all jobs that are not running // Clear all jobs that are not running
for (const [jobId, job] of Object.entries(jobs.value)) { for (const [jobId, job] of Object.entries(jobs.value)) {