import * as React from 'react'; import { css } from '@patternfly/react-styles'; import styles from '@patternfly/react-styles/css/components/DualListSelector/dual-list-selector'; import { DualListSelectorTreeItem } from './DualListSelectorTreeItem'; export interface DualListSelectorTreeItemData { /** Content rendered inside the dual list selector. */ children?: DualListSelectorTreeItemData[]; /** Additional classes applied to the dual list selector. */ className?: string; /** Flag indicating this option is expanded by default. */ defaultExpanded?: boolean; /** Flag indicating this option has a badge */ hasBadge?: boolean; /** Callback fired when an option is checked */ onOptionCheck?: ( event: React.MouseEvent | React.ChangeEvent | React.KeyboardEvent, isChecked: boolean, isChosen: boolean, itemData: DualListSelectorTreeItemData ) => void; /** ID of the option */ id: string; /** Text of the option */ text: string; /** Parent id of an option */ parentId?: string; /** Checked state of the option */ isChecked: boolean; /** Additional properties to pass to the option checkbox */ checkProps?: any; /** Additional properties to pass to the option badge */ badgeProps?: any; /** Flag indicating whether the component is disabled. */ isDisabled?: boolean; } /** Used in place of the DualListSelectorListItem sub-component when building a * composable dual list selector with a tree. */ export interface DualListSelectorTreeProps extends Omit, 'data'> { /** Data of the tree view */ data: DualListSelectorTreeItemData[] | (() => DualListSelectorTreeItemData[]); /** ID of the tree view */ id?: string; /** @hide Flag indicating if the list is nested */ isNested?: boolean; /** Flag indicating if all options should have badges */ hasBadges?: boolean; /** Sets the default expanded behavior */ defaultAllExpanded?: boolean; /** Flag indicating if the dual list selector tree is in the disabled state */ isDisabled?: boolean; /** Callback fired when an option is checked */ onOptionCheck?: ( event: React.MouseEvent | React.ChangeEvent | React.KeyboardEvent, isChecked: boolean, itemData: DualListSelectorTreeItemData ) => void; } export const DualListSelectorTree: React.FunctionComponent = ({ data, hasBadges = false, isNested = false, defaultAllExpanded = false, onOptionCheck, isDisabled = false, ...props }: DualListSelectorTreeProps) => { const dataToRender = typeof data === 'function' ? data() : data; const tree = dataToRender.map((item) => ( ) })} /> )); return isNested ? (
    {tree}
) : ( <>{tree} ); }; DualListSelectorTree.displayName = 'DualListSelectorTree';