concord-consortium/rigse

View on GitHub
rails/react-components/src/library/components/search/auto-suggest.tsx

Summary

Maintainability
C
7 hrs
Test Coverage

Function handleKeyDown has a Cognitive Complexity of 20 (exceeds 5 allowed). Consider refactoring.
Open

  handleKeyDown (e: any) {
    let handledKey = false;
    const { query, suggestions, selectedSuggestionIndex, showSuggestions } = this.state;
    const { onChange, onSubmit } = this.props;
    const suggestion = suggestions[selectedSuggestionIndex];
Severity: Minor
Found in rails/react-components/src/library/components/search/auto-suggest.tsx - About 2 hrs to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Function handleKeyDown has 56 lines of code (exceeds 25 allowed). Consider refactoring.
Open

  handleKeyDown (e: any) {
    let handledKey = false;
    const { query, suggestions, selectedSuggestionIndex, showSuggestions } = this.state;
    const { onChange, onSubmit } = this.props;
    const suggestion = suggestions[selectedSuggestionIndex];
Severity: Major
Found in rails/react-components/src/library/components/search/auto-suggest.tsx - About 2 hrs to fix

    Function search has 33 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

      search (query: any) {
        const setSuggestions = (suggestions: any, callback?: any) => {
          const showSuggestions = suggestions.length > 0;
          this.setState({ suggestions, selectedSuggestionIndex: -1, showSuggestions }, callback);
        };

      Function search has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
      Open

        search (query: any) {
          const setSuggestions = (suggestions: any, callback?: any) => {
            const showSuggestions = suggestions.length > 0;
            this.setState({ suggestions, selectedSuggestionIndex: -1, showSuggestions }, callback);
          };

      Cognitive Complexity

      Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

      A method's cognitive complexity is based on a few simple rules:

      • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
      • Code is considered more complex for each "break in the linear flow of the code"
      • Code is considered more complex when "flow breaking structures are nested"

      Further reading

      Function handleOuterClick has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
      Open

        handleOuterClick (e: any) {
          let el = e.target;
          const container = this.containerRef.current;
          if (container && this.state.showSuggestions) {
            while (el && (el !== container)) {
      Severity: Minor
      Found in rails/react-components/src/library/components/search/auto-suggest.tsx - About 25 mins to fix

      Cognitive Complexity

      Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

      A method's cognitive complexity is based on a few simple rules:

      • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
      • Code is considered more complex for each "break in the linear flow of the code"
      • Code is considered more complex when "flow breaking structures are nested"

      Further reading

      There are no issues that match your filters.

      Category
      Status