Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: ADS Entity List Tree #38493

Merged
merged 62 commits into from
Jan 13, 2025
Merged

feat: ADS Entity List Tree #38493

merged 62 commits into from
Jan 13, 2025

Conversation

hetunandu
Copy link
Member

@hetunandu hetunandu commented Jan 6, 2025

Description

Introduces the List Tree component in ADS that is built on top of Entity Item component.
Uses feature flags to update the UI List Tree using this component

Fixes #37770

Automation

/ok-to-test tags="@tag.Widget"

🔍 Cypress test results

Tip

🟢 🟢 🟢 All cypress tests have passed! 🎉 🎉 🎉
Workflow run: https://github.com/appsmithorg/appsmith/actions/runs/12742248583
Commit: 31e9ae6
Cypress dashboard.
Tags: @tag.Widget
Spec:


Mon, 13 Jan 2025 08:24:24 UTC

Communication

Should the DevRel and Marketing teams inform users about this change?

  • Yes
  • No

Summary by CodeRabbit

Based on the comprehensive changes, here are the updated release notes:

  • New Features

    • Introduced a new EntityListTree component for hierarchical entity management.
    • Added a new UIEntityListTree component for rendering UI entities with enhanced navigation.
    • Implemented a feature flag for new widget tree exploration.
    • Added a new WidgetContextMenu for contextual actions on widgets.
    • Introduced a new OldWidgetEntityList component for legacy widget rendering.
    • Added a new hook for managing widget deletion.
  • Improvements

    • Enhanced widget navigation and selection mechanisms.
    • Improved entity name editing and validation with a new hook.
    • Refined explorer and context menu interactions for widgets.
    • Streamlined rendering logic for entity items and controls.
    • Improved handling of expanded widget states and interactions.
  • Bug Fixes

    • Improved handling of widget expansion and selection states.
    • Streamlined widget deletion and management processes.
  • Design System Updates

    • Updated styling for entity explorer components.
    • Refined import statements and component organization.

hetunandu and others added 27 commits January 1, 2025 14:36
Copy link
Contributor

coderabbitai bot commented Jan 6, 2025

Walkthrough

The pull request introduces a comprehensive implementation of the EntityListTree component, a reusable tree-structured UI component for rendering hierarchical lists of entities. The implementation spans multiple files across the design system and editor packages, focusing on creating a flexible, interactive tree view with support for expanding, selecting, and editing entities. The changes include styled components, type definitions, hooks, and utility functions to support the component's functionality.

Changes

File Change Summary
EntityListTree.tsx New component for rendering hierarchical tree of entities
EntityListTree.types.ts Added interfaces for tree items and component props
EntityListTree.styles.ts New styled components for tree item layout and styling
UIEntityListTree/ New module for widget-specific tree implementation
FeatureFlag.ts Added new feature flag release_ads_entity_item_enabled
List.tsx Updated widget rendering logic with feature flag
EntityListTree.test.tsx Added unit tests for EntityListTree component
useDeleteWidget.ts New hook for deleting widgets
useSwitchToWidget.ts New hook for switching to a specific widget
useNameEditorState.ts New hook for managing name editing state

Assessment against linked issues

Objective Addressed Explanation
Reusable tree component with props
Collapsible icon for toggle
Expand/hide content on icon click
Hover, active, error states
Left padding override
Nested item padding calculation
No descriptions support

Possibly related PRs

Suggested labels

Design System Product, ADS Components, skip-changelog

Suggested reviewers

  • ankitakinger
  • sagar-qa007

Poem

🌳 In branches of code, a tree takes flight,
Entities dancing with recursive might,
Expand and collapse, a digital grove,
Where widgets and logic together rove!
🍃 Behold the EntityListTree's delight! 🌿


📜 Recent review details

Configuration used: .coderabbit.yaml
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 818289e and 31e9ae6.

📒 Files selected for processing (1)
  • app/client/packages/design-system/ads/src/Templates/EntityExplorer/EntityListTree/EntityListTree.styles.ts (1 hunks)
🚧 Files skipped from review as they are similar to previous changes (1)
  • app/client/packages/design-system/ads/src/Templates/EntityExplorer/EntityListTree/EntityListTree.styles.ts
