# JSON Tree View URL: https://ark-ui.com/docs/utilities/json-tree-view Source: https://raw.githubusercontent.com/chakra-ui/ark/refs/heads/main/website/src/content/pages/utilities/json-tree-view.mdx A component that displays JSON data in an interactive, collapsible tree structure. --- ## Anatomy To set up the JSON tree view correctly, you'll need to understand its anatomy and how we name its parts. > Each part includes a `data-part` attribute to help identify them in the DOM. ## Examples Learn how to use the `JsonTreeView` component in your project. Let's take a look at the most basic example: ### Different Data Types The JSON tree view can display various JavaScript data types including objects, arrays, primitives, and special values: ### Functions and Methods Display JavaScript functions, async functions, and generators in your JSON tree: ### Regular Expressions Regular expressions are displayed with their pattern and flags: ### Error Objects Error objects and their stack traces can be visualized: ### Map and Set Objects Native JavaScript Map and Set objects are supported: ### Controlling Expand Level Use the `defaultExpandedDepth` prop to control how many levels are expanded by default: ### Custom Value Rendering You can customize how specific values are rendered using the `renderValue` prop. This example shows how to make email addresses clickable: ### Configuration Options The JSON tree view supports several configuration options to customize the display: ```tsx } /> ``` **Configuration Options:** - **`quotesOnKeys`**: Whether to show quotes around object keys - **`showNonenumerable`**: Whether to show non-enumerable properties - **`maxPreviewItems`**: Maximum number of items to show in object/array previews - **`collapseStringsAfterLength`**: Collapse strings longer than this length - **`groupArraysAfterLength`**: Group array items when array is longer than this length ### Using the Root Provider The `RootProvider` component provides a context for the JSON tree view. It accepts the value of the `useJsonTreeView` hook. You can leverage it to access the component state and methods from outside the JSON tree view. > If you're using the `RootProvider` component, you don't need to use the `Root` component. ## API Reference **Component API Reference** #### React **JsonTreeViewRoot Props:** | Prop | Type | Required | Description | |------|------|----------|-------------| | `asChild` | `boolean` | No | Use the provided child element as the default rendered element, combining their props and behavior. | | `canRename` | `(node: JsonNode, indexPath: IndexPath) => boolean` | No | Function to determine if a node can be renamed | | `checkedValue` | `string[]` | No | The controlled checked node value | | `collapseStringsAfterLength` | `number` | No | | | `data` | `{}` | No | The data to display in the tree. | | `defaultCheckedValue` | `string[]` | No | The initial checked node value when rendered. Use when you don't need to control the checked node value. | | `defaultExpandedDepth` | `number` | No | The default expand level. | | `defaultExpandedValue` | `string[]` | No | The initial expanded node ids when rendered. Use when you don't need to control the expanded node value. | | `defaultFocusedValue` | `string` | No | The initial focused node value when rendered. Use when you don't need to control the focused node value. | | `defaultSelectedValue` | `string[]` | No | The initial selected node value when rendered. Use when you don't need to control the selected node value. | | `expandedValue` | `string[]` | No | The controlled expanded node ids | | `expandOnClick` | `boolean` | No | Whether clicking on a branch should open it or not | | `focusedValue` | `string` | No | The value of the focused node | | `groupArraysAfterLength` | `number` | No | | | `ids` | `Partial<{ root: string; tree: string; label: string; node: (value: string) => string }>` | No | The ids of the tree elements. Useful for composition. | | `lazyMount` | `boolean` | No | Whether to enable lazy mounting | | `loadChildren` | `(details: LoadChildrenDetails>) => Promise[]>` | No | Function to load children for a node asynchronously. When provided, branches will wait for this promise to resolve before expanding. | | `maxPreviewItems` | `number` | No | | | `onBeforeRename` | `(details: RenameCompleteDetails) => boolean` | No | Called before a rename is completed. Return false to prevent the rename. | | `onCheckedChange` | `(details: CheckedChangeDetails) => void` | No | Called when the checked value changes | | `onExpandedChange` | `(details: ExpandedChangeDetails>) => void` | No | Called when the tree is opened or closed | | `onFocusChange` | `(details: FocusChangeDetails>) => void` | No | Called when the focused node changes | | `onLoadChildrenComplete` | `(details: LoadChildrenCompleteDetails>) => void` | No | Called when a node finishes loading children | | `onLoadChildrenError` | `(details: LoadChildrenErrorDetails>) => void` | No | Called when loading children fails for one or more nodes | | `onRenameComplete` | `(details: RenameCompleteDetails) => void` | No | Called when a node label rename is completed | | `onRenameStart` | `(details: RenameStartDetails>) => void` | No | Called when a node starts being renamed | | `onSelectionChange` | `(details: SelectionChangeDetails>) => void` | No | Called when the selection changes | | `quotesOnKeys` | `boolean` | No | Whether to show quotes on the keys. | | `selectedValue` | `string[]` | No | The controlled selected node value | | `selectionMode` | `'single' | 'multiple'` | No | Whether the tree supports multiple selection - "single": only one node can be selected - "multiple": multiple nodes can be selected | | `showNonenumerable` | `boolean` | No | | | `typeahead` | `boolean` | No | Whether the tree supports typeahead search | | `unmountOnExit` | `boolean` | No | Whether to unmount on exit. | **JsonTreeViewRootProvider Props:** | Prop | Type | Required | Description | |------|------|----------|-------------| | `value` | `UseTreeViewReturn>` | Yes | | | `asChild` | `boolean` | No | Use the provided child element as the default rendered element, combining their props and behavior. | | `lazyMount` | `boolean` | No | Whether to enable lazy mounting | | `unmountOnExit` | `boolean` | No | Whether to unmount on exit. | **JsonTreeViewTree Props:** | Prop | Type | Required | Description | |------|------|----------|-------------| | `arrow` | `ReactElement>` | No | The icon to use for the arrow. | | `asChild` | `boolean` | No | Use the provided child element as the default rendered element, combining their props and behavior. | | `indentGuide` | `boolean | ReactElement>` | No | The indent guide to use for the tree. | | `renderValue` | `(node: JsonNodeHastElement) => ReactNode` | No | The function to render the value of the node. | #### Solid **JsonTreeViewRoot Props:** | Prop | Type | Required | Description | |------|------|----------|-------------| | `asChild` | `(props: ParentProps<'div'>) => Element` | No | Use the provided child element as the default rendered element, combining their props and behavior. | | `canRename` | `(node: any, indexPath: IndexPath) => boolean` | No | Function to determine if a node can be renamed | | `checkedValue` | `string[]` | No | The controlled checked node value | | `collapseStringsAfterLength` | `number` | No | | | `data` | `{}` | No | The data to display in the tree. | | `defaultCheckedValue` | `string[]` | No | The initial checked node value when rendered. Use when you don't need to control the checked node value. | | `defaultExpandedDepth` | `number` | No | The default expand level. | | `defaultExpandedValue` | `string[]` | No | The initial expanded node ids when rendered. Use when you don't need to control the expanded node value. | | `defaultFocusedValue` | `string` | No | The initial focused node value when rendered. Use when you don't need to control the focused node value. | | `defaultSelectedValue` | `string[]` | No | The initial selected node value when rendered. Use when you don't need to control the selected node value. | | `expandedValue` | `string[]` | No | The controlled expanded node ids | | `expandOnClick` | `boolean` | No | Whether clicking on a branch should open it or not | | `focusedValue` | `string` | No | The value of the focused node | | `groupArraysAfterLength` | `number` | No | | | `id` | `string` | No | The unique identifier of the machine. | | `ids` | `Partial<{ root: string; tree: string; label: string; node: (value: string) => string }>` | No | The ids of the tree elements. Useful for composition. | | `lazyMount` | `boolean` | No | Whether to enable lazy mounting | | `loadChildren` | `(details: LoadChildrenDetails) => Promise` | No | Function to load children for a node asynchronously. When provided, branches will wait for this promise to resolve before expanding. | | `maxPreviewItems` | `number` | No | | | `onBeforeRename` | `(details: RenameCompleteDetails) => boolean` | No | Called before a rename is completed. Return false to prevent the rename. | | `onCheckedChange` | `(details: CheckedChangeDetails) => void` | No | Called when the checked value changes | | `onExpandedChange` | `(details: ExpandedChangeDetails) => void` | No | Called when the tree is opened or closed | | `onFocusChange` | `(details: FocusChangeDetails) => void` | No | Called when the focused node changes | | `onLoadChildrenComplete` | `(details: LoadChildrenCompleteDetails) => void` | No | Called when a node finishes loading children | | `onLoadChildrenError` | `(details: LoadChildrenErrorDetails) => void` | No | Called when loading children fails for one or more nodes | | `onRenameComplete` | `(details: RenameCompleteDetails) => void` | No | Called when a node label rename is completed | | `onRenameStart` | `(details: RenameStartDetails) => void` | No | Called when a node starts being renamed | | `onSelectionChange` | `(details: SelectionChangeDetails) => void` | No | Called when the selection changes | | `quotesOnKeys` | `boolean` | No | Whether to show quotes on the keys. | | `selectedValue` | `string[]` | No | The controlled selected node value | | `selectionMode` | `'single' | 'multiple'` | No | Whether the tree supports multiple selection - "single": only one node can be selected - "multiple": multiple nodes can be selected | | `showNonenumerable` | `boolean` | No | | | `typeahead` | `boolean` | No | Whether the tree supports typeahead search | | `unmountOnExit` | `boolean` | No | Whether to unmount on exit. | **JsonTreeViewRootProvider Props:** | Prop | Type | Required | Description | |------|------|----------|-------------| | `value` | `UseTreeViewReturn>` | Yes | | | `asChild` | `(props: ParentProps<'div'>) => Element` | No | Use the provided child element as the default rendered element, combining their props and behavior. | | `lazyMount` | `boolean` | No | Whether to enable lazy mounting | | `unmountOnExit` | `boolean` | No | Whether to unmount on exit. | **JsonTreeViewTree Props:** | Prop | Type | Required | Description | |------|------|----------|-------------| | `arrow` | `number | boolean | Node | (string & {}) | ArrayElement` | No | The icon to use for the arrow. | | `asChild` | `(props: ParentProps<'div'>) => Element` | No | Use the provided child element as the default rendered element, combining their props and behavior. | | `indentGuide` | `number | boolean | Node | (string & {}) | ArrayElement` | No | The indent guide to use for the tree. | | `renderValue` | `(node: JsonNodeHastElement) => Element` | No | The function to render the value of the node. | #### Vue **JsonTreeViewRoot Props:** | Prop | Type | Required | Description | |------|------|----------|-------------| | `data` | `object` | Yes | The data to display in the tree. | | `asChild` | `boolean` | No | Use the provided child element as the default rendered element, combining their props and behavior. | | `canRename` | `(node: JsonNode, indexPath: number[]) => boolean` | No | Function to determine if a node can be renamed | | `checkedValue` | `string[]` | No | The controlled checked node values | | `collapseStringsAfterLength` | `number` | No | | | `defaultCheckedValue` | `string[]` | No | The initial checked node values when rendered. Use when you don't need to control the checked node values. | | `defaultExpandedDepth` | `number` | No | The default expand level. | | `defaultExpandedValue` | `string[]` | No | The initial expanded node values when rendered. Use when you don't need to control the expanded node values. | | `defaultFocusedValue` | `string` | No | The initial focused node value when rendered. Use when you don't need to control the focused node value. | | `defaultSelectedValue` | `string[]` | No | The initial selected node values when rendered. Use when you don't need to control the selected node values. | | `expandedValue` | `string[]` | No | The controlled expanded node values | | `expandOnClick` | `boolean` | No | Whether clicking on a branch should open it or not | | `focusedValue` | `string` | No | The id of the focused node | | `groupArraysAfterLength` | `number` | No | | | `id` | `string` | No | The unique identifier of the machine. | | `ids` | `Partial<{ root: string; tree: string; label: string; node(value: string): string }>` | No | The ids of the tree elements. Useful for composition. | | `lazyMount` | `boolean` | No | Whether to enable lazy mounting | | `loadChildren` | `(details: LoadChildrenDetails>) => Promise[]>` | No | A function that loads the children of a node. | | `maxPreviewItems` | `number` | No | | | `quotesOnKeys` | `boolean` | No | Whether to show quotes on the keys. | | `selectedValue` | `string[]` | No | The controlled selected node values | | `selectionMode` | `'single' | 'multiple'` | No | Whether the tree supports multiple selection - "single": only one node can be selected - "multiple": multiple nodes can be selected | | `showNonenumerable` | `boolean` | No | | | `typeahead` | `boolean` | No | Whether the tree supports typeahead search | | `unmountOnExit` | `boolean` | No | Whether to unmount on exit. | **JsonTreeViewRootProvider Props:** | Prop | Type | Required | Description | |------|------|----------|-------------| | `value` | `TreeViewApi>` | Yes | | | `asChild` | `boolean` | No | Use the provided child element as the default rendered element, combining their props and behavior. | | `lazyMount` | `boolean` | No | Whether to enable lazy mounting | | `unmountOnExit` | `boolean` | No | Whether to unmount on exit. | **JsonTreeViewTree Props:** | Prop | Type | Required | Description | |------|------|----------|-------------| | `asChild` | `boolean` | No | Use the provided child element as the default rendered element, combining their props and behavior. | | `indentGuide` | `boolean` | No | | #### Svelte **JsonTreeViewRoot Props:** | Prop | Type | Required | Description | |------|------|----------|-------------| | `asChild` | `Snippet<[PropsFn<'div'>]>` | No | Use the provided child element as the default rendered element, combining their props and behavior. | | `canRename` | `(node: JsonNode, indexPath: IndexPath) => boolean` | No | Function to determine if a node can be renamed | | `checkedValue` | `string[]` | No | The controlled checked node value | | `collapseStringsAfterLength` | `number` | No | | | `data` | `{}` | No | The data to display in the tree. | | `defaultCheckedValue` | `string[]` | No | The initial checked node value when rendered. Use when you don't need to control the checked node value. | | `defaultExpandedDepth` | `number` | No | The default expand level. | | `defaultExpandedValue` | `string[]` | No | The initial expanded node ids when rendered. Use when you don't need to control the expanded node value. | | `defaultFocusedValue` | `string` | No | The initial focused node value when rendered. Use when you don't need to control the focused node value. | | `defaultSelectedValue` | `string[]` | No | The initial selected node value when rendered. Use when you don't need to control the selected node value. | | `expandedValue` | `string[]` | No | The controlled expanded node ids | | `expandOnClick` | `boolean` | No | Whether clicking on a branch should open it or not | | `focusedValue` | `string` | No | The value of the focused node | | `groupArraysAfterLength` | `number` | No | | | `id` | `string` | No | The unique identifier of the machine. | | `ids` | `Partial<{ root: string; tree: string; label: string; node: (value: string) => string }>` | No | The ids of the tree elements. Useful for composition. | | `lazyMount` | `boolean` | No | Whether to enable lazy mounting | | `loadChildren` | `(details: LoadChildrenDetails>) => Promise[]>` | No | Function to load children for a node asynchronously. When provided, branches will wait for this promise to resolve before expanding. | | `maxPreviewItems` | `number` | No | | | `onBeforeRename` | `(details: RenameCompleteDetails) => boolean` | No | Called before a rename is completed. Return false to prevent the rename. | | `onCheckedChange` | `(details: CheckedChangeDetails) => void` | No | Called when the checked value changes | | `onExpandedChange` | `(details: ExpandedChangeDetails>) => void` | No | Called when the tree is opened or closed | | `onFocusChange` | `(details: FocusChangeDetails>) => void` | No | Called when the focused node changes | | `onLoadChildrenComplete` | `(details: LoadChildrenCompleteDetails>) => void` | No | Called when a node finishes loading children | | `onLoadChildrenError` | `(details: LoadChildrenErrorDetails>) => void` | No | Called when loading children fails for one or more nodes | | `onRenameComplete` | `(details: RenameCompleteDetails) => void` | No | Called when a node label rename is completed | | `onRenameStart` | `(details: RenameStartDetails>) => void` | No | Called when a node starts being renamed | | `onSelectionChange` | `(details: SelectionChangeDetails>) => void` | No | Called when the selection changes | | `quotesOnKeys` | `boolean` | No | Whether to show quotes on the keys. | | `ref` | `Element` | No | | | `selectedValue` | `string[]` | No | The controlled selected node value | | `selectionMode` | `'single' | 'multiple'` | No | Whether the tree supports multiple selection - "single": only one node can be selected - "multiple": multiple nodes can be selected | | `showNonenumerable` | `boolean` | No | | | `typeahead` | `boolean` | No | Whether the tree supports typeahead search | | `unmountOnExit` | `boolean` | No | Whether to unmount on exit. | **JsonTreeViewRootProvider Props:** | Prop | Type | Required | Description | |------|------|----------|-------------| | `value` | `UseTreeViewReturn>` | Yes | | | `asChild` | `Snippet<[PropsFn<'div'>]>` | No | Use the provided child element as the default rendered element, combining their props and behavior. | | `lazyMount` | `boolean` | No | Whether to enable lazy mounting | | `ref` | `Element` | No | | | `unmountOnExit` | `boolean` | No | Whether to unmount on exit. | **JsonTreeViewTree Props:** | Prop | Type | Required | Description | |------|------|----------|-------------| | `arrow` | `Snippet<[]>` | No | The icon to use for the arrow. | | `asChild` | `Snippet<[PropsFn<'ul'>]>` | No | Use the provided child element as the default rendered element, combining their props and behavior. | | `indentGuide` | `boolean | Snippet<[]>` | No | The indent guide to use for the tree. | | `ref` | `Element` | No | | | `renderValue` | `Snippet<[JsonNodeHastElement]>` | No | The function to render the value of the node. | ## Accessibility The JSON tree view is built on top of the Tree View component and complies with the [Tree View WAI-ARIA design pattern](https://www.w3.org/WAI/ARIA/apg/patterns/treeview/). ### Keyboard Support