app/helpers/menu_helper.rb
Method menu_definitions
has 37 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
def menu_definitions
definitions=[
{:title=>t("menu.yellow_pages"), :sections=>[
{:controller=>"programmes",:title=>t('programme').pluralize,:hide=>!Seek::Config.programmes_enabled},
{:controller=>"people",:title=>"People"},
Method section_menu_items
has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring. Open
Open
def section_menu_items sections
sections||=[]
selected_section = current_second_level_section sections
sections.collect do |section|
unless section[:hide]
- Read upRead up
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 top_level_menu_tabs
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
Open
def top_level_menu_tabs definitions
selected_tab = current_top_level_tab(definitions)
definitions.select{|d| !d[:hide]}.collect do |menu|
attributes = ""
attributes << "id = 'selected_tabnav'" if selected_tab == menu
- Read upRead up
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"