⏰ Context from checks skipped due to timeout of 90000ms (11)
  • GitHub Check: perform-test / server-build / server-unit-tests
  • GitHub Check: perform-test / client-build / client-build
  • GitHub Check: perform-test / rts-build / build
  • GitHub Check: client-unit-tests / client-unit-tests
  • GitHub Check: client-lint / client-lint
  • GitHub Check: client-build / client-build
  • GitHub Check: client-check-cyclic-deps / check-cyclic-dependencies
  • GitHub Check: client-prettier / prettier-check
  • GitHub Check: chromatic-deployment
  • GitHub Check: chromatic-deployment
  • GitHub Check: storybook-tests

Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR. (Beta)
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

@github-actions github-actions bot added Enhancement New feature or request IDE Pod Issues that new developers face while exploring the IDE labels Jan 6, 2025
@hetunandu
Copy link
Member Author

/build-deploy-preview

Copy link

Deploying Your Preview: https://github.com/appsmithorg/appsmith/actions/runs/12704712525.
Workflow: On demand build Docker image and deploy preview.
skip-tests: . env: .
PR: 38493.
recreate: .

Copy link

Deploy-Preview-URL: https://ce-38493.dp.appsmith.com

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🧹 Nitpick comments (2)
app/client/packages/design-system/ads/src/Templates/EntityExplorer/EntityListTree/EntityListTree.tsx (2)

43-58: Consider using optional chaining

The condition item.children && item.children.length could be simplified.

