18F/cg-dashboard

View on GitHub
static_src/util/cf_api.js

Summary

Maintainability
D
2 days
Test Coverage

File cf_api.js has 552 lines of code (exceeds 250 allowed). Consider refactoring.
Open

import http from "axios";
import queryString from "query-string";

import { noticeError } from "../util/analytics.js";
import domainActions from "../actions/domain_actions.js";
Severity: Major
Found in static_src/util/cf_api.js - About 1 day to fix

    `` has 63 functions (exceeds 20 allowed). Consider refactoring.
    Open

    export default {
      version: APIV,
    
      formatSplitResponse(resource) {
        return Object.assign({}, resource.entity, resource.metadata);
    Severity: Major
    Found in static_src/util/cf_api.js - About 1 day to fix

      Function fetchAllPages has 27 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

        fetchAllPages(url, ...args) {
          let [data, action] = args;
          if (typeof data === "function") {
            action = data;
            data = {};
      Severity: Minor
      Found in static_src/util/cf_api.js - About 1 hr to fix

        Function parseError has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
        Open

        function parseError(resultOrError) {
          if (resultOrError instanceof Error) {
            // Leave it alone
            return resultOrError;
          }
        Severity: Minor
        Found in static_src/util/cf_api.js - About 45 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