plainblack/Lacuna-Web-Client

View on GitHub
app/js-yui/building/observatory.js

Summary

Maintainability
D
1 day
Test Coverage

Function ProbesDisplay has 34 lines of code (exceeds 25 allowed). Consider refactoring.
Open

        ProbesDisplay : function() {
            var stars = this.probes,
                probeDetails = Dom.get("probeDetails");
                
            if(probeDetails) {
Severity: Minor
Found in app/js-yui/building/observatory.js - About 1 hr to fix

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

            GetProbes : function(e) {
                if(e.newValue) {
                    if(!this.probes) {
                        require('js/actions/menu/loader').show();
                        this.service.get_probed_stars({session_id:Game.GetSession(),building_id:this.building.id,page_number:1}, {
    Severity: Minor
    Found in app/js-yui/building/observatory.js - About 1 hr to fix

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

              AbandonAllProbes : function(e) {
                  if(confirm("Are you sure you want to abandon all probes controlled by this Observatory?")) {
                      require('js/actions/menu/loader').show();
                      this.service.abandon_all_probes({
                              session_id:Game.GetSession(),
      Severity: Major
      Found in app/js-yui/building/observatory.js and 2 other locations - About 6 hrs to fix
      app/js-yui/building/archaeology.js on lines 662..681
      app/js-yui/building/miningMinistry.js on lines 388..407

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

      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 7 locations. Consider refactoring.
      Open

          var Lang = YAHOO.lang,
              Util = YAHOO.util,
              Dom = Util.Dom,
              Event = Util.Event,
              Pager = YAHOO.widget.Paginator,
      Severity: Major
      Found in app/js-yui/building/observatory.js and 6 other locations - About 2 hrs to fix
      app/js-yui/building/intelligence.js on lines 6..14
      app/js-yui/building/libraryOfJith.js on lines 6..14
      app/js-yui/building/security.js on lines 6..14
      app/js-yui/building/templeOfTheDrajilites.js on lines 6..14
      app/js-yui/messaging.js on lines 12..20
      app/js-yui/module/policeStation.js on lines 6..14

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

      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

              _getAbandonAllProbesTab : function() {
                  this.probesTab = new YAHOO.widget.Tab({ label: "Abandon All Probes", content: [
                          '<div>',
                          '    <button type="button" id="observatoryBigRedButton">Abandon All Probes!</button>',
                          '</div>'
      Severity: Major
      Found in app/js-yui/building/observatory.js and 1 other location - About 2 hrs to fix
      app/js-yui/building/miningMinistry.js on lines 53..63

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

      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

              destroy : function() {
                  if(this.pager) {
                      this.pager.destroy();
                  }
                  Observatory.superclass.destroy.call(this);
      Severity: Minor
      Found in app/js-yui/building/observatory.js and 1 other location - About 55 mins to fix
      app/js-yui/building/intelligence.js on lines 23..28

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

      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

                  this.probesTab = new YAHOO.widget.Tab({ label: "Probes", content: [
                          '<div>',
                          '    <div id="observatoryInfo"></div>',
                          '    <div class="probeContainer clearafter">',
                          '        <ul id="probeDetails" class="probeInfo">',
      Severity: Minor
      Found in app/js-yui/building/observatory.js and 1 other location - About 50 mins to fix
      app/js-yui/building/embassy.js on lines 87..94

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

      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