microting/ngx-charts

View on GitHub
src/bar-chart/bar-vertical-2d-stacked.component.ts

Summary

Maintainability
D
2 days
Test Coverage

File bar-vertical-2d-stacked.component.ts has 465 lines of code (exceeds 250 allowed). Consider refactoring.
Open

import {
  Component,
  Input,
  Output,
  ViewEncapsulation,
Severity: Minor
Found in src/bar-chart/bar-vertical-2d-stacked.component.ts - About 7 hrs to fix

    Function getValueStackedDomain has a Cognitive Complexity of 20 (exceeds 5 allowed). Consider refactoring.
    Open

      getValueStackedDomain() {
        const domain = [];
        let smallest = 0;
        let biggest = 0;
    
    
    Severity: Minor
    Found in src/bar-chart/bar-vertical-2d-stacked.component.ts - About 2 hrs 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

    BarVertical2DStackedComponent has 23 functions (exceeds 20 allowed). Consider refactoring.
    Open

    @Component({
      selector: 'ngx-charts-bar-vertical-2d-stacked',
      template: `
        <ngx-charts-chart
          [view]="[width, height]"
    Severity: Minor
    Found in src/bar-chart/bar-vertical-2d-stacked.component.ts - About 2 hrs to fix

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

        update(): void {
          super.update();
      
          if (!this.showDataLabel) {
            this.dataLabelMaxHeight = { negative: 0, positive: 0 };
      Severity: Minor
      Found in src/bar-chart/bar-vertical-2d-stacked.component.ts - About 1 hr to fix

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

          getInnerStackedDomain() {
            const domain = [];
        
            for (const group of this.results) {
              for(const stack of group.series) {
        Severity: Minor
        Found in src/bar-chart/bar-vertical-2d-stacked.component.ts - 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 getValueDomain has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
        Open

          getValueDomain() {
            const domain = [];
            for (const group of this.results) {
              for (const d of group.series) {
                if (!domain.includes(d.value)) {
        Severity: Minor
        Found in src/bar-chart/bar-vertical-2d-stacked.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 getGroupStackedDomain has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
        Open

          getGroupStackedDomain() {
            const domain = [];
        
            for (const group of this.results) {
              for(const stack of group.series) {
        Severity: Minor
        Found in src/bar-chart/bar-vertical-2d-stacked.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 getInnerDomain has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
        Open

          getInnerDomain() {
            const domain = [];
            for (const group of this.results) {
              for (const d of group.series) {
                if (!domain.includes(d.label)) {
        Severity: Minor
        Found in src/bar-chart/bar-vertical-2d-stacked.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