|
|
|
@ -4,7 +4,7 @@ import { TreeViewItemProps } from '../../types' |
|
|
|
|
import './tree-view-item.css' |
|
|
|
|
|
|
|
|
|
export const TreeViewItem = (props: TreeViewItemProps) => { |
|
|
|
|
const { id, children, label, labelClass, expand, iconX = 'fas fa-caret-right', iconY = 'fas fa-caret-down', icon, controlBehaviour = false, innerRef, showIcon = true, ...otherProps } = props |
|
|
|
|
const { id, children, label, labelClass, expand, iconX = 'fas fa-caret-right', iconY = '', icon, controlBehaviour = false, innerRef, showIcon = true, ...otherProps } = props |
|
|
|
|
const [isExpanded, setIsExpanded] = useState(false) |
|
|
|
|
|
|
|
|
|
useEffect(() => { |
|
|
|
@ -15,7 +15,7 @@ export const TreeViewItem = (props: TreeViewItemProps) => { |
|
|
|
|
<li ref={innerRef} key={`treeViewLi${id}`} data-id={`treeViewLi${id}`} className='li_tv' {...otherProps}> |
|
|
|
|
<div key={`treeViewDiv${id}`} data-id={`treeViewDiv${id}`} className={`d-flex flex-row align-items-center ${labelClass}`} onClick={() => !controlBehaviour && setIsExpanded(!isExpanded)}> |
|
|
|
|
{ children && showIcon ? <div |
|
|
|
|
className={isExpanded ? `px-1 ${iconY} caret caret_tv` : `px-1 ${iconX} caret caret_tv`} |
|
|
|
|
className={isExpanded ? `px-0` : `px-1 ${iconX} caret caret_tv`} |
|
|
|
|
style={{ visibility: children ? 'visible' : 'hidden' }} |
|
|
|
|
></div> : icon ? <div className={`pr-3 pl-1 ${icon} caret caret_tv`}></div> : null |
|
|
|
|
} |
|
|
|
|