Don't load entities that only have non-queriable children

This commit is contained in:
Fabio Manganiello 2023-01-14 22:33:53 +01:00
parent 2778357a9e
commit afd9a1d6bf
Signed by: blacklight
GPG Key ID: D90FBA7F76362774
1 changed files with 18 additions and 1 deletions

View File

@ -177,6 +177,23 @@ export default {
}, {})
},
_shouldSkipLoading(entity) {
const children = Object.values(this.childrenByParentId(entity.id))
const hasReadableChildren = children.filter((child) => {
return (
!child.is_configuration &&
!child.is_write_only &&
!child.is_query_disabled
)
}).length > 0
return (
entity.is_query_disabled ||
entity.is_write_only ||
(children.length && !hasReadableChildren)
)
},
async refresh(group) {
const entities = (group ? group.entities : this.entities) || {}
const args = {}
@ -187,7 +204,7 @@ export default {
}, {}))
this.loadingEntities = Object.values(entities).reduce((obj, entity) => {
if (entity.is_query_disabled || entity.is_write_only)
if (this._shouldSkipLoading(entity))
return obj
const self = this