Merge pull request #2501 from cheahjs/feat/speed-up-loading

refac: speed up app mount by parallelizing API requests
This commit is contained in:
Timothy Jaeryang Baek 2024-05-22 09:39:55 -10:00 committed by GitHub
commit bf6f0c380b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 19 additions and 7 deletions

View File

@ -87,17 +87,29 @@
// IndexedDB Not Found
}
await models.set(await getModels());
await settings.set(JSON.parse(localStorage.getItem('settings') ?? '{}'));
settings.set(JSON.parse(localStorage.getItem('settings') ?? '{}'));
await modelfiles.set(await getModelfiles(localStorage.token));
await prompts.set(await getPrompts(localStorage.token));
await documents.set(await getDocs(localStorage.token));
await tags.set(await getAllChatTags(localStorage.token));
await Promise.all([
(async () => {
models.set(await getModels());
})(),
(async () => {
modelfiles.set(await getModelfiles(localStorage.token));
})(),
(async () => {
prompts.set(await getPrompts(localStorage.token));
})(),
(async () => {
documents.set(await getDocs(localStorage.token));
})(),
(async () => {
tags.set(await getAllChatTags(localStorage.token));
})()
]);
modelfiles.subscribe(async () => {
// should fetch models
await models.set(await getModels());
models.set(await getModels());
});
document.addEventListener('keydown', function (event) {