All files / src/UI/Tree TreeGroup.tsx

86.67% Statements 39/45
71.43% Branches 10/14
66.67% Functions 6/9
87.1% Lines 27/31

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141                              3x         3x                       3x 3x 3x                       3x       29x     29x 29x 29x 1x   29x   1x 1x         29x 29x   29x 25x 3x       29x               29x 58x 58x 58x 58x               29x           29x                                                                              
/*
    Copyright (C) 2017 Red Hat, Inc.
 
    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
 
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
*/
import {
  AccordionContent,
  AccordionItem,
  AccordionToggle,
} from '@patternfly/react-core';
import React, {
  FunctionComponent,
  MouseEvent,
  PropsWithChildren,
  ReactNode,
  forwardRef,
  useCallback,
  useEffect,
  useRef,
  useState,
} from 'react';
 
import { css } from '@patternfly/react-styles';
import styles from './TreeGroup.module.css';
import { useTreeFocus } from './TreeFocusProvider';
 
export interface ITreeGroupProps {
  id: string;
  level: number;
  setSize: number;
  position: number;
  expanded?: boolean;
  renderLabel: (props: { expanded: boolean; focused: boolean }) => ReactNode;
  children: (props: { expanded: boolean; focused: boolean }) => ReactNode;
}
 
export const TreeGroup = forwardRef<
  HTMLDivElement,
  PropsWithChildren<ITreeGroupProps>
>(function TreeGroup(
  { id, expanded, level, setSize, position, renderLabel, children },
  ref,
) {
  const divRef = useRef<HTMLDivElement | null>(null);
  const [isExpanded, setIsExpanded] = useState(false);
  const toggleExpand = useCallback(() => {
    setIsExpanded(!isExpanded);
  }, [isExpanded]);
  const toggleExpandNoPropagation = useCallback(
    (event: MouseEvent) => {
      event.stopPropagation();
      toggleExpand();
    },
    [toggleExpand],
  );
 
  const expand = useCallback(() => setIsExpanded(true), []);
  const collapse = useCallback(() => setIsExpanded(false), []);
 
  useEffect(() => {
    if (expanded !== undefined) {
      setIsExpanded(expanded);
    }
  }, [expanded]);
 
  const { focused, handlers: focusHandlers } = useTreeFocus({
    ref: divRef,
    isExpandable: true,
    isExpanded,
    collapseTreeitem: collapse,
    expandTreeitem: expand,
  });
 
  const handleRef = (el: HTMLDivElement | null) => {
    divRef.current = el;
    Eif (ref) {
      Eif (typeof ref === 'function') {
        ref(el);
      } else {
        // @ts-ignore
        ref.current = el;
      }
    }
  };
 
  const Component: FunctionComponent = ({ children }) => (
    <span role={'heading'} aria-level={level + 2}>
      {children}
    </span>
  );
 
  return (
    <div
      ref={handleRef}
      role={'treeitem'}
      aria-level={level}
      aria-setsize={setSize}
      aria-posinset={position}
      aria-expanded={isExpanded}
      {...focusHandlers}
      onClick={(event) => {
        focusHandlers.onClick(event);
        if (!event.isPropagationStopped()) {
          toggleExpand();
        }
      }}
    >
      <AccordionItem>
        <AccordionToggle
          isExpanded={isExpanded}
          id={`${id}-toggle`}
          data-testid={`${id}-toggle`}
          className={styles.button}
          tabIndex={-1}
          component={Component}
          onClick={toggleExpandNoPropagation}
        >
          {renderLabel({ expanded: isExpanded, focused: focused || false })}
        </AccordionToggle>
        <AccordionContent
          isHidden={!isExpanded}
          className={css(styles.content, !isExpanded && styles.hiddenContent)}
          role="group"
        >
          {children({ expanded: isExpanded, focused: focused || false })}
        </AccordionContent>
      </AccordionItem>
    </div>
  );
});