talho/openphin

View on GitHub
app/assets/javascripts/ext/src/widgets/Button.js

Summary

Maintainability
F
3 days
Test Coverage

File Button.js has 423 lines of code (exceeds 250 allowed). Consider refactoring.
Open

/*!
 * Ext JS Library 3.3.0
 * Copyright(c) 2006-2010 Ext JS, Inc.
 * licensing@extjs.com
 * http://www.extjs.com/license
Severity: Minor
Found in app/assets/javascripts/ext/src/widgets/Button.js - About 6 hrs to fix

    Button has 42 functions (exceeds 20 allowed). Consider refactoring.
    Open

    Ext.Button = Ext.extend(Ext.BoxComponent, {
        /**
         * Read-only. True if this button is hidden
         * @type Boolean
         */
    Severity: Minor
    Found in app/assets/javascripts/ext/src/widgets/Button.js - About 5 hrs to fix

      Function ButtonToggleMgr has a Cognitive Complexity of 26 (exceeds 5 allowed). Consider refactoring.
      Open

      Ext.ButtonToggleMgr = function(){
         var groups = {};
      
         function toggleGroup(btn, state){
             if(state){
      Severity: Minor
      Found in app/assets/javascripts/ext/src/widgets/Button.js - About 3 hrs to fix

      Cognitive Complexity

      Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

      A method's cognitive complexity is based on a few simple rules:

      • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
      • Code is considered more complex for each "break in the linear flow of the code"
      • Code is considered more complex when "flow breaking structures are nested"

      Further reading

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

      Ext.ButtonToggleMgr = function(){
         var groups = {};
      
         function toggleGroup(btn, state){
             if(state){
      Severity: Minor
      Found in app/assets/javascripts/ext/src/widgets/Button.js - About 1 hr to fix

        Function toggle has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
        Open

            toggle : function(state, suppressEvent){
                state = state === undefined ? !this.pressed : !!state;
                if(state != this.pressed){
                    if(this.rendered){
                        this.el[state ? 'addClass' : 'removeClass']('x-btn-pressed');
        Severity: Minor
        Found in app/assets/javascripts/ext/src/widgets/Button.js - About 1 hr to fix

        Cognitive Complexity

        Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

        A method's cognitive complexity is based on a few simple rules:

        • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
        • Code is considered more complex for each "break in the linear flow of the code"
        • Code is considered more complex when "flow breaking structures are nested"

        Further reading

        Function setButtonClass has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
        Open

            setButtonClass : function(){
                if(this.useSetClass){
                    if(!Ext.isEmpty(this.oldCls)){
                        this.el.removeClass([this.oldCls, 'x-btn-pressed']);
                    }
        Severity: Minor
        Found in app/assets/javascripts/ext/src/widgets/Button.js - About 1 hr to fix

        Cognitive Complexity

        Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

        A method's cognitive complexity is based on a few simple rules:

        • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
        • Code is considered more complex for each "break in the linear flow of the code"
        • Code is considered more complex when "flow breaking structures are nested"

        Further reading

        Function doAutoWidth has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
        Open

            doAutoWidth : function(){
                if(this.autoWidth !== false && this.el && this.text && this.width === undefined){
                    this.el.setWidth('auto');
                    if(Ext.isIE7 && Ext.isStrict){
                        var ib = this.btnEl;
        Severity: Minor
        Found in app/assets/javascripts/ext/src/widgets/Button.js - About 1 hr to fix

        Cognitive Complexity

        Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

        A method's cognitive complexity is based on a few simple rules:

        • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
        • Code is considered more complex for each "break in the linear flow of the code"
        • Code is considered more complex when "flow breaking structures are nested"

        Further reading

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

            initButtonEl : function(btn, btnEl){
                this.el = btn;
                this.setIcon(this.icon);
                this.setText(this.text);
                this.setIconClass(this.iconCls);
        Severity: Minor
        Found in app/assets/javascripts/ext/src/widgets/Button.js - About 1 hr to fix

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

              onRender : function(ct, position){
                  if(!this.template){
                      if(!Ext.Button.buttonTemplate){
                          // hideous table template
                          Ext.Button.buttonTemplate = new Ext.Template(
          Severity: Minor
          Found in app/assets/javascripts/ext/src/widgets/Button.js - About 1 hr to fix

            Function initButtonEl has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
            Open

                initButtonEl : function(btn, btnEl){
                    this.el = btn;
                    this.setIcon(this.icon);
                    this.setText(this.text);
                    this.setIconClass(this.iconCls);
            Severity: Minor
            Found in app/assets/javascripts/ext/src/widgets/Button.js - About 45 mins to fix

            Cognitive Complexity

            Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

            A method's cognitive complexity is based on a few simple rules:

            • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
            • Code is considered more complex for each "break in the linear flow of the code"
            • Code is considered more complex when "flow breaking structures are nested"

            Further reading

            Function onClick has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
            Open

                onClick : function(e){
                    if(e){
                        e.preventDefault();
                    }
                    if(e.button !== 0){
            Severity: Minor
            Found in app/assets/javascripts/ext/src/widgets/Button.js - About 45 mins to fix

            Cognitive Complexity

            Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

            A method's cognitive complexity is based on a few simple rules:

            • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
            • Code is considered more complex for each "break in the linear flow of the code"
            • Code is considered more complex when "flow breaking structures are nested"

            Further reading

            Function onMouseOver has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
            Open

                onMouseOver : function(e){
                    if(!this.disabled){
                        var internal = e.within(this.el,  true);
                        if(!internal){
                            this.el.addClass('x-btn-over');
            Severity: Minor
            Found in app/assets/javascripts/ext/src/widgets/Button.js - About 45 mins to fix

            Cognitive Complexity

            Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

            A method's cognitive complexity is based on a few simple rules:

            • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
            • Code is considered more complex for each "break in the linear flow of the code"
            • Code is considered more complex when "flow breaking structures are nested"

            Further reading

            Function setTooltip has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
            Open

                setTooltip : function(tooltip, /* private */ initial){
                    if(this.rendered){
                        if(!initial){
                            this.clearTip();
                        }
            Severity: Minor
            Found in app/assets/javascripts/ext/src/widgets/Button.js - About 35 mins to fix

            Cognitive Complexity

            Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

            A method's cognitive complexity is based on a few simple rules:

            • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
            • Code is considered more complex for each "break in the linear flow of the code"
            • Code is considered more complex when "flow breaking structures are nested"

            Further reading

            Function showMenu has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
            Open

                showMenu : function(){
                    if(this.rendered && this.menu){
                        if(this.tooltip){
                            Ext.QuickTips.getQuickTip().cancelShow(this.btnEl);
                        }
            Severity: Minor
            Found in app/assets/javascripts/ext/src/widgets/Button.js - About 25 mins to fix

            Cognitive Complexity

            Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

            A method's cognitive complexity is based on a few simple rules:

            • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
            • Code is considered more complex for each "break in the linear flow of the code"
            • Code is considered more complex when "flow breaking structures are nested"

            Further reading

            Function onDisableChange has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
            Open

                onDisableChange : function(disabled){
                    if(this.el){
                        if(!Ext.isIE6 || !this.text){
                            this.el[disabled ? 'addClass' : 'removeClass'](this.disabledClass);
                        }
            Severity: Minor
            Found in app/assets/javascripts/ext/src/widgets/Button.js - About 25 mins to fix

            Cognitive Complexity

            Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

            A method's cognitive complexity is based on a few simple rules:

            • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
            • Code is considered more complex for each "break in the linear flow of the code"
            • Code is considered more complex when "flow breaking structures are nested"

            Further reading

            There are no issues that match your filters.

            Category
            Status