2011-10-09 00:36:38 +03:00
|
|
|
module ProjectsHelper
|
2011-10-11 23:00:00 +03:00
|
|
|
def view_mode_style(type)
|
|
|
|
cookies["project_view"] ||= "tile"
|
|
|
|
cookies["project_view"] == type ? nil : "display:none"
|
|
|
|
end
|
2011-10-18 14:33:30 +03:00
|
|
|
|
2011-10-18 17:44:43 +03:00
|
|
|
def load_note_parent(id, type, project)
|
2011-10-18 14:33:30 +03:00
|
|
|
case type
|
2011-10-18 17:44:43 +03:00
|
|
|
when "Issue" then @project.issues.find(id)
|
|
|
|
when "Commit" then @project.repo.commits(id).first
|
2011-10-19 20:41:14 +03:00
|
|
|
when "Snippet" then @project.snippets.find(id)
|
2011-10-18 14:33:30 +03:00
|
|
|
else
|
2011-10-18 17:44:43 +03:00
|
|
|
true
|
2011-10-18 14:33:30 +03:00
|
|
|
end
|
2011-10-26 18:46:25 +05:00
|
|
|
rescue
|
2011-10-18 17:44:43 +03:00
|
|
|
nil
|
2011-10-18 14:33:30 +03:00
|
|
|
end
|
2011-11-26 01:42:42 +02:00
|
|
|
|
2011-12-30 21:56:34 +02:00
|
|
|
def project_tab_class
|
2012-02-08 01:00:49 +02:00
|
|
|
[:show, :files, :team, :edit, :update].each do |action|
|
2011-12-30 21:56:34 +02:00
|
|
|
return "current" if current_page?(:controller => "projects", :action => action, :id => @project)
|
|
|
|
end
|
|
|
|
|
|
|
|
if controller.controller_name == "snippets" ||
|
|
|
|
controller.controller_name == "team_members"
|
|
|
|
"current"
|
2011-11-26 01:42:42 +02:00
|
|
|
end
|
|
|
|
end
|
2011-12-30 21:56:34 +02:00
|
|
|
|
|
|
|
def tree_tab_class
|
2012-01-11 09:35:21 +02:00
|
|
|
controller.controller_name == "refs" ?
|
|
|
|
"current" : nil
|
2011-12-30 21:56:34 +02:00
|
|
|
end
|
2011-12-30 22:56:13 +02:00
|
|
|
|
|
|
|
def repository_tab_class
|
2012-01-04 02:07:56 +02:00
|
|
|
if controller.controller_name == "repositories" ||
|
|
|
|
controller.controller_name == "hooks"
|
2011-12-30 22:56:13 +02:00
|
|
|
"current"
|
|
|
|
end
|
|
|
|
end
|
2011-10-09 00:36:38 +03:00
|
|
|
end
|