1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
//! Logic that implements the collapse/expand functionality.
//!
//! This is separated from the corresponding context menu action, so it may be reused directly, in
//! particular in tests.

use re_entity_db::{EntityDb, InstancePath};
use re_viewer_context::{CollapseScope, ContainerId, Contents, ViewId, ViewerContext};
use re_viewport_blueprint::ViewportBlueprint;

pub fn collapse_expand_container(
    ctx: &ViewerContext<'_>,
    blueprint: &ViewportBlueprint,
    container_id: &ContainerId,
    scope: CollapseScope,
    expand: bool,
) {
    blueprint.visit_contents_in_container(container_id, &mut |contents, _| {
        match contents {
            Contents::Container(container_id) => scope
                .container(*container_id)
                .set_open(ctx.egui_ctx, expand),

            Contents::View(view_id) => collapse_expand_view(ctx, view_id, scope, expand),
        }

        true
    });
}

pub fn collapse_expand_view(
    ctx: &ViewerContext<'_>,
    view_id: &ViewId,
    scope: CollapseScope,
    expand: bool,
) {
    scope.view(*view_id).set_open(ctx.egui_ctx, expand);

    let query_result = ctx.lookup_query_result(*view_id);
    let result_tree = &query_result.tree;
    if let Some(root_node) = result_tree.root_node() {
        collapse_expand_data_result(
            ctx,
            view_id,
            &InstancePath::entity_all(root_node.data_result.entity_path.clone()),
            scope,
            expand,
        );
    }
}

pub fn collapse_expand_data_result(
    ctx: &ViewerContext<'_>,
    view_id: &ViewId,
    instance_path: &InstancePath,
    scope: CollapseScope,
    expand: bool,
) {
    //TODO(ab): here we should in principle walk the DataResult tree instead of the entity tree
    // but the current API isn't super ergonomic.
    let Some(subtree) = ctx.recording().tree().subtree(&instance_path.entity_path) else {
        return;
    };

    subtree.visit_children_recursively(|entity_path| {
        scope
            .data_result(*view_id, entity_path.clone())
            .set_open(ctx.egui_ctx, expand);
    });
}

pub fn collapse_expand_instance_path(
    ctx: &ViewerContext<'_>,
    db: &EntityDb,
    instance_path: &InstancePath,
    scope: CollapseScope,
    expand: bool,
) {
    let Some(subtree) = db.tree().subtree(&instance_path.entity_path) else {
        return;
    };

    subtree.visit_children_recursively(|entity_path| {
        scope
            .entity(entity_path.clone())
            .set_open(ctx.egui_ctx, expand);
    });
}