Merge pull request #816 from movie-web/promise-dot-all

Use Promise.all for simultaneous calls
This commit is contained in:
mrjvs 2024-01-24 15:21:57 +01:00 committed by GitHub
commit 0295dc41ee
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 9 additions and 5 deletions

View File

@ -149,8 +149,10 @@ export function useAuth() {
bookmarkMediaToInput(tmdbId, item), bookmarkMediaToInput(tmdbId, item),
); );
await importProgress(backendUrl, account, progressInputs); await Promise.all([
await importBookmarks(backendUrl, account, bookmarkInputs); importProgress(backendUrl, account, progressInputs),
importBookmarks(backendUrl, account, bookmarkInputs),
]);
}, },
[backendUrl], [backendUrl],
); );
@ -174,9 +176,11 @@ export function useAuth() {
throw err; throw err;
} }
const bookmarks = await getBookmarks(backendUrl, account); const [bookmarks, progress, settings] = await Promise.all([
const progress = await getProgress(backendUrl, account); getBookmarks(backendUrl, account),
const settings = await getSettings(backendUrl, account); getProgress(backendUrl, account),
getSettings(backendUrl, account),
]);
syncData(user.user, user.session, progress, bookmarks, settings); syncData(user.user, user.session, progress, bookmarks, settings);
}, },