You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.6 KiB
48 lines
1.6 KiB
module NavigationItemsHelper |
|
NavigationItem = Struct.new(:text, :href, :current, :classes) |
|
|
|
def primary_items(path, current_user) |
|
if current_user.support? |
|
[ |
|
NavigationItem.new("Organisations", organisations_path, organisation_current?(path)), |
|
NavigationItem.new("Users", "/users", users_current?(path)), |
|
NavigationItem.new("Logs", case_logs_path, logs_current?(path)), |
|
] |
|
else |
|
[ |
|
NavigationItem.new("Logs", case_logs_path, logs_current?(path)), |
|
NavigationItem.new("Users", users_organisation_path(current_user.organisation), users_current?(path)), |
|
NavigationItem.new("About your organisation", "/organisations/#{current_user.organisation.id}", organisation_current?(path)), |
|
] |
|
end |
|
end |
|
|
|
def secondary_items(path, current_organisation_id) |
|
[ |
|
NavigationItem.new("Logs", "/organisations/#{current_organisation_id}/logs", organisation_logs_current?(path, current_organisation_id)), |
|
NavigationItem.new("About this organisation", "/organisations/#{current_organisation_id}", about_organisation_current?(path, current_organisation_id)), |
|
] |
|
end |
|
|
|
private |
|
|
|
def logs_current?(path) |
|
path == "/logs" |
|
end |
|
|
|
def users_current?(path) |
|
path.include?("/users") |
|
end |
|
|
|
def organisation_current?(path) |
|
path.include?("/organisations") && !path.include?("/users") |
|
end |
|
|
|
def about_organisation_current?(path, organisation_id) |
|
path.include?("/organisations/#{organisation_id}/details") || path.include?("/organisations/#{organisation_id}/edit") |
|
end |
|
|
|
def organisation_logs_current?(path, organisation_id) |
|
path == "/organisations/#{organisation_id}/logs" |
|
end |
|
end
|
|
|