Btw, I’ve realised tk-multi-workfiles2
needs a couple of extra small tweaks:
These in deferred_model.py
:
__init__
:
...
# A bool used to track if a data_refreshed signal emission has been posted
# in the event queue, to ensure there is only one at any given time.
self._pending_delayed_data_refreshed = False
if deferred_query and deferred_query["linked_to_field"]:
fields += [deferred_query["linked_to_field"]]
super().__init__(entity_type, filters, hierarchy, fields, *args, **kwargs)
...
_run_deferred_query_for_entity
:
...
# Retrieve the deferred query filters and amend them to return results
# linked to the given Entity.
filters = deferred_query["filters"][:]
link_field_name = deferred_query["link_field"]
linked_to_field_name = deferred_query["linked_to_field"]
linked_to_entity = sg_entity[linked_to_field_name] if linked_to_field_name else sg_entity
filters.append([link_field_name, "is", linked_to_entity])
# Append extra filters, (step filtering).
if self._extra_filter:
filters.append(self._extra_filter)
...
and this in _build_entity_models
in file_form_base.py
:
...
# A list of fields to retrieve in the sub query.
sub_hierarchy = sub_query.get("hierarchy") or []
# The PTR field allowing linking the sub query Entity to its
# parent Entity.
sub_link_field = sub_query.get("link_field", "entity")
sub_linked_to_field = sub_query.get("linked_to_field")
deferred_query = {
"entity_type": sub_entity_type,
"filters": sub_filters,
"hierarchy": sub_hierarchy,
"link_field": sub_link_field,
"linked_to_field": sub_linked_to_field,
}
# Check the hierarchy to use for the model for this entity:
if not hierarchy:
...
And now my configuration of the app is:
...
- caption: Assets
entity_type: Asset
filters:
- [parents, is, null]
hierarchy:
- sg_asset_type
- code
sub_hierarchy: &tk-multi-workfiles2_all_engines_entities_Asset_sub_hierarchy
entity_type: Task
link_field: entity
hierarchy: [step]
- caption: Subassets
entity_type: AssetAssetConnection
filters:
- [parent, is_not, null]
hierarchy:
- parent.Asset.code
- asset.Asset.sg_asset_type
- asset.Asset.code
sub_hierarchy:
<<: *tk-multi-workfiles2_all_engines_entities_Asset_sub_hierarchy
entity_type: Task
link_field: entity
linked_to_field: asset
...
Because I’ve realised that because of the ambiguity of the link table, it’s only possible to have two tiers of of Assets in the tree.
I can’t do a third or beyond, because hierarchy
would need to navigate beyond the parent Asset
into another AssetAssetConnection
and at that point it becomes ambiguous because it’s one-to-many.
(but as previously established, this would all be very straightforward by adding a field to Asset which links to a single parent Asset)