swimlane/ngx-charts

View on GitHub
projects/swimlane/ngx-charts/src/lib/heat-map/heat-map.component.ts

Summary

Maintainability
B
6 hrs
Test Coverage

File heat-map.component.ts has 311 lines of code (exceeds 250 allowed). Consider refactoring.
Open

import {
  Component,
  Input,
  ViewEncapsulation,
  ChangeDetectionStrategy,
Severity: Minor
Found in projects/swimlane/ngx-charts/src/lib/heat-map/heat-map.component.ts - About 3 hrs to fix

    Function update has 37 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

      update(): void {
        super.update();
    
        this.formatDates();
    
    
    Severity: Minor
    Found in projects/swimlane/ngx-charts/src/lib/heat-map/heat-map.component.ts - About 1 hr to fix

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

        getDimension(value: string | number | Array<string | number>, index: number = 0, N: number, L: number): number {
          if (typeof value === 'string') {
            value = value
              .replace('[', '')
              .replace(']', '')
      Severity: Minor
      Found in projects/swimlane/ngx-charts/src/lib/heat-map/heat-map.component.ts - 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

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

        getValueDomain(): any[] {
          const domain = [];
      
          for (const group of this.results) {
            for (const d of group.series) {
      Severity: Minor
      Found in projects/swimlane/ngx-charts/src/lib/heat-map/heat-map.component.ts - 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

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

        getYDomain(): string[] {
          const domain = [];
      
          for (const group of this.results) {
            for (const d of group.series) {
      Severity: Minor
      Found in projects/swimlane/ngx-charts/src/lib/heat-map/heat-map.component.ts - 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