microting/ngx-charts

View on GitHub
src/bar-chart/series-vertical.component.ts

Summary

Maintainability
D
2 days
Test Coverage

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

  update(): void {
    this.updateTooltipSettings();
    let width;

    if (this.series.length) {
Severity: Minor
Found in src/bar-chart/series-vertical.component.ts - About 7 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

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

  update(): void {
    this.updateTooltipSettings();
    let width;

    if (this.series.length) {
Severity: Major
Found in src/bar-chart/series-vertical.component.ts - About 4 hrs to fix

    Function bars has 98 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        this.bars = this.series.map((d, index) => {
          let value = d.value;
          const label = this.getLabel(d);
          const formattedLabel = formatLabel(label);
          let roundEdges = this.roundEdges;
    Severity: Major
    Found in src/bar-chart/series-vertical.component.ts - About 3 hrs to fix

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

      import { Component, Input, Output, EventEmitter, OnChanges, ChangeDetectionStrategy, TemplateRef } from '@angular/core';
      import { trigger, style, animate, transition } from '@angular/animations';
      import { formatLabel, escapeLabel } from '../common/label.helper';
      import { DataItem } from '../models/chart-data.model';
      import { ColorHelper } from '../common';
      Severity: Minor
      Found in src/bar-chart/series-vertical.component.ts - About 2 hrs to fix

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

          updateDataLabels() {
            if (this.type === 'stacked') {
              this.barsForDataLabels = [];
              const section: any = {};
              section.series = this.seriesName;
        Severity: Minor
        Found in src/bar-chart/series-vertical.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 updateDataLabels has 28 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

          updateDataLabels() {
            if (this.type === 'stacked') {
              this.barsForDataLabels = [];
              const section: any = {};
              section.series = this.seriesName;
        Severity: Minor
        Found in src/bar-chart/series-vertical.component.ts - About 1 hr to fix

          There are no issues that match your filters.

          Category
          Status