valor-software/ng2-bootstrap

View on GitHub
src/modal/modal.directive.ts

Summary

Maintainability
D
2 days
Test Coverage

File modal.directive.ts has 317 lines of code (exceeds 250 allowed). Consider refactoring.
Open

/* tslint:disable:max-file-line-count */
// todo: should we support enforce focus in?
// todo: in original bs there are was a way to prevent modal from showing
// todo: original modal had resize events

Severity: Minor
Found in src/modal/modal.directive.ts - About 3 hrs to fix

    ModalDirective has 22 functions (exceeds 20 allowed). Consider refactoring.
    Open

    @Directive({
      selector: '[bsModal]',
      exportAs: 'bs-modal'
    })
    export class ModalDirective implements OnDestroy, OnInit {
    Severity: Minor
    Found in src/modal/modal.directive.ts - About 2 hrs to fix

      Function showElement has 46 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

        protected showElement(): void {
          // todo: replace this with component loader usage
          if (
            !this._element.nativeElement.parentNode ||
            this._element.nativeElement.parentNode.nodeType !== Node.ELEMENT_NODE
      Severity: Minor
      Found in src/modal/modal.directive.ts - About 1 hr to fix

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

          protected showBackdrop(callback?: Function): void {
            if (
              this._isShown &&
              this.config.backdrop &&
              (!this.backdrop || !this.backdrop.instance.isShown)
        Severity: Minor
        Found in src/modal/modal.directive.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 showBackdrop has 38 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

          protected showBackdrop(callback?: Function): void {
            if (
              this._isShown &&
              this.config.backdrop &&
              (!this.backdrop || !this.backdrop.instance.isShown)
        Severity: Minor
        Found in src/modal/modal.directive.ts - About 1 hr to fix

          Function showElement has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
          Open

            protected showElement(): void {
              // todo: replace this with component loader usage
              if (
                !this._element.nativeElement.parentNode ||
                this._element.nativeElement.parentNode.nodeType !== Node.ELEMENT_NODE
          Severity: Minor
          Found in src/modal/modal.directive.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 show has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
          Open

            show(): void {
              this.dismissReason = null;
              this.onShow.emit(this);
              if (this._isShown) {
                return;
          Severity: Minor
          Found in src/modal/modal.directive.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

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

            protected getScrollbarWidth(): number {
              const scrollDiv = this._renderer.createElement('div');
              this._renderer.addClass(scrollDiv, CLASS_NAME.SCROLLBAR_MEASURER);
              this._renderer.appendChild(document.body, scrollDiv);
              const scrollbarWidth = scrollDiv.offsetWidth - scrollDiv.clientWidth;
          Severity: Major
          Found in src/modal/modal.directive.ts and 1 other location - About 4 hrs to fix
          src/modal/bs-modal.service.ts on lines 173..181

          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 115.

          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 2 locations. Consider refactoring.
          Open

              if (
                this.config.ignoreBackdropClick ||
                this.config.backdrop === 'static' ||
                event.target !== this._element.nativeElement
              ) {
          Severity: Minor
          Found in src/modal/modal.directive.ts and 1 other location - About 50 mins to fix
          src/modal/modal-container.component.ts on lines 81..87

          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 52.

          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 2 locations. Consider refactoring.
          Open

              if (this.isBodyOverflowing) {
                document.body.style.paddingRight = `${this.originalBodyPadding +
                this.scrollbarWidth}px`;
              }
          Severity: Minor
          Found in src/modal/modal.directive.ts and 1 other location - About 50 mins to fix
          src/modal/bs-modal.service.ts on lines 162..165

          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 51.

          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 2 locations. Consider refactoring.
          Open

            protected checkScrollbar(): void {
              this.isBodyOverflowing = document.body.clientWidth < window.innerWidth;
              this.scrollbarWidth = this.getScrollbarWidth();
            }
          Severity: Minor
          Found in src/modal/modal.directive.ts and 1 other location - About 40 mins to fix
          src/modal/bs-modal.service.ts on lines 145..148

          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 49.

          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._backdrop
                  .attach(ModalBackdropComponent)
                  .to('body')
                  .show({isAnimated: this._config.animated});
          Severity: Minor
          Found in src/modal/modal.directive.ts and 1 other location - About 30 mins to fix
          src/modal/bs-modal.service.ts on lines 86..89

          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 45.

          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