navigation_helper.rb revision 391f72f778a8c9e1cbaed1860f4a4754d6881c8a
module NavigationHelper
def repository_nav(resource, current_page)
pages = [
[:overview, resource]
]
pages << [:files, [*resource_chain, :tree]]
pages << [:history, repository_ref_path(resource, 'master', path: nil, action: :history)]
pages << [:ontologies, [*resource_chain, :ontologies]]
pages << [:permissions, [*resource_chain, :permissions]] if can? :permissions, resource
subnavigation(resource, pages, current_page)
end
def ontology_nav(ontology, current_page)
@top_level_pages = [
['Content', ontology.distributed? ? :children : :entities],
['Comments', :comments],
['Metadata', :metadata],
['Versions', :ontology_versions],
['Graphs', :graphs]
]
@entities = ontology.distributed? ? [] : ontology.entities.groups_by_kind
@active_kind = nil
@active_kind = @entities.first.kind if current_page == :entities
@active_kind = params[:kind] if params[:kind]
pages = []
if ontology.distributed?
pages << [:children, [*resource_chain, :children]]
else
pages << [:sentences, [*resource_chain, :sentences]]
end
actions = []
# add counters
pages.each do |row|
counter_key = "#{row[0]}_count"
row << ontology.send(counter_key) if ontology.respond_to?(counter_key)
end
@page_title = ontology.to_s
@page_title = "#{current_page.capitalize} · #{@page_title}" if current_page != pages[0][0]
render :partial => '/ontologies/info', :locals => {
resource: ontology,
current_page: current_page,
pages: pages,
additional_actions: []
}
end
def subnavigation(resource, pages, current_page, additional_actions = [])
# add counters
pages.each do |row|
counter_key = "#{row[0]}_count"
row << resource.send(counter_key) if resource.respond_to?(counter_key)
end
@page_title = resource.to_s
@page_title = "#{current_page.capitalize} · #{@page_title}" if current_page != pages[0][0]
render :partial => '/shared/subnavigation', :locals => {
resource: resource,
current_page: current_page,
pages: pages,
additional_actions: additional_actions
}
end
def team_nav(team, current_page)
pages = [
[:overview, team],
[:permissions, [team, :permissions]]
]
pages << [:members, [team, :team_users]] if can? :edit, team
subnavigation(team, pages, current_page)
end
end