krafthaus/bauhaus

View on GitHub
bower_components/tinymce/plugins/noneditable/plugin.js

Summary

Maintainability
F
4 days
Test Coverage

Function handleContentEditableSelection has 266 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    function handleContentEditableSelection() {
        var dom = editor.dom, selection = editor.selection, caretContainerId = 'mce_noneditablecaret', invisibleChar = '\uFEFF';

        // Get caret container parent for the specified node
        function getParentCaretContainer(node) {
Severity: Major
Found in bower_components/tinymce/plugins/noneditable/plugin.js - About 1 day to fix

    Function handleKey has 124 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

            function handleKey(e) {
                var keyCode = e.keyCode, nonEditableParent, caretContainer, startElement, endElement;
    
                function getNonEmptyTextNodeSibling(node, prev) {
                    while ((node = node[prev ? 'previousSibling' : 'nextSibling'])) {
    Severity: Major
    Found in bower_components/tinymce/plugins/noneditable/plugin.js - About 4 hrs to fix

      File plugin.js has 369 lines of code (exceeds 250 allowed). Consider refactoring.
      Open

      /**
       * plugin.js
       *
       * Copyright, Moxiecode Systems AB
       * Released under LGPL License.
      Severity: Minor
      Found in bower_components/tinymce/plugins/noneditable/plugin.js - About 4 hrs to fix

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

                function moveSelection() {
                    var nonEditableStart, nonEditableEnd, isCollapsed, rng, element;
        
                    // Checks if there is any contents to the left/right side of caret returns the noneditable element or
                    // any editable element if it finds one inside
        Severity: Major
        Found in bower_components/tinymce/plugins/noneditable/plugin.js - About 2 hrs to fix

          Function canDelete has 52 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

                      function canDelete(backspace) {
                          var rng, container, offset, nonEditableParent;
          
                          function removeNodeIfNotParent(node) {
                              var parent = container;
          Severity: Major
          Found in bower_components/tinymce/plugins/noneditable/plugin.js - About 2 hrs to fix

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

                        function hasSideContent(element, left) {
                            var container, offset, walker, node, len;
            
                            container = rng.startContainer;
                            offset = rng.startOffset;
            Severity: Minor
            Found in bower_components/tinymce/plugins/noneditable/plugin.js - About 1 hr to fix

              Avoid deeply nested control flow statements.
              Open

                                          if (nonEditableParent && getContentEditable(nonEditableParent) === "false") {
                                              e.preventDefault();
              
                                              if (keyCode == VK.RIGHT) {
                                                  positionCaretOnElement(nonEditableParent, false);
              Severity: Major
              Found in bower_components/tinymce/plugins/noneditable/plugin.js - About 45 mins to fix

                Avoid deeply nested control flow statements.
                Open

                                            if (nonEditableParent && getContentEditable(nonEditableParent) === "false") {
                                                e.preventDefault();
                
                                                if (keyCode == VK.LEFT) {
                                                    positionCaretOnElement(nonEditableParent, true);
                Severity: Major
                Found in bower_components/tinymce/plugins/noneditable/plugin.js - About 45 mins to fix

                  Avoid too many return statements within this function.
                  Open

                                  return element;
                  Severity: Major
                  Found in bower_components/tinymce/plugins/noneditable/plugin.js - About 30 mins to fix

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

                                                if (nonEditableParent && getContentEditable(nonEditableParent) === "false") {
                                                    e.preventDefault();
                    
                                                    if (keyCode == VK.RIGHT) {
                                                        positionCaretOnElement(nonEditableParent, false);
                    Severity: Major
                    Found in bower_components/tinymce/plugins/noneditable/plugin.js and 1 other location - About 2 hrs to fix
                    bower_components/tinymce/plugins/noneditable/plugin.js on lines 388..399

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

                    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 (nonEditableParent && getContentEditable(nonEditableParent) === "false") {
                                                    e.preventDefault();
                    
                                                    if (keyCode == VK.LEFT) {
                                                        positionCaretOnElement(nonEditableParent, true);
                    Severity: Major
                    Found in bower_components/tinymce/plugins/noneditable/plugin.js and 1 other location - About 2 hrs to fix
                    bower_components/tinymce/plugins/noneditable/plugin.js on lines 406..417

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

                    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