All files / src/UI ExpressionFieldSearch.tsx

10.71% Statements 6/56
0% Branches 0/34
0% Functions 0/9
11.76% Lines 6/51

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 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180                              3x           3x 3x 3x             3x   3x                                                                                                                                                                                                                                                                                                      
/*
    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 {
  Select,
  SelectOption,
  SelectOptionObject,
} from '@patternfly/react-core';
import { FunctionComponent } from 'react';
import React from 'react';
import styles from './ExpressionFieldSearch.module.css';
import { useToggle } from '../impl/utils';
 
export interface IExpressionFieldSearchProps {
  clearSearchMode: (clearAtSign: boolean) => void;
  insertSelectedField: (docId: string, fieldStr: string) => void;
  mappedFieldCandidates: string[][];
}
let selectedField = '';
 
export const ExpressionFieldSearch: FunctionComponent<
  IExpressionFieldSearchProps
> = ({ clearSearchMode, insertSelectedField, mappedFieldCandidates }) => {
  function onToggleFieldSearch(toggled: boolean): any {
    if (!toggled) {
      mappedFieldCandidates = [];
      clearSearchMode(true);
      candidateSrcElement = null;
    }
  }
 
  const id = `expr-field-search-${selectedField}`;
  let candidateSrcElement: any;
  const { state, toggle, toggleOff } = useToggle(true, onToggleFieldSearch);
 
  /**
   * Track a candidate selection from either a mouse hover or arrow
   * key navigation.
   *
   * @param event
   * @param index
   */
  function trackSelection(event: any): void {
    if (event.srcElement) {
      // const docId = event.target.getAttribute('label');
      candidateSrcElement = event.srcElement;
    }
  }
 
  /**
   * Update the candidate source element and reset the focus.
   *
   * @param sibling
   */
  function updateCandidate(sibling: any): void {
    if (candidateSrcElement && sibling) {
      candidateSrcElement.style.backgroundColor = 'white';
      sibling.focus();
      candidateSrcElement = sibling;
      candidateSrcElement.style.backgroundColor = 'lightblue';
    }
  }
 
  function onKeyHandler(
    _index: number,
    _innerIndex: number,
    _position: string,
  ): void {
    // TODO
  }
 
  function onKeyDown(event: any): void {
    if ('Enter' === event.key) {
      event.preventDefault();
      if (candidateSrcElement) {
        // insertSelectedField(candidateIndex);
      }
    } else if ('ArrowDown' === event.key) {
      event.preventDefault();
      trackSelection(event);
      if (candidateSrcElement) {
        updateCandidate(candidateSrcElement.nextElementSibling);
      }
    } else if ('ArrowUp' === event.key) {
      event.preventDefault();
      trackSelection(event);
      if (candidateSrcElement) {
        updateCandidate(candidateSrcElement.previousElementSibling);
      }
    } else if ('Tab' === event.key) {
      if (!candidateSrcElement && event.srcElement) {
        candidateSrcElement =
          event.srcElement.nextElementSibling.firstElementChild;
        candidateSrcElement.style.backgroundColor = 'lightblue';
      } else if (
        candidateSrcElement &&
        candidateSrcElement.nextElementSibling
      ) {
        event.preventDefault();
        updateCandidate(candidateSrcElement!.nextElementSibling);
      }
    }
  }
 
  function selectionChanged(
    event: any,
    value: string | SelectOptionObject,
    isPlaceholder?: boolean | undefined,
  ): void {
    if (!isPlaceholder) {
      const docId = event.target.getAttribute('label');
      selectedField = value as string;
      insertSelectedField(docId, selectedField);
    }
    onToggleFieldSearch(false);
    toggleOff();
  }
 
  function createSelectOption(selectField: string[], idx: number): any {
    // Use the display name for documents and field path for fields.
    if (selectField[1][0] !== '/') {
      return (
        <SelectOption
          label={selectField[0]}
          value={selectField[0]}
          key={idx}
          index={idx}
          className={styles.document}
          isPlaceholder={true}
        />
      );
    } else {
      return (
        <SelectOption
          label={selectField[0]}
          value={selectField[1]}
          key={idx}
          keyHandler={onKeyHandler}
          index={idx}
          className={styles.field}
        />
      );
    }
  }
 
  return (
    <div
      aria-label="Expression Field Search"
      className={styles.searchMenu}
      data-testid={'expression-field-search'}
    >
      <Select
        onToggle={toggle}
        isOpen={state}
        value={selectedField}
        id={id}
        onKeyDown={onKeyDown}
        onSelect={selectionChanged}
        data-testid={id}
      >
        {mappedFieldCandidates.map((s, idx: number) =>
          createSelectOption(s, idx),
        )}
      </Select>
    </div>
  );
};