plainblack/Lacuna-Web-Client

View on GitHub
app/js-yui/module/policeStation.js

Summary

Maintainability
F
1 wk
Test Coverage

Function ForeignPopulate has 67 lines of code (exceeds 25 allowed). Consider refactoring.
Open

        ForeignPopulate : function() {
            var details = Dom.get("shipsForeignDetails");

            if(details) {
                var ships = this.shipsForeign.ships,
Severity: Major
Found in app/js-yui/module/policeStation.js - About 2 hrs to fix

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

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

      Avoid deeply nested control flow statements.
      Open

                              if(ship.from.empire && ship.from.empire.name) {
                                  nLi.innerHTML = ship.from.name + ' <span style="cursor:pointer;">[' + ship.from.empire.name + ']</span>';
                                  Event.on(nLi, "click", this.EmpireProfile, ship.from.empire);
                              }
                              else {
      Severity: Major
      Found in app/js-yui/module/policeStation.js - About 45 mins to fix

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

                ForeignPopulate : function() {
                    var details = Dom.get("shipsForeignDetails");
        
                    if(details) {
                        var ships = this.shipsForeign.ships,
        Severity: Major
        Found in app/js-yui/module/policeStation.js and 1 other location - About 5 days to fix
        app/js-yui/building/spacePort.js on lines 739..822

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

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

                getForeign : function(e) {
                    if(e.newValue) {
                        if(!this.shipsForeign) {
                            require('js/actions/menu/loader').show();
                            this.service.view_foreign_ships({session_id:Game.GetSession(),building_id:this.building.id,page_number:1}, {
        Severity: Major
        Found in app/js-yui/module/policeStation.js and 2 other locations - About 1 day to fix
        app/js-yui/building/spacePort.js on lines 227..260
        app/js-yui/building/spacePort.js on lines 295..328

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

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

                ForeignHandlePagination : function(newState) {
                    require('js/actions/menu/loader').show();
                    this.service.view_foreign_ships({
                        session_id:Game.GetSession(),
                        building_id:this.building.id,
        Severity: Major
        Found in app/js-yui/module/policeStation.js and 3 other locations - About 1 day to fix
        app/js-yui/building/spacePort.js on lines 471..493
        app/js-yui/building/spacePort.js on lines 921..943
        app/js-yui/building/spacePort.js on lines 944..966

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

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

                ForeignQueue : function(remaining, elLine){
                    var arrTime;
                    if(remaining <= 0) {
                        arrTime = 'Overdue ' + Lib.formatTime(Math.round(-remaining));
                    }
        Severity: Major
        Found in app/js-yui/module/policeStation.js and 4 other locations - About 3 hrs to fix
        app/js-yui/building/shipyard.js on lines 178..187
        app/js-yui/building/spacePort.js on lines 494..503
        app/js-yui/building/spacePort.js on lines 967..976
        app/js-yui/mapStar.js on lines 743..752

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

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

                _getForeignTab : function() {
                    this.foreignShipsTab = new YAHOO.widget.Tab({ label: "Incoming", content: [
                        '<div>',
                        '    <ul class="shipHeader shipInfo clearafter">',
                        '        <li class="shipTypeImage">&nbsp;</li>',
        Severity: Major
        Found in app/js-yui/module/policeStation.js and 2 other locations - About 3 hrs to fix
        app/js-yui/building/spacePort.js on lines 103..120
        app/js-yui/building/spacePort.js on lines 121..138

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

        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/module/policeStation.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/observatory.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

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

            var PoliceStation = function(result){
                PoliceStation.superclass.constructor.call(this, result);
                
                this.service = Game.Services.Modules.PoliceStation;
                
        Severity: Major
        Found in app/js-yui/module/policeStation.js and 2 other locations - About 1 hr to fix
        app/js-yui/building/entertainment.js on lines 13..18
        app/js-yui/building/security.js on lines 16..22

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

        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