drhenner/ror_ecommerce

View on GitHub

Showing 203 of 346 total issues

Avoid too many return statements within this function.
Open

      return zepto.Z(dom, selector)
Severity: Major
Found in app/assets/javascripts/zepto.js - About 30 mins to fix

    Avoid too many return statements within this function.
    Open

          return el.hide();
    Severity: Major
    Found in app/assets/javascripts/foundation/foundation.reveal.js - About 30 mins to fix

      Avoid too many return statements within this function.
      Open

            return el.show();
      Severity: Major
      Found in app/assets/javascripts/foundation/foundation.reveal.js - About 30 mins to fix

        Avoid too many return statements within this function.
        Open

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

          Avoid too many return statements within this function.
          Open

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

            Avoid too many return statements within this function.
            Open

                return el.value;
            Severity: Major
            Found in app/assets/javascripts/jqwizard/jquery.form.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

                Avoid too many return statements within this method.
                Open

                      return admin_shopping_checkout_shipping_methods_url()
                Severity: Major
                Found in app/controllers/admin/shopping/checkout/base_controller.rb - About 30 mins to fix

                  Avoid too many return statements within this method.
                  Open

                        return nil #admin_shopping_carts_url()
                  Severity: Major
                  Found in app/controllers/admin/shopping/checkout/base_controller.rb - About 30 mins to fix

                    Avoid too many return statements within this method.
                    Open

                          return shopping_shipping_methods_url()
                    Severity: Major
                    Found in app/controllers/shopping/base_controller.rb - About 30 mins to fix

                      Method find_or_create_order has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                      Open

                        def find_or_create_order
                          return @session_admin_order if @session_admin_order
                          if session[:order_admin_id]
                            @session_admin_order = checkout_user.orders.include_checkout_objects.find_by_id(session[:order_admin_id])
                            create_order if !@session_admin_order || !@session_admin_order.in_progress?
                      Severity: Minor
                      Found in app/controllers/admin/shopping/checkout/base_controller.rb - 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

                      Method fulfillment_grid has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                      Open

                        def self.fulfillment_grid(params = {})
                          grid = Order.includes([:user]).where({ :orders => {:shipped => false }} ).where("orders.completed_at IS NOT NULL")
                          grid = grid.where({:active => true })                     unless  params[:show_all].present? && params[:show_all] == 'true'
                          grid = grid.where("orders.number LIKE ?", "#{params[:number]}%")  if params[:number].present?
                          grid = grid.where("orders.shipped = ?", true)                     if (params[:shipped].present? && params[:shipped] == 'true')
                      Severity: Minor
                      Found in app/models/order.rb - 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

                      Method next_wizard_form has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                      Open

                        def next_wizard_form
                          if !session[:product_wizard]
                            reset_product_wizard
                            admin_merchandise_wizards_brands_url
                          elsif !session[:product_wizard][:brand_id]
                      Severity: Minor
                      Found in app/controllers/admin/merchandise/wizards/base_controller.rb - 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

                      Method show has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                      Open

                        def show
                          authorize! :create_orders, current_user
                      
                          @order = find_or_create_order
                          #@order = session_admin_cart.add_items_to_checkout(order) # need here because items can also be removed
                      Severity: Minor
                      Found in app/controllers/admin/shopping/checkout/orders_controller.rb - 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

                      Method inactivate= has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                      Open

                        def inactivate=(val)
                          return unless val.present?
                          if val.to_s == '1' || val.to_s == 'true'
                            self.deleted_at ||= Time.zone.now
                          else
                      Severity: Minor
                      Found in app/models/variant.rb - 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

                      Method sortable has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                      Open

                        def sortable(column, title = nil)
                          title ||= column.titleize
                          css_class = column == sort_column ? "current #{sort_direction}" : nil
                          direction = column == sort_column && sort_direction == "asc" ? "desc" : "asc"
                          link_to title, {:sort => column, :direction => direction}, {:class => css_class}
                      Severity: Minor
                      Found in app/helpers/application_helper.rb - 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

                      Method next_admin_order_form has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                      Open

                        def next_admin_order_form()
                           # if cart is empty
                          if !session_admin_cart.customer_id
                            return admin_shopping_users_url
                          elsif !session_admin_cart.shopping_cart_items
                      Severity: Minor
                      Found in app/controllers/admin/shopping/checkout/base_controller.rb - 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

                      Method update has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                      Open

                        def update
                          @shopping_address = current_user.addresses.new(allowed_params)
                          @shopping_address.replace_address_id = params[:id] # This makes the address we are updating inactive if we save successfully
                      
                          # if we are editing the current default address then this is the default address
                      Severity: Minor
                      Found in app/controllers/shopping/billing_addresses_controller.rb - 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

                      Method merge_with_previous_cart! has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                      Open

                        def merge_with_previous_cart!
                          if user_id && previous_cart
                            current_items = cart_items.map(&:variant_id)
                            previous_cart.cart_items.each do |item|
                              self.add_variant(item.variant_id, item.user, item.quantity) unless current_items.include?(item.variant_id)
                      Severity: Minor
                      Found in app/models/cart.rb - 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

                      Method update_cim_profile has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                      Open

                        def update_cim_profile
                          if not self.customer_cim_id
                            return false
                          end
                          if self.email_changed? || self.first_name_changed? || self.last_name_changed?
                      Severity: Minor
                      Found in app/models/concerns/user_cim.rb - 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

                      Severity
                      Category
                      Status
                      Source
                      Language