wikimedia/mediawiki-core

View on GitHub
resources/src/startup/mediawiki.loader.js

Summary

Maintainability
F
5 days
Test Coverage

File mediawiki.loader.js has 928 lines of code (exceeds 250 allowed). Consider refactoring.
Open

/*!
 * Defines mw.loader, the infrastructure for loading ResourceLoader
 * modules.
 *
 * This file is appended directly to the code in startup/mediawiki.js
Severity: Major
Found in resources/src/startup/mediawiki.loader.js - About 2 days to fix

    Function execute has 111 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        function execute( module ) {
            if ( registry[ module ].state !== 'loaded' ) {
                throw new Error( 'Module in state "' + registry[ module ].state + '" may not execute: ' + module );
            }
    
    
    Severity: Major
    Found in resources/src/startup/mediawiki.loader.js - About 4 hrs to fix

      Function batchRequest has 58 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          function batchRequest( batch ) {
              if ( !batch.length ) {
                  return;
              }
      
      
      Severity: Major
      Found in resources/src/startup/mediawiki.loader.js - About 2 hrs to fix

        Function runScript has 51 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

                var runScript = function () {
                    $CODE.profileScriptStart();
                    var script = registry[ module ].script;
                    var markModuleReady = function () {
                        $CODE.profileScriptEnd();
        Severity: Major
        Found in resources/src/startup/mediawiki.loader.js - About 2 hrs to fix

          Function doPropagation has 49 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              function doPropagation() {
                  var didPropagate = true;
                  var module;
          
                  // Keep going until the last iteration performed no actions.
          Severity: Minor
          Found in resources/src/startup/mediawiki.loader.js - About 1 hr to fix

            Function set has 47 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                    set: function ( module ) {
                        var descriptor = registry[ module ],
                            key = getModuleKey( module );
            
                        if (
            Severity: Minor
            Found in resources/src/startup/mediawiki.loader.js - About 1 hr to fix

              Function work has 36 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                      work: function () {
                          store.init();
              
                          var q = queue.length,
                              storedImplementations = [],
              Severity: Minor
              Found in resources/src/startup/mediawiki.loader.js - About 1 hr to fix

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

                    function enqueue( dependencies, ready, error ) {
                        if ( allReady( dependencies ) ) {
                            // Run ready immediately
                            if ( ready ) {
                                ready();
                Severity: Minor
                Found in resources/src/startup/mediawiki.loader.js - About 1 hr to fix

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

                      function sortDependencies( module, resolved, unresolved ) {
                          if ( !( module in registry ) ) {
                              throw new Error( 'Unknown module: ' + module );
                          }
                  
                  
                  Severity: Minor
                  Found in resources/src/startup/mediawiki.loader.js - About 1 hr to fix

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

                            impl: function ( declarator ) {
                                var data = declarator(),
                                    module = data[ 0 ],
                                    script = data[ 1 ] || null,
                                    style = data[ 2 ] || null,
                    Severity: Minor
                    Found in resources/src/startup/mediawiki.loader.js - About 1 hr to fix

                      Consider simplifying this complex logical expression.
                      Open

                                  if (
                                      // Already stored a copy of this exact version
                                      key in this.items ||
                                      // Module failed to load
                                      !descriptor ||
                      Severity: Major
                      Found in resources/src/startup/mediawiki.loader.js - About 1 hr to fix

                        Function registerOne has 6 arguments (exceeds 4 allowed). Consider refactoring.
                        Open

                            function registerOne( module, version, dependencies, group, source, skip ) {
                        Severity: Minor
                        Found in resources/src/startup/mediawiki.loader.js - About 45 mins to fix

                          Avoid deeply nested control flow statements.
                          Open

                                                  if ( baseModuleError && baseModules.indexOf( module ) === -1 ) {
                                                      // Propate error from base module to all regular (non-base) modules
                                                      registry[ module ].state = 'error';
                                                      didPropagate = true;
                                                  } else if ( registry[ module ].dependencies.indexOf( errorModule ) !== -1 ) {
                          Severity: Major
                          Found in resources/src/startup/mediawiki.loader.js - About 45 mins to fix

                            Function implement has 6 arguments (exceeds 4 allowed). Consider refactoring.
                            Open

                                    implement: function ( module, script, style, messages, templates, deprecationWarning ) {
                            Severity: Minor
                            Found in resources/src/startup/mediawiki.loader.js - About 45 mins to fix

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

                                          if ( registry[ name ].state !== 'error' && registry[ name ].state !== 'missing' ) {
                                              setAndPropagate( name, 'loaded' );
                                          }
                              Severity: Minor
                              Found in resources/src/startup/mediawiki.loader.js and 1 other location - About 30 mins to fix
                              resources/src/startup/mediawiki.loader.js on lines 1550..1552

                              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

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

                                          if ( registry[ name ].state !== 'error' && registry[ name ].state !== 'missing' ) {
                                              setAndPropagate( name, 'loaded' );
                                          }
                              Severity: Minor
                              Found in resources/src/startup/mediawiki.loader.js and 1 other location - About 30 mins to fix
                              resources/src/startup/mediawiki.loader.js on lines 1625..1627

                              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