summaryrefslogtreecommitdiff
path: root/app/helpers/explore_helper.rb
blob: 588b71864bc334063924036ee2c3583fe2f15653 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
module ExploreHelper
  def filter_projects_path(options = {})
    exist_opts = {
      sort: params[:sort],
      scope: params[:scope],
      group: params[:group],
      tag: params[:tag],
      visibility_level: params[:visibility_level],
    }

    options = exist_opts.merge(options)
    path = request.path
    path << "?#{options.to_param}"
    path
  end

  def filter_group_project_member_path(options = {})
    exist_opts = {
      utf8: params[:utf8] ||= '✓',
      search: params[:search],
      sort: params[:sort],
    }

    options = exist_opts.merge(options)
    path = request.path
    path << "?#{options.to_param}"
    path
  end

  def explore_controller?
    controller.class.name.split("::").first == "Explore"
  end
end