swimlane/ngx-charts

View on GitHub
projects/swimlane/ngx-charts/src/lib/common/circle-series.component.ts

Summary

Maintainability
C
7 hrs
Test Coverage

File circle-series.component.ts has 283 lines of code (exceeds 250 allowed). Consider refactoring.
Open

import {
  Component,
  Input,
  Output,
  EventEmitter,

    Function mapDataPointToCircle has 48 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

      mapDataPointToCircle(d: any, i: number): Circle {
        const seriesName = this.data.name as string;
    
        const value = d.value;
        const label = d.name;

      Function getTooltipMinMaxText has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
      Open

        getTooltipMinMaxText(min: number, max: number): string {
          if (min !== undefined || max !== undefined) {
            let result = ' (';
            if (min !== undefined) {
              if (max === undefined) {

      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 mapDataPointToCircle has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
      Open

        mapDataPointToCircle(d: any, i: number): Circle {
          const seriesName = this.data.name as string;
      
          const value = d.value;
          const label = d.name;
      Severity: Minor
      Found in projects/swimlane/ngx-charts/src/lib/common/circle-series.component.ts - About 55 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