-{item.children && item.children.length ? (
+{item.children?.length ? (
🧰 Tools
🪛 Biome (1.9.4)

[error] 43-43: Change to an optional chain.

Unsafe fix: Change to an optional chain.

(lint/complexity/useOptionalChain)


63-69: Consider memoizing recursive component

The recursive rendering of EntityListTree could benefit from memoization to prevent unnecessary re-renders in large trees.

Consider wrapping the component with React.memo:

export const EntityListTree = React.memo(function EntityListTree(props: EntityListTreeProps) {
  // ... existing implementation
});
📜 Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 9a8d80f and d566221.

📒 Files selected for processing (10)
  • app/client/packages/design-system/ads/src/Templates/EntityExplorer/EmptyState/EmptyState.tsx (1 hunks)
  • app/client/packages/design-system/ads/src/Templates/EntityExplorer/EmptyState/EmptyState.types.ts (1 hunks)
  • app/client/packages/design-system/ads/src/Templates/EntityExplorer/EntityItem/EntityItem.styles.ts (1 hunks)
  • app/client/packages/design-system/ads/src/Templates/EntityExplorer/EntityItem/EntityItem.tsx (4 hunks)
  • app/client/packages/design-system/ads/src/Templates/EntityExplorer/EntityListTree/EntityListTree.styles.ts (1 hunks)
  • app/client/packages/design-system/ads/src/Templates/EntityExplorer/EntityListTree/EntityListTree.tsx (1 hunks)
  • app/client/packages/design-system/ads/src/Templates/EntityExplorer/ExplorerContainer/ExplorerContainer.tsx (1 hunks)
  • app/client/packages/design-system/ads/src/Templates/EntityExplorer/NoSearchResults/NoSearchResults.tsx (1 hunks)
  • app/client/packages/design-system/ads/src/Templates/EntityExplorer/SearchAndAdd/SearchAndAdd.styles.tsx (1 hunks)
  • app/client/packages/design-system/ads/src/Templates/EntityExplorer/SearchAndAdd/SearchAndAdd.tsx (1 hunks)
✅ Files skipped from review due to trivial changes (4)
  • app/client/packages/design-system/ads/src/Templates/EntityExplorer/SearchAndAdd/SearchAndAdd.styles.tsx
  • app/client/packages/design-system/ads/src/Templates/EntityExplorer/EntityItem/EntityItem.styles.ts
  • app/client/packages/design-system/ads/src/Templates/EntityExplorer/NoSearchResults/NoSearchResults.tsx
  • app/client/packages/design-system/ads/src/Templates/EntityExplorer/EmptyState/EmptyState.tsx
🚧 Files skipped from review as they are similar to previous changes (2)
  • app/client/packages/design-system/ads/src/Templates/EntityExplorer/EntityItem/EntityItem.tsx
  • app/client/packages/design-system/ads/src/Templates/EntityExplorer/EntityListTree/EntityListTree.styles.ts
🧰 Additional context used
🪛 Biome (1.9.4)
app/client/packages/design-system/ads/src/Templates/EntityExplorer/EntityListTree/EntityListTree.tsx

[error] 43-43: Change to an optional chain.

Unsafe fix: Change to an optional chain.

(lint/complexity/useOptionalChain)

⏰ Context from checks skipped due to timeout of 90000ms (10)
  • GitHub Check: perform-test / rts-build / build
  • GitHub Check: perform-test / server-build / server-unit-tests
  • GitHub Check: perform-test / client-build / client-build
  • GitHub Check: client-unit-tests / client-unit-tests
  • GitHub Check: client-lint / client-lint
  • GitHub Check: client-check-cyclic-deps / check-cyclic-dependencies
  • GitHub Check: client-build / client-build
  • GitHub Check: chromatic-deployment
  • GitHub Check: chromatic-deployment
  • GitHub Check: storybook-tests
🔇 Additional comments (5)
app/client/packages/design-system/ads/src/Templates/EntityExplorer/ExplorerContainer/ExplorerContainer.tsx (2)

2-3: LGTM! Import paths are now more direct and maintainable.

The refactored imports improve code organization by using direct paths.


Line range hint 6-19: Well-structured component with proper TypeScript typing.

The component follows React best practices with:

  • Proper prop typing
  • Consistent use of the Flex component
  • Clean prop spreading
app/client/packages/design-system/ads/src/Templates/EntityExplorer/EmptyState/EmptyState.types.ts (1)

1-2: LGTM! Improved import organization

The split imports provide better clarity on the source of each type.

app/client/packages/design-system/ads/src/Templates/EntityExplorer/SearchAndAdd/SearchAndAdd.tsx (1)

3-3: LGTM! Aligned with design system structure

Import path updated to use relative path within the design system.

app/client/packages/design-system/ads/src/Templates/EntityExplorer/EntityListTree/EntityListTree.tsx (1)

16-27: LGTM! Well-implemented event handler

The useCallback optimization and event propagation handling are correctly implemented.

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 2

🧹 Nitpick comments (5)
app/client/packages/design-system/ads/src/Templates/EntityExplorer/EntityListTree/EntityListTree.test.tsx (1)

81-112: Add test coverage for disabled state and selection behavior.

The test suite should verify:

  • Disabled items cannot be expanded/selected
  • Selection state is correctly managed
  • Name editor interactions work as expected
app/client/src/pages/Editor/IDE/EditorPane/UI/UIEntityListTree/hooks/useWidgetTreeExpandedState.ts (1)

22-25: Optimize array operations for better performance.

Consider using Set for better performance with large arrays:

-      setExpandedWidgets((prev) => [
-        ...prev,
-        ...widgetsToExpand.filter((widgetId) => !prev.includes(widgetId)),
-      ]);
+      setExpandedWidgets((prev) => {
+        const prevSet = new Set(prev);
+        widgetsToExpand.forEach(id => prevSet.add(id));
+        return Array.from(prevSet);
+      });
app/client/packages/design-system/ads/src/Templates/EntityExplorer/EntityListTree/EntityListTree.tsx (1)

51-64: Optimize conditional rendering with optional chaining.

Use optional chaining for cleaner code:

-            {item.children && item.children.length ? (
+            {item.children?.length ? (
🧰 Tools
🪛 Biome (1.9.4)

[error] 51-51: Change to an optional chain.

Unsafe fix: Change to an optional chain.

(lint/complexity/useOptionalChain)

app/client/src/pages/Editor/IDE/EditorPane/UI/UIEntityListTree/UIEntityListTree.tsx (2)

19-31: Consider memoizing selector results

The selected widgets and permissions checks could be expensive operations. Consider memoizing these values using useMemo to prevent unnecessary recalculations.

-  const widgets = useSelector(selectWidgetsForCurrentPage);
-  const selectedWidgets = useSelector(getSelectedWidgets);
+  const widgets = useSelector(selectWidgetsForCurrentPage, React.memo);
+  const selectedWidgets = useSelector(getSelectedWidgets, React.memo);

47-73: Optimize item enhancement to prevent unnecessary re-renders

The enhancement function and its callbacks are recreated on every render. Consider memoizing both the enhancement function and its callbacks.

+ const handleClick = useCallback((e, widget) => switchToWidget(e, widget), [switchToWidget]);
+ const handleDoubleClick = useCallback((widgetId) => enterEditMode(widgetId), [enterEditMode]);

+ const enhanceWidget = useCallback((widget) => ({
+   id: widget.widgetId,
+   title: widget.widgetName,
+   startIcon: <WidgetTypeIcon type={widget.type} />,
+   isSelected: selectedWidgets.includes(widget.widgetId),
+   isExpanded: expandedWidgets.includes(widget.widgetId),
+   onClick: (e) => handleClick(e, widget),
+   onDoubleClick: () => handleDoubleClick(widget.widgetId),
+   // ... rest of the enhancement logic
+ }), [selectedWidgets, expandedWidgets, handleClick, handleDoubleClick]);

- const items = enhanceItemsTree(widgets?.children || [], (widget) => ({
+ const items = useMemo(() => 
+   enhanceItemsTree(widgets?.children || [], enhanceWidget),
+ [widgets?.children, enhanceWidget]);
📜 Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between d566221 and 6bafb5e.

📒 Files selected for processing (5)
  • app/client/packages/design-system/ads/src/Templates/EntityExplorer/EntityListTree/EntityListTree.test.tsx (1 hunks)
  • app/client/packages/design-system/ads/src/Templates/EntityExplorer/EntityListTree/EntityListTree.tsx (1 hunks)
  • app/client/src/pages/Editor/IDE/EditorPane/UI/UIEntityListTree/UIEntityListTree.tsx (1 hunks)
  • app/client/src/pages/Editor/IDE/EditorPane/UI/UIEntityListTree/WidgetTypeIcon.tsx (1 hunks)
  • app/client/src/pages/Editor/IDE/EditorPane/UI/UIEntityListTree/hooks/useWidgetTreeExpandedState.ts (1 hunks)
🧰 Additional context used
🪛 Biome (1.9.4)
app/client/packages/design-system/ads/src/Templates/EntityExplorer/EntityListTree/EntityListTree.tsx

[error] 51-51: Change to an optional chain.

Unsafe fix: Change to an optional chain.

(lint/complexity/useOptionalChain)

⏰ Context from checks skipped due to timeout of 90000ms (11)
  • GitHub Check: perform-test / client-build / client-build
  • GitHub Check: perform-test / rts-build / build
  • GitHub Check: perform-test / server-build / server-unit-tests
  • GitHub Check: client-lint / client-lint
  • GitHub Check: client-check-cyclic-deps / check-cyclic-dependencies
  • GitHub Check: client-unit-tests / client-unit-tests
  • GitHub Check: client-prettier / prettier-check
  • GitHub Check: client-build / client-build
  • GitHub Check: chromatic-deployment
  • GitHub Check: storybook-tests
  • GitHub Check: chromatic-deployment
🔇 Additional comments (5)
app/client/src/pages/Editor/IDE/EditorPane/UI/UIEntityListTree/WidgetTypeIcon.tsx (1)

5-21: LGTM! Well-structured component with proper optimization.

The implementation includes:

  • Clear TypeScript interfaces
  • Performance optimization with React.memo
  • Proper fallback handling
app/client/src/pages/Editor/IDE/EditorPane/UI/UIEntityListTree/hooks/useWidgetTreeExpandedState.ts (1)

10-16: ⚠️ Potential issue

Add setExpandedWidgets to useCallback dependencies.

The handleExpand callback should include setExpandedWidgets in its dependency array.

-}, []);
+}, [setExpandedWidgets]);

Likely invalid or redundant comment.

app/client/src/pages/Editor/IDE/EditorPane/UI/UIEntityListTree/UIEntityListTree.tsx (3)

1-18: LGTM! Well-organized imports

The imports are logically grouped and all dependencies are relevant to the component's functionality.


33-44: LGTM! Well-implemented name editing logic

The name editing handlers are properly memoized and follow React's best practices.


45-46: LGTM! Clean tree state management

The tree state is managed efficiently using a custom hook.

Comment on lines 45 to 48
it("renders the EntityListTree component", () => {
render(<EntityListTree {...defaultProps} />);
expect(screen.getByRole("tree")).toBeInTheDocument();
});
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codebase verification

Add keyboard navigation implementation and tests

The component implements ARIA attributes but lacks keyboard navigation handlers required for tree view accessibility. Add keyboard support for:

  • Arrow keys for navigation
  • Enter/Space for selection
  • Home/End for first/last item
  • Expand/Collapse with arrow keys
🔗 Analysis chain

Add test coverage for keyboard navigation and accessibility.

The component implements ARIA attributes but lacks tests for keyboard navigation and accessibility features.

🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Check for keyboard event handlers in the component
rg -A 2 'onKeyDown|onKeyPress|onKeyUp' app/client/packages/design-system/ads/src/Templates/EntityExplorer/EntityListTree/

Length of output: 123


Script:

#!/bin/bash
# Check component implementation and imports
ast-grep --pattern 'export const EntityListTree = $_' app/client/packages/design-system/ads/src/Templates/EntityExplorer/EntityListTree/EntityListTree.tsx

# Look for accessibility-related code
rg -i "aria-|role=" app/client/packages/design-system/ads/src/Templates/EntityExplorer/EntityListTree/EntityListTree.tsx

Length of output: 485


Script:

#!/bin/bash
# Check for imports and component inheritance
rg -A 3 "^import.*from" app/client/packages/design-system/ads/src/Templates/EntityExplorer/EntityListTree/EntityListTree.tsx

# Check if there's a base tree component being used
ast-grep --pattern '<$_Tree'

Length of output: 74527

Comment on lines +32 to +81
return (
<Flex
flex="1"
flexDirection="column"
role={currentDepth == 0 ? "tree" : undefined}
>
{props.items.map((item) => (
<Flex flex="1" flexDirection="column" key={item.id}>
<EntityItemWrapper
alignItems="center"
aria-expanded={item.isExpanded}
aria-level={currentDepth}
aria-selected={item.isSelected}
data-depth={currentDepth}
data-disabled={item.isDisabled || false}
data-selected={item.isSelected}
flexDirection="row"
role="treeitem"
>
{item.children && item.children.length ? (
<CollapseWrapper
data-itemid={item.id}
data-testid="entity-item-expand-icon"
onClick={handleOnExpandClick}
>
<Icon
name={
item.isExpanded ? "arrow-down-s-line" : "arrow-right-s-line"
}
size="md"
/>
</CollapseWrapper>
) : (
<CollapseSpacer />
)}
<PaddingOverrider>
<EntityItem {...item} />
</PaddingOverrider>
</EntityItemWrapper>
{item.children && item.isExpanded ? (
<EntityListTree
depth={childrenDepth}
items={item.children}
onItemExpand={onItemExpand}
/>
) : null}
</Flex>
))}
</Flex>
);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🛠️ Refactor suggestion

Implement keyboard navigation for accessibility.

Add keyboard navigation handlers for:

  • Arrow keys for tree traversal
  • Home/End for first/last item
  • Enter/Space for selection

Would you like me to provide the implementation for keyboard navigation handlers?

🧰 Tools
🪛 Biome (1.9.4)

[error] 51-51: Change to an optional chain.

Unsafe fix: Change to an optional chain.

(lint/complexity/useOptionalChain)

@hetunandu
Copy link
Member Author

/build-deploy-preview

Copy link

Deploying Your Preview: https://github.com/appsmithorg/appsmith/actions/runs/12707067301.
Workflow: On demand build Docker image and deploy preview.
skip-tests: . env: .
PR: 38493.
recreate: .

Copy link

Deploy-Preview-URL: https://ce-38493.dp.appsmith.com

@hetunandu
Copy link
Member Author

/build-deploy-preview

Copy link

Deploying Your Preview: https://github.com/appsmithorg/appsmith/actions/runs/12741829453.
Workflow: On demand build Docker image and deploy preview.
skip-tests: . env: .
PR: 38493.
recreate: .

Copy link

Deploy-Preview-URL: https://ce-38493.dp.appsmith.com

@hetunandu hetunandu added ok-to-test Required label for CI and removed ok-to-test Required label for CI labels Jan 13, 2025
@hetunandu hetunandu enabled auto-merge (squash) January 13, 2025 07:27
@hetunandu hetunandu merged commit f8784fc into release Jan 13, 2025
63 of 67 checks passed
@hetunandu hetunandu deleted the feat/ads/entity-tree branch January 13, 2025 08:24
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Enhancement New feature or request IDE Pod Issues that new developers face while exploring the IDE IDE Product Issues related to the IDE Product ok-to-test Required label for CI Task A simple Todo
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Create EntityListTree component
2 participants