A less blocking implementation of the entities loading UI logic.

This commit is contained in:
Fabio Manganiello 2023-05-12 03:49:20 +02:00
parent 62d846ddda
commit d4f8e51caf
Signed by: blacklight
GPG Key ID: D90FBA7F76362774
1 changed files with 19 additions and 10 deletions

View File

@ -249,10 +249,11 @@ export default {
return obj return obj
}, {}) }, {})
await this.request('entities.scan', args) this.request('entities.scan', args)
}, },
async sync() { async sync(setLoading=true) {
if (setLoading)
this.loading = true this.loading = true
try { try {
@ -272,6 +273,7 @@ export default {
this.selector.selectedEntities = this.entityGroups.id this.selector.selectedEntities = this.entityGroups.id
this.refreshEntitiesCache() this.refreshEntitiesCache()
} finally { } finally {
if (setLoading)
this.loading = false this.loading = false
} }
}, },
@ -367,13 +369,19 @@ export default {
loadCachedEntities() { loadCachedEntities() {
const cachedEntities = window.localStorage.getItem('entities') const cachedEntities = window.localStorage.getItem('entities')
if (cachedEntities) { if (cachedEntities) {
try {
this.entities = JSON.parse(cachedEntities) this.entities = JSON.parse(cachedEntities)
if (this.entities) { if (!this.entities)
throw Error('The list of cached entities is null')
} catch (e) {
console.warning('Could not parse cached entities', e)
return false
}
Object.values(this.entities).forEach((entity) => this.onEntityUpdate({entity: entity})) Object.values(this.entities).forEach((entity) => this.onEntityUpdate({entity: entity}))
this.selector.selectedEntities = this.entityGroups.id this.selector.selectedEntities = this.entityGroups.id
return true return true
} }
}
return false return false
}, },
@ -401,9 +409,10 @@ export default {
if (!this.loadCachedEntities()) { if (!this.loadCachedEntities()) {
await this.sync() await this.sync()
await this.refresh() this.refresh()
} else { } else {
await this.request('entities.scan') await this.request('entities.scan')
this.sync()
} }
setInterval(() => this.refreshEntitiesCache(), 10000) setInterval(() => this.refreshEntitiesCache(), 10000)