knsv/mermaid

View on GitHub
packages/mermaid/src/diagrams/xychart/chartBuilder/components/axis/baseAxis.ts

Summary

Maintainability
F
5 days
Test Coverage

File baseAxis.ts has 402 lines of code (exceeds 250 allowed). Consider refactoring.
Open

import type {
  BoundingRect,
  Dimension,
  DrawableElem,
  Point,

    Function getDrawableElementsForLeftAxis has 74 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

      private getDrawableElementsForLeftAxis(): DrawableElem[] {
        const drawableElement: DrawableElem[] = [];
        if (this.showAxisLine) {
          const x = this.boundingRect.x + this.boundingRect.width - this.axisConfig.axisLineWidth / 2;
          drawableElement.push({

      Function getDrawableElementsForTopAxis has 74 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

        private getDrawableElementsForTopAxis(): DrawableElem[] {
          const drawableElement: DrawableElem[] = [];
          if (this.showAxisLine) {
            const y = this.boundingRect.y + this.boundingRect.height - this.axisConfig.axisLineWidth / 2;
            drawableElement.push({

        Function getDrawableElementsForBottomAxis has 74 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

          private getDrawableElementsForBottomAxis(): DrawableElem[] {
            const drawableElement: DrawableElem[] = [];
            if (this.showAxisLine) {
              const y = this.boundingRect.y + this.axisConfig.axisLineWidth / 2;
              drawableElement.push({

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

            private calculateSpaceIfDrawnHorizontally(availableSpace: Dimension) {
              let availableHeight = availableSpace.height;
              if (this.axisConfig.showAxisLine && availableHeight > this.axisConfig.axisLineWidth) {
                availableHeight -= this.axisConfig.axisLineWidth;
                this.showAxisLine = true;

            Function calculateSpaceIfDrawnVertical has 33 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

              private calculateSpaceIfDrawnVertical(availableSpace: Dimension) {
                let availableWidth = availableSpace.width;
                if (this.axisConfig.showAxisLine && availableWidth > this.axisConfig.axisLineWidth) {
                  availableWidth -= this.axisConfig.axisLineWidth;
                  this.showAxisLine = true;

              Similar blocks of code found in 2 locations. Consider refactoring.
              Open

                  if (this.axisConfig.showTitle && this.title) {
                    const spaceRequired = this.textDimensionCalculator.getMaxDimension(
                      [this.title],
                      this.axisConfig.titleFontSize
                    );
              packages/mermaid/src/diagrams/xychart/chartBuilder/components/axis/baseAxis.ts on lines 144..155

              Duplicated Code

              Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

              Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

              When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

              Tuning

              This issue has a mass of 128.

              We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

              The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

              If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

              See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

              Refactorings

              Further Reading

              Similar blocks of code found in 2 locations. Consider refactoring.
              Open

                  if (this.axisConfig.showTitle && this.title) {
                    const spaceRequired = this.textDimensionCalculator.getMaxDimension(
                      [this.title],
                      this.axisConfig.titleFontSize
                    );
              packages/mermaid/src/diagrams/xychart/chartBuilder/components/axis/baseAxis.ts on lines 108..119

              Duplicated Code

              Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

              Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

              When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

              Tuning

              This issue has a mass of 128.

              We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

              The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

              If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

              See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

              Refactorings

              Further Reading

              Similar blocks of code found in 2 locations. Consider refactoring.
              Open

                    drawableElement.push({
                      type: 'path',
                      groupTexts: ['bottom-axis', 'axis-line'],
                      data: [
                        {
              packages/mermaid/src/diagrams/xychart/chartBuilder/components/axis/baseAxis.ts on lines 334..346

              Duplicated Code

              Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

              Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

              When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

              Tuning

              This issue has a mass of 113.

              We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

              The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

              If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

              See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

              Refactorings

              Further Reading

              Similar blocks of code found in 2 locations. Consider refactoring.
              Open

                    drawableElement.push({
                      type: 'path',
                      groupTexts: ['top-axis', 'axis-line'],
                      data: [
                        {
              packages/mermaid/src/diagrams/xychart/chartBuilder/components/axis/baseAxis.ts on lines 258..270

              Duplicated Code

              Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

              Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

              When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

              Tuning

              This issue has a mass of 113.

              We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

              The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

              If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

              See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

              Refactorings

              Further Reading

              Similar blocks of code found in 2 locations. Consider refactoring.
              Open

                          this.boundingRect.y +
                          this.axisConfig.labelPadding +
                          (this.showTick ? this.axisConfig.tickLength : 0) +
                          (this.showAxisLine ? this.axisConfig.axisLineWidth : 0),
              packages/mermaid/src/diagrams/xychart/chartBuilder/components/axis/baseAxis.ts on lines 203..206

              Duplicated Code

              Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

              Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

              When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

              Tuning

              This issue has a mass of 65.

              We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

              The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

              If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

              See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

              Refactorings

              Further Reading

              Similar blocks of code found in 2 locations. Consider refactoring.
              Open

                          this.boundingRect.x +
                          this.boundingRect.width -
                          (this.showLabel ? this.axisConfig.labelPadding : 0) -
                          (this.showTick ? this.axisConfig.tickLength : 0) -
              packages/mermaid/src/diagrams/xychart/chartBuilder/components/axis/baseAxis.ts on lines 280..283

              Duplicated Code

              Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

              Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

              When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

              Tuning

              This issue has a mass of 65.

              We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

              The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

              If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

              See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

              Refactorings

              Further Reading

              Identical blocks of code found in 3 locations. Consider refactoring.
              Open

                setBoundingBoxXY(point: Point): void {
                  this.boundingRect.x = point.x;
                  this.boundingRect.y = point.y;
                }
              packages/mermaid/src/diagrams/xychart/chartBuilder/components/chartTitle.ts on lines 32..35
              packages/mermaid/src/diagrams/xychart/chartBuilder/components/plot/index.ts on lines 40..43

              Duplicated Code

              Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

              Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

              When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

              Tuning

              This issue has a mass of 57.

              We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

              The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

              If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

              See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

              Refactorings

              Further Reading

              Similar blocks of code found in 2 locations. Consider refactoring.
              Open

                  if (this.axisConfig.showTick && availableHeight >= this.axisConfig.tickLength) {
                    this.showTick = true;
                    availableHeight -= this.axisConfig.tickLength;
                  }
              packages/mermaid/src/diagrams/xychart/chartBuilder/components/axis/baseAxis.ts on lines 140..143

              Duplicated Code

              Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

              Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

              When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

              Tuning

              This issue has a mass of 57.

              We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

              The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

              If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

              See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

              Refactorings

              Further Reading

              Similar blocks of code found in 2 locations. Consider refactoring.
              Open

                  if (this.axisConfig.showAxisLine && availableHeight > this.axisConfig.axisLineWidth) {
                    availableHeight -= this.axisConfig.axisLineWidth;
                    this.showAxisLine = true;
                  }
              packages/mermaid/src/diagrams/xychart/chartBuilder/components/axis/baseAxis.ts on lines 126..129

              Duplicated Code

              Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

              Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

              When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

              Tuning

              This issue has a mass of 57.

              We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

              The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

              If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

              See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

              Refactorings

              Further Reading

              Similar blocks of code found in 2 locations. Consider refactoring.
              Open

                  if (this.axisConfig.showAxisLine && availableWidth > this.axisConfig.axisLineWidth) {
                    availableWidth -= this.axisConfig.axisLineWidth;
                    this.showAxisLine = true;
                  }
              packages/mermaid/src/diagrams/xychart/chartBuilder/components/axis/baseAxis.ts on lines 88..91

              Duplicated Code

              Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

              Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

              When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

              Tuning

              This issue has a mass of 57.

              We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

              The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

              If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

              See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

              Refactorings

              Further Reading

              Similar blocks of code found in 2 locations. Consider refactoring.
              Open

                  if (this.axisConfig.showTick && availableWidth >= this.axisConfig.tickLength) {
                    this.showTick = true;
                    availableWidth -= this.axisConfig.tickLength;
                  }
              packages/mermaid/src/diagrams/xychart/chartBuilder/components/axis/baseAxis.ts on lines 104..107

              Duplicated Code

              Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

              Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

              When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

              Tuning

              This issue has a mass of 57.

              We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

              The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

              If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

              See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

              Refactorings

              Further Reading

              There are no issues that match your filters.

              Category
              Status