swimlane/ngx-charts

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

Summary

Maintainability
B
7 hrs
Test Coverage

File gauge.component.ts has 299 lines of code (exceeds 250 allowed). Consider refactoring.
Open

import {
  Component,
  Input,
  ElementRef,
  ViewChild,
Severity: Minor
Found in projects/swimlane/ngx-charts/src/lib/gauge/gauge.component.ts - About 3 hrs to fix

    Function getArcs has 36 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

      getArcs(): any[] {
        const arcs = [];
    
        const availableRadius = this.outerRadius * 0.7;
    
    
    Severity: Minor
    Found in projects/swimlane/ngx-charts/src/lib/gauge/gauge.component.ts - About 1 hr to fix

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

        update(): void {
          super.update();
      
          if (!this.showAxis) {
            if (!this.margin) {
      Severity: Minor
      Found in projects/swimlane/ngx-charts/src/lib/gauge/gauge.component.ts - About 1 hr to fix

        Function update has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
        Open

          update(): void {
            super.update();
        
            if (!this.showAxis) {
              if (!this.margin) {
        Severity: Minor
        Found in projects/swimlane/ngx-charts/src/lib/gauge/gauge.component.ts - 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

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

          scaleText(repeat: boolean = true): void {
            if (!this.showText) {
              return;
            }
            const { width } = this.textEl.nativeElement.getBoundingClientRect();
        Severity: Minor
        Found in projects/swimlane/ngx-charts/src/lib/gauge/gauge.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