department-of-veterans-affairs/vets-website

View on GitHub
src/applications/search/containers/SearchApp.jsx

Summary

Maintainability
F
5 days
Test Coverage

File SearchApp.jsx has 733 lines of code (exceeds 250 allowed). Consider refactoring.
Open

import React from 'react';
import PropTypes from 'prop-types';
import { withRouter } from 'react-router';
import { connect } from 'react-redux';
import { getDay, getHours, setHours, setMinutes, setSeconds } from 'date-fns';
Severity: Major
Found in src/applications/search/containers/SearchApp.jsx - About 1 day to fix

    Function renderResults has 203 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

      renderResults() {
        const { searchGovMaintenance } = this.props;
        const {
          loading,
          errors,
    Severity: Major
    Found in src/applications/search/containers/SearchApp.jsx - About 1 day to fix

      Function renderResultsInformation has 60 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

        renderResultsInformation() {
          const {
            currentPage,
            perPage,
            totalPages,
      Severity: Major
      Found in src/applications/search/containers/SearchApp.jsx - About 2 hrs to fix

        Function render has 50 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

          render() {
            return (
              <div className="search-app" data-e2e-id="search-app">
                <SearchBreadcrumbs />
                <div className="row">
        Severity: Minor
        Found in src/applications/search/containers/SearchApp.jsx - About 2 hrs to fix

          Function renderWebResult has 42 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

            renderWebResult(result, snippetKey = 'snippet', isBestBet = false, index) {
              const strippedTitle = removeDoubleBars(
                formatResponseString(result.title, true),
              );
              return (
          Severity: Minor
          Found in src/applications/search/containers/SearchApp.jsx - About 1 hr to fix

            Function renderResultsList has 38 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

              renderResultsList() {
                const { results, loading } = this.props.search;
                const query = this.props.router?.location?.query?.query || '';
                if (loading) {
                  return <va-loading-indicator message="Loading results..." />;
            Severity: Minor
            Found in src/applications/search/containers/SearchApp.jsx - About 1 hr to fix

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

                renderResultsInformation() {
                  const {
                    currentPage,
                    perPage,
                    totalPages,
              Severity: Minor
              Found in src/applications/search/containers/SearchApp.jsx - About 1 hr 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 renderResults has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
              Open

                renderResults() {
                  const { searchGovMaintenance } = this.props;
                  const {
                    loading,
                    errors,
              Severity: Minor
              Found in src/applications/search/containers/SearchApp.jsx - About 35 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

              Similar blocks of code found in 2 locations. Consider refactoring.
              Open

                          <ul>
                            <li>
                              <va-link
                                href="https://search.usa.gov/search?affiliate=bvadecisions"
                                text="Look up Board of Veterans' Appeals (BVA) decisions"
              Severity: Major
              Found in src/applications/search/containers/SearchApp.jsx and 1 other location - About 5 hrs to fix
              src/applications/pensions/components/IntroductionPage.jsx on lines 93..129

              Duplicated Code

              Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

              Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

              When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

              Tuning

              This issue has a mass of 136.

              We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

              The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

              If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

              See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

              Refactorings

              Further Reading

              Similar blocks of code found in 2 locations. Consider refactoring.
              Open

                            <button type="submit">
                              {/* search icon on the header dropdown (next to the input on mobile) */}
                              {/* Convert to va-icon when injected header/footer split is in prod: https://github.com/department-of-veterans-affairs/vets-website/pull/27590 */}
                              <svg
                                aria-hidden="true"
              Severity: Major
              Found in src/applications/search/containers/SearchApp.jsx and 1 other location - About 3 hrs to fix
              src/platform/site-wide/user-nav/components/SearchMenu.jsx on lines 244..266

              Duplicated Code

              Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

              Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

              When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

              Tuning

              This issue has a mass of 98.

              We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

              The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

              If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

              See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

              Refactorings

              Further Reading

              Similar blocks of code found in 4 locations. Consider refactoring.
              Open

                      <div className="row">
                        <div className="columns">
                          <h1 className="vads-u-font-size--2xl" id="h1-search-title">
                            Search VA.gov
                          </h1>
              Severity: Major
              Found in src/applications/search/containers/SearchApp.jsx and 3 other locations - About 1 hr to fix
              src/applications/disability-benefits/686c-674/containers/ConfirmationPage.jsx on lines 171..177
              src/applications/edu-benefits/components/ConfirmationPageContent.jsx on lines 159..165
              src/applications/login/containers/MockAuth.jsx on lines 14..23

              Duplicated Code

              Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

              Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

              When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

              Tuning

              This issue has a mass of 58.

              We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

              The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

              If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

              See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

              Refactorings

              Further Reading

              Similar blocks of code found in 2 locations. Consider refactoring.
              Open

                  const {
                    currentPage,
                    perPage,
                    totalPages,
                    totalEntries,
              Severity: Minor
              Found in src/applications/search/containers/SearchApp.jsx and 1 other location - About 30 mins to fix
              src/applications/facility-locator/containers/FacilityLocatorApp.jsx on lines 13..20

              Duplicated Code

              Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

              Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

              When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

              Tuning

              This issue has a mass of 45.

              We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

              The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

              If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

              See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

              Refactorings

              Further Reading

              There are no issues that match your filters.

              Category
              Status