drhenner/ror_ecommerce

View on GitHub
app/assets/javascripts/markitup/jquery.markitup.js

Summary

Maintainability
F
5 days
Test Coverage

Function markItUp has 466 lines of code (exceeds 25 allowed). Consider refactoring.
Open

  $.fn.markItUp = function(settings, extraSettings) {
    var options, ctrlKey, shiftKey, altKey;
    ctrlKey = shiftKey = altKey = false;

    options = { id:           '',
Severity: Major
Found in app/assets/javascripts/markitup/jquery.markitup.js - About 2 days to fix

    File jquery.markitup.js has 489 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    // ----------------------------------------------------------------------------
    // markItUp! Universal MarkUp Engine, JQuery plugin
    // v 1.1.x
    // Dual licensed under the MIT and GPL licenses.
    // ----------------------------------------------------------------------------
    Severity: Minor
    Found in app/assets/javascripts/markitup/jquery.markitup.js - About 7 hrs to fix

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

            function markup(button) {
              var len, j, n, i;
              hash = clicked = button;
              get();
              $.extend(hash, {  line:"",
      Severity: Major
      Found in app/assets/javascripts/markitup/jquery.markitup.js - About 2 hrs to fix

        Function init has 45 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

              function init() {
                id = ''; nameSpace = '';
                if (options.id) {
                  id = 'id="'+options.id+'"';
                } else if ($$.attr("id")) {
        Severity: Minor
        Found in app/assets/javascripts/markitup/jquery.markitup.js - About 1 hr to fix

          Function keyPressed has 44 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

                function keyPressed(e) {
                  shiftKey = e.shiftKey;
                  altKey = e.altKey;
                  ctrlKey = (!(e.altKey && e.ctrlKey)) ? (e.ctrlKey || e.metaKey) : false;
          
          
          Severity: Minor
          Found in app/assets/javascripts/markitup/jquery.markitup.js - About 1 hr to fix

            Function dropMenus has 44 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                  function dropMenus(markupSet) {
                    var ul = $('<ul></ul>'), i = 0;
                    $('li:hover > ul', ul).css('display', 'block');
                    $.each(markupSet, function() {
                      var button = this, t = '', title, li, j;
            Severity: Minor
            Found in app/assets/javascripts/markitup/jquery.markitup.js - About 1 hr to fix

              Function build has 32 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                    function build(string) {
                      var openWith      = prepare(clicked.openWith);
                      var placeHolder     = prepare(clicked.placeHolder);
                      var replaceWith     = prepare(clicked.replaceWith);
                      var closeWith       = prepare(clicked.closeWith);
              Severity: Minor
              Found in app/assets/javascripts/markitup/jquery.markitup.js - About 1 hr to fix

                Function preview has 29 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                      function preview() {
                        if (!previewWindow || previewWindow.closed) {
                          if (options.previewInWindow) {
                            previewWindow = window.open('', 'preview', options.previewInWindow);
                            $(window).unload(function() {
                Severity: Minor
                Found in app/assets/javascripts/markitup/jquery.markitup.js - About 1 hr to fix

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

                        function magicMarkups(string) {
                          if (string) {
                            string = string.toString();
                            string = string.replace(/\(\!\(([\s\S]*?)\)\!\)/g,
                              function(x, a) {
                  Severity: Minor
                  Found in app/assets/javascripts/markitup/jquery.markitup.js - About 1 hr to fix

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

                          function renderPreview() {
                            var phtml;
                            if (options.previewParser && typeof options.previewParser === 'function') {
                              var data = options.previewParser( $$.val() );
                              writeInPreview( localize(data, 1) );
                    Severity: Minor
                    Found in app/assets/javascripts/markitup/jquery.markitup.js - About 1 hr to fix

                      Avoid too many return statements within this function.
                      Open

                                    return false;
                      Severity: Major
                      Found in app/assets/javascripts/markitup/jquery.markitup.js - About 30 mins to fix

                        Avoid too many return statements within this function.
                        Open

                                      return false;
                        Severity: Major
                        Found in app/assets/javascripts/markitup/jquery.markitup.js - About 30 mins to fix

                          Avoid too many return statements within this function.
                          Open

                                        return options.onTab.keepDefault;
                          Severity: Major
                          Found in app/assets/javascripts/markitup/jquery.markitup.js - About 30 mins to fix

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

                                  function fixOperaBug(string) {
                                    if ($.browser.opera) {
                                      return string.length - string.replace(/\n*/g, '').length;
                                    }
                                    return 0;
                            Severity: Major
                            Found in app/assets/javascripts/markitup/jquery.markitup.js and 1 other location - About 1 hr to fix
                            app/assets/javascripts/markitup/jquery.markitup.js on lines 375..380

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

                            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

                                  function fixIeBug(string) {
                                    if ($.browser.msie) {
                                      return string.length - string.replace(/\r*/g, '').length;
                                    }
                                    return 0;
                            Severity: Major
                            Found in app/assets/javascripts/markitup/jquery.markitup.js and 1 other location - About 1 hr to fix
                            app/assets/javascripts/markitup/jquery.markitup.js on lines 368..373

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

                            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