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.
70 lines
2.7 KiB
70 lines
2.7 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, organisations_current?(path)), |
|
NavigationItem.new("Users", "/users", users_current?(path)), |
|
NavigationItem.new("Logs", case_logs_path, logs_current?(path)), |
|
NavigationItem.new("Supported housing", "/supported-housing", supported_housing_current?(path)), |
|
] |
|
elsif current_user.data_coordinator? |
|
[ |
|
NavigationItem.new("Logs", case_logs_path, logs_current?(path)), |
|
NavigationItem.new("Supported housing", "/supported-housing", subnav_supported_housing_path?(path)), |
|
NavigationItem.new("Users", users_organisation_path(current_user.organisation), subnav_users_path?(path)), |
|
NavigationItem.new("About your organisation", "/organisations/#{current_user.organisation.id}", subnav_details_path?(path)), |
|
] |
|
else |
|
[ |
|
NavigationItem.new("Logs", case_logs_path, logs_current?(path)), |
|
NavigationItem.new("Users", users_organisation_path(current_user.organisation), subnav_users_path?(path)), |
|
NavigationItem.new("About your organisation", "/organisations/#{current_user.organisation.id}", subnav_details_path?(path)), |
|
] |
|
end |
|
end |
|
|
|
def secondary_items(path, current_organisation_id) |
|
[ |
|
NavigationItem.new("Logs", "/organisations/#{current_organisation_id}/logs", subnav_logs_path?(path)), |
|
NavigationItem.new("Supported housing", "/organisations/#{current_organisation_id}/supported-housing", subnav_supported_housing_path?(path)), |
|
NavigationItem.new("Users", "/organisations/#{current_organisation_id}/users", subnav_users_path?(path)), |
|
NavigationItem.new("About this organisation", "/organisations/#{current_organisation_id}", subnav_details_path?(path)), |
|
] |
|
end |
|
|
|
private |
|
|
|
def logs_current?(path) |
|
path == "/logs" |
|
end |
|
|
|
def users_current?(path) |
|
path == "/users" || path.include?("/users/") |
|
end |
|
|
|
def supported_housing_current?(path) |
|
path == "/supported-housing" || path.include?("/supported-housing/") |
|
end |
|
|
|
def organisations_current?(path) |
|
path == "/organisations" || path.include?("/organisations/") |
|
end |
|
|
|
def subnav_supported_housing_path?(path) |
|
path.include?("/organisations") && path.include?("/supported-housing") || path.include?("/supported-housing/") |
|
end |
|
|
|
def subnav_users_path?(path) |
|
(path.include?("/organisations") && path.include?("/users")) || path.include?("/users/") |
|
end |
|
|
|
def subnav_logs_path?(path) |
|
path.include?("/organisations") && path.include?("/logs") |
|
end |
|
|
|
def subnav_details_path?(path) |
|
path.include?("/organisations") && path.include?("/details") |
|
end |
|
end
|
|
|