Skip to content

Commit

Permalink
fix: show whole block tree to support radix components (#4555)
Browse files Browse the repository at this point in the history
We decided to show whole block tree so clients could open popover or tab
content and edit text inside.

<img width="282" alt="image"
src="https://github.com/user-attachments/assets/36d872f2-15f5-4fd5-98aa-e3a644883cf1">
  • Loading branch information
TrySound authored Dec 11, 2024
1 parent 18082cb commit 8115ee9
Showing 1 changed file with 7 additions and 11 deletions.
18 changes: 7 additions & 11 deletions apps/builder/app/builder/features/navigator/navigator-tree.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -145,12 +145,14 @@ export const $flatTree = computed(
if (instance.component === "Fragment") {
isVisible = false;
}
const parentComponent = visibleAncestors.at(-1)?.component;
if (isContentMode) {
// hide everything except block and its children
// hide everything outside of block instances
const hasBlockAncestor = visibleAncestors.some(
(ancestor) => ancestor?.component === blockComponent
);
if (
instance.component !== blockComponent &&
parentComponent !== blockComponent
hasBlockAncestor === false
) {
isVisible = false;
}
Expand All @@ -171,14 +173,8 @@ export const $flatTree = computed(
flatTree.push(treeItem);
}
const level = treeItem.visibleAncestors.length - 1;
// expand everything in content mode
if (isContentMode === false) {
if (
level > 0 &&
instance.children.some((child) => child.type === "id")
) {
treeItem.isExpanded = expandedItems.has(selector.join());
}
if (level > 0 && instance.children.some((child) => child.type === "id")) {
treeItem.isExpanded = expandedItems.has(selector.join());
}
// always expand invisible items
if (isVisible === false) {
Expand Down

0 comments on commit 8115ee9

Please sign in to comment.