likeastore/ngDialog

View on GitHub
js/ngDialog.js

Summary

Maintainability
F
1 wk
Test Coverage

Function $get has 612 lines of code (exceeds 25 allowed). Consider refactoring.
Open

            function ($document, $templateCache, $compile, $q, $http, $rootScope, $timeout, $window, $controller, $injector) {
                var $elements = [];

                var privateMethods = {
                    onDocumentKeydown: function (event) {
Severity: Major
Found in js/ngDialog.js - About 3 days to fix

    File ngDialog.js has 724 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    /*
     * ngDialog - easy modals and popup windows
     * http://github.com/likeastore/ngDialog
     * (c) 2013-2015 MIT License, https://likeastore.com
     */
    Severity: Major
    Found in js/ngDialog.js - About 1 day to fix

      Function open has 214 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

                          open: function (opts) {
                              var dialogID = null;
                              opts = opts || {};
                              if (openOnePerName && opts.name) {
                                  dialogID = opts.name.toLowerCase().replace(/\s/g, '-') + '-dialog';
      Severity: Major
      Found in js/ngDialog.js - About 1 day to fix

        Function performCloseDialog has 57 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

                            performCloseDialog: function ($dialog, value) {
                                var options = $dialog.data('$ngDialogOptions');
                                var id = $dialog.attr('id');
                                var scope = scopes[id];
                                privateMethods.deactivate($dialog);
        Severity: Major
        Found in js/ngDialog.js - About 2 hrs to fix

          Function $get has 10 arguments (exceeds 4 allowed). Consider refactoring.
          Open

                      function ($document, $templateCache, $compile, $q, $http, $rootScope, $timeout, $window, $controller, $injector) {
          Severity: Major
          Found in js/ngDialog.js - About 1 hr to fix

            Function handleTab has 28 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                                handleTab: function($dialog, ev, backward) {
                                    var focusableElements = privateMethods.getFocusableElements($dialog);
            
                                    if (focusableElements.length === 0) {
                                        if (document.activeElement && document.activeElement.blur) {
            Severity: Minor
            Found in js/ngDialog.js - About 1 hr to fix

              Function openConfirm has 26 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                                  openConfirm: function (opts) {
                                      var defer = $q.defer();
                                      var options = angular.copy(defaults);
              
                                      opts = opts || {};
              Severity: Minor
              Found in js/ngDialog.js - About 1 hr to fix

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

                                            if (options.height) {
                                                $dialogContent = $dialog[0].querySelector('.ngdialog-content');
                                                if (angular.isString(options.height)) {
                                                    $dialogContent.style.height = options.height;
                                                } else {
                Severity: Major
                Found in js/ngDialog.js and 1 other location - About 3 hrs to fix
                js/ngDialog.js on lines 576..583

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

                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 (options.width) {
                                                $dialogContent = $dialog[0].querySelector('.ngdialog-content');
                                                if (angular.isString(options.width)) {
                                                    $dialogContent.style.width = options.width;
                                                } else {
                Severity: Major
                Found in js/ngDialog.js and 1 other location - About 3 hrs to fix
                js/ngDialog.js on lines 585..592

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

                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 (typeof options.data !== 'undefined') {
                                            if (typeof opts.data === 'undefined') {
                                                opts.data = {};
                                            }
                                            opts.data = angular.merge(angular.copy(options.data), opts.data);
                Severity: Major
                Found in js/ngDialog.js and 1 other location - About 2 hrs to fix
                js/ngDialog.js on lines 515..520

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

                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 (typeof options.data !== 'undefined') {
                                            if (typeof opts.data === 'undefined') {
                                                opts.data = {};
                                            }
                                            opts.data = angular.merge(angular.copy(options.data), opts.data);
                Severity: Major
                Found in js/ngDialog.js and 1 other location - About 2 hrs to fix
                js/ngDialog.js on lines 796..801

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

                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