All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.dist.components.tree-view.tree-view-branch.cjs Maven / Gradle / Ivy

'use client';
'use strict';

Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });

const jsxRuntime = require('react/jsx-runtime');
const react$1 = require('@zag-js/react');
const react = require('react');
const renderStrategy = require('../../utils/render-strategy.cjs');
const collapsibleRoot = require('../collapsible/collapsible-root.cjs');
const useTreeViewContext = require('./use-tree-view-context.cjs');
const useTreeViewNodePropsContext = require('./use-tree-view-node-props-context.cjs');

const TreeViewBranch = react.forwardRef((props, ref) => {
  const treeView = useTreeViewContext.useTreeViewContext();
  const nodeProps = useTreeViewNodePropsContext.useTreeViewNodePropsContext();
  const renderStrategyProps = renderStrategy.useRenderStrategyPropsContext();
  const node = treeView.getNodeState(nodeProps);
  const mergedProps = react$1.mergeProps(treeView.getBranchProps(nodeProps), props);
  const branchContentProps = treeView.getBranchContentProps(nodeProps);
  return /* @__PURE__ */ jsxRuntime.jsx(
    collapsibleRoot.CollapsibleRoot,
    {
      ref,
      open: node.expanded,
      ids: { content: branchContentProps.id },
      ...renderStrategyProps,
      ...mergedProps
    }
  );
});
TreeViewBranch.displayName = "TreeViewBranch";

exports.TreeViewBranch = TreeViewBranch;




© 2015 - 2025 Weber Informatics LLC | Privacy Policy