phpmyadmin/phpmyadmin

View on GitHub
resources/js/src/jquery.sortable-table.ts

Summary

Maintainability
F
3 days
Test Coverage

Function sortableTable has 199 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    $.fn.sortableTable = function (method) {
        var methods = {
            init: function (options) {
                var tb = new SortableTableInstance(this, options);
                tb.init();
Severity: Major
Found in resources/js/src/jquery.sortable-table.ts - About 7 hrs to fix

    Function SortableTableInstance has 177 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

            function SortableTableInstance (table, options: {ignoreRect?: any, events?: any} = {}) {
                var down = false;
                var $draggedEl;
                var oldCell;
                var previewMove;
    Severity: Major
    Found in resources/js/src/jquery.sortable-table.ts - About 7 hrs to fix

      Function globalMouseMove has 30 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

                  var globalMouseMove = function (e) {
                      if (down) {
                          move(e.pageX, e.pageY);
      
                          if (inside($(oldCell), e.pageX, e.pageY)) {
      Severity: Minor
      Found in resources/js/src/jquery.sortable-table.ts - About 1 hr to fix

        Function switchElement has 30 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

                    function switchElement (drag, dropTo) {
                        var dragPosDiff = {
                            left: $(drag).children().first().offset().left - $(dropTo).offset().left,
                            top: $(drag).children().first().offset().top - $(dropTo).offset().top
                        };
        Severity: Minor
        Found in resources/js/src/jquery.sortable-table.ts - About 1 hr to fix

          Avoid deeply nested control flow statements.
          Open

                                              if (previewMove.length > 0) {
                                                  moveTo($(previewMove), {
                                                      pos: {
                                                          top: $(oldCell).offset().top - $(previewMove).parent().offset().top,
                                                          left: $(oldCell).offset().left - $(previewMove).parent().offset().left
          Severity: Major
          Found in resources/js/src/jquery.sortable-table.ts - About 45 mins to fix

            Avoid deeply nested control flow statements.
            Open

                                                if (previewMove !== null) {
                                                    moveTo(previewMove);
                                                }
            Severity: Major
            Found in resources/js/src/jquery.sortable-table.ts - About 45 mins to fix

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

                              var dragPosDiff = {
                                  left: $(drag).children().first().offset().left - $(dropTo).offset().left,
                                  top: $(drag).children().first().offset().top - $(dropTo).offset().top
                              };
              Severity: Major
              Found in resources/js/src/jquery.sortable-table.ts and 1 other location - About 3 hrs to fix
              resources/js/src/jquery.sortable-table.ts on lines 198..201

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

              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

                                  dropPosDiff = {
                                      left: $(dropTo).children().first().offset().left - $(drag).offset().left,
                                      top: $(dropTo).children().first().offset().top - $(drag).offset().top
                                  };
              Severity: Major
              Found in resources/js/src/jquery.sortable-table.ts and 1 other location - About 3 hrs to fix
              resources/js/src/jquery.sortable-table.ts on lines 191..194

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

              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

                                  left: Math.min($(document).width(), Math.max(0, x - $draggedEl.width() / 2))
              Severity: Minor
              Found in resources/js/src/jquery.sortable-table.ts and 1 other location - About 40 mins to fix
              resources/js/src/jquery.sortable-table.ts on lines 239..239

              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

                                  top: Math.min($(document).height(), Math.max(0, y - $draggedEl.height() / 2)),
              Severity: Minor
              Found in resources/js/src/jquery.sortable-table.ts and 1 other location - About 40 mins to fix
              resources/js/src/jquery.sortable-table.ts on lines 240..240

              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

                                                              top: $(oldCell).offset().top - $(previewMove).parent().offset().top,
              Severity: Minor
              Found in resources/js/src/jquery.sortable-table.ts and 1 other location - About 35 mins to fix
              resources/js/src/jquery.sortable-table.ts on lines 124..124

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

              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

                                                              left: $(oldCell).offset().left - $(previewMove).parent().offset().left
              Severity: Minor
              Found in resources/js/src/jquery.sortable-table.ts and 1 other location - About 35 mins to fix
              resources/js/src/jquery.sortable-table.ts on lines 123..123

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

